diff --git a/spring-petclinic/spring-petclinic-rest/Dockerfile b/spring-petclinic/spring-petclinic-rest/Dockerfile index bec7fb7f..fcb84c19 100644 --- a/spring-petclinic/spring-petclinic-rest/Dockerfile +++ b/spring-petclinic/spring-petclinic-rest/Dockerfile @@ -1,5 +1,5 @@ # Use an official OpenJDK runtime as a parent image -FROM openjdk:22-bookworm +FROM openjdk:25-bookworm # Set the working directory to /app WORKDIR /app @@ -16,14 +16,6 @@ RUN mvn clean install -Dmaven.test.skip=true # Expose the port the app runs on EXPOSE 9966 -# Download the ca.crt file -RUN curl -o ca.crt https://raw.githubusercontent.com/keploy/keploy/main/pkg/core/proxy/asset/ca.crt - -RUN curl -o setup_ca.sh https://raw.githubusercontent.com/keploy/keploy/main/pkg/core/proxy/asset/setup_ca.sh - -# Give execute permission to the setup_ca.sh script -RUN chmod +x setup_ca.sh - # Run the application when the container launches -# CMD ["java", "-jar", ""] -CMD ["/bin/bash", "-c", "source ./setup_ca.sh && java -jar target/spring-petclinic-rest-3.0.2.jar"] + +CMD ["java", "-jar", "target/spring-petclinic-rest-3.0.2.jar"] diff --git a/spring-petclinic/spring-petclinic-rest/docker-compose-tmp.yaml b/spring-petclinic/spring-petclinic-rest/docker-compose-tmp.yaml new file mode 100644 index 00000000..9aec4e98 --- /dev/null +++ b/spring-petclinic/spring-petclinic-rest/docker-compose-tmp.yaml @@ -0,0 +1,28 @@ +version: "3.9" +services: + java-app: + build: + context: . + container_name: javaApp + depends_on: + - mypostgres + ports: + - "9966:9966" + networks: + - keploy-network + mypostgres: + image: "postgres:15.2" + container_name: mypostgres + ports: + - "5432:5432" + networks: + - keploy-network + volumes: + - /Users/achanandhi/Documents/java-quickstart-fix/samples-java/spring-petclinic/spring-petclinic-rest/src/main/resources/db/postgresql/initDB.sql:/docker-entrypoint-initdb.d/initDB.sql + environment: + POSTGRES_USER: petclinic + POSTGRES_PASSWORD: petclinic + POSTGRES_DB: petclinic +networks: + keploy-network: + external: true diff --git a/spring-petclinic/spring-petclinic-rest/keploy.yml b/spring-petclinic/spring-petclinic-rest/keploy.yml new file mode 100755 index 00000000..0ec64418 --- /dev/null +++ b/spring-petclinic/spring-petclinic-rest/keploy.yml @@ -0,0 +1,114 @@ +# Generated by Keploy (0.11.22) +path: "" +appId: 0 +appName: spring-petclinic-rest +command: docker compose up +templatize: + testSets: [] +port: 0 +e2e: false +dnsPort: 26789 +proxyPort: 16789 +debug: false +disableTele: false +disableANSI: false +containerName: javaApp +networkName: "" +buildDelay: 30 +test: + selectedTests: {} + globalNoise: + global: {} + test-sets: {} + delay: 5 + host: "" + port: 0 + apiTimeout: 5 + skipCoverage: false + coverageReportPath: "" + ignoreOrdering: true + mongoPassword: default@123 + language: "" + removeUnusedMocks: false + fallBackOnMiss: false + jacocoAgentPath: "" + basePath: "" + mocking: true + ignoredTests: {} + disableLineCoverage: false + disableMockUpload: false + useLocalMock: false + updateTemplate: false + freezeTime: false +record: + filters: [] + basePath: "" + recordTimer: 0s + agent: false +configPath: "" +bypassRules: [] +generateGithubActions: false +keployContainer: keploy-v2 +keployNetwork: keploy-network +cmdType: native +contract: + services: [] + tests: [] + path: "" + download: false + generate: false + driven: consumer + mappings: + servicesMapping: {} + self: s1 +inCi: false +autogen: + filters: [] + basePath: "" + recordTimer: 0s + schemaPath: "" + header: "" +dedup: + selectedTests: {} + globalNoise: + global: {} + test-sets: {} + delay: 0 + host: "" + port: 0 + apiTimeout: 0 + skipCoverage: false + coverageReportPath: "" + ignoreOrdering: false + mongoPassword: "" + language: "" + removeUnusedMocks: false + fallBackOnMiss: false + jacocoAgentPath: "" + basePath: "" + mocking: true + ignoredTests: {} + disableLineCoverage: false + disableMockUpload: false + useLocalMock: false + updateTemplate: false + rm: false + freezeTime: false +generateParallel: + retryEnabled: false + cores: 0 +utGen: + llmBaseUrl: "" + model: "" + llmApiVersion: "" + workflow: + installationToken: "" + coverageWorkflow: false + prWorkflow: false + repoName: "" + prNumber: 0 + jwtToken: "" + InstallationID: 0 + eventID: "" + +# Visit [https://keploy.io/docs/running-keploy/configuration-file/] to learn about using keploy through configration file. diff --git a/spring-petclinic/spring-petclinic-rest/keploy/.gitignore b/spring-petclinic/spring-petclinic-rest/keploy/.gitignore new file mode 100644 index 00000000..5137843b --- /dev/null +++ b/spring-petclinic/spring-petclinic-rest/keploy/.gitignore @@ -0,0 +1,2 @@ + +/reports/ diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/config.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/config.yaml new file mode 100755 index 00000000..ec4fe731 --- /dev/null +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/config.yaml @@ -0,0 +1,6 @@ +preScript: "" +postScript: "" +template: {} +mockRegistry: + mock: 0385cbe2e76e218cbd967f6a5a90cd08151d63a95b5cb38e71a162509068637c + app: spring-petclinic-rest diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/mocks.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/mocks.yaml index 5c8df0c2..d5136be5 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/mocks.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/mocks.yaml @@ -1,3 +1,4 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Postgres name: mock-0 @@ -14,14 +15,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:49.926245101+05:30 - restimestampmock: 2024-02-12T16:43:49.92707941+05:30 + reqtimestampmock: 2025-04-11T09:58:16.599158103Z + restimestampmock: 2025-04-11T09:58:16.59964774Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -31,25 +30,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:49.935423041+05:30 - restimestampmock: 2024-02-12T16:43:49.935474709+05:30 + reqtimestampmock: 2025-04-11T09:58:16.602055844Z + restimestampmock: 2025-04-11T09:58:16.602097675Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -70,16 +67,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 90, 124, 97, 77, 108, 71, 64, 99, 81, 105, 51, 52, 41, 90, 97, 80, 92, 92, 119, 84, 34, 43, 111, 109, 97, 55, 73, 115, 51, 83, 86, 109, 74, 122, 55, 76, 52, 99, 79, 121, 76, 86, 108, 121, 81, 117, 82, 100, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 45, 111, 38, 111, 64, 40, 90, 103, 67, 86, 125, 125, 100, 99, 71, 101, 119, 86, 49, 90, 62, 95, 63, 111, 117, 97, 48, 49, 115, 87, 89, 106, 80, 98, 48, 106, 68, 51, 54, 110, 105, 79, 113, 106, 107, 104, 78, 85, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:49.949612418+05:30 - restimestampmock: 2024-02-12T16:43:49.949635585+05:30 + reqtimestampmock: 2025-04-11T09:58:16.61296939Z + restimestampmock: 2025-04-11T09:58:16.612999555Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -98,15 +93,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 52, 51, 69, 71, 114, 119, 51, 55, 102, 107, 43, 106, 84, 49, 55, 48, 99, 114, 102, 69, 65, 51, 53, 79, 110, 78, 117, 68, 80, 48, 81, 84, 68, 119, 100, 118, 110, 78, 97, 110, 122, 82, 56, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 114, 48, 104, 97, 79, 70, 110, 86, 109, 87, 53, 117, 54, 118, 109, 99, 48, 110, 50, 111, 67, 67, 119, 74, 86, 119, 68, 88, 81, 105, 119, 107, 102, 107, 86, 69, 97, 102, 55, 116, 117, 72, 85, 61]} backend_key_data: - process_id: 75 - secret_key: 1192377041 + process_id: 70 + secret_key: 2301148819 parameter_status: - name: application_name value: "" @@ -133,17 +124,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:49.989656912+05:30 - restimestampmock: 2024-02-12T16:43:49.989726788+05:30 + reqtimestampmock: 2025-04-11T09:58:16.661431284Z + restimestampmock: 2025-04-11T09:58:16.661495447Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -171,22 +164,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.006815962+05:30 - restimestampmock: 2024-02-12T16:43:50.006834588+05:30 + reqtimestampmock: 2025-04-11T09:58:16.680801693Z + restimestampmock: 2025-04-11T09:58:16.680823483Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -214,16 +202,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -233,8 +214,10 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.007405931+05:30 - restimestampmock: 2024-02-12T16:43:50.007423765+05:30 + reqtimestampmock: 2025-04-11T09:58:16.681284372Z + restimestampmock: 2025-04-11T09:58:16.681300496Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -265,17 +248,15 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.017703199+05:30 - restimestampmock: 2024-02-12T16:43:50.017720657+05:30 + reqtimestampmock: 2025-04-11T09:58:16.695515008Z + restimestampmock: 2025-04-11T09:58:16.695536132Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -305,27 +286,20 @@ spec: - header: ["1", "2", T, D, C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABFQAAAAuAAF0cmFuc2FjdGlvbl9pc29sYXRpb24AAAAAAAAAAAAAGf///////wAARAAAABgAAQAAAA5yZWFkIGNvbW1pdHRlZEMAAAAJU0hPVwBaAAAABUk= authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 72 - - 79 - - 87 - data_row: [{row_values: [read committed]}, {row_values: [read committed]}, {row_values: [read committed]}] + - command_tag_type: SHOW + data_row: [{row_values: [read committed]}] ready_for_query: txstatus: 73 - row_description: {fields: [{name: [116, 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 105, 115, 111, 108, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} + row_description: {fields: [{field_name: transaction_isolation, table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.018350043+05:30 - restimestampmock: 2024-02-12T16:43:50.018370002+05:30 + reqtimestampmock: 2025-04-11T09:58:16.696175677Z + restimestampmock: 2025-04-11T09:58:16.696206383Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -355,31 +329,20 @@ spec: - header: ["1", "2", T, D, C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABFQAAAAjAAFzdHJpbmdfYWdnAAAAAAAAAAAAABn///////8AAEQAAAWgAAEAAAWWYWJvcnQsYWNjZXNzLGFnZ3JlZ2F0ZSxhbHNvLGFuYWx5c2UsYW5hbHl6ZSxhdHRhY2gsYmFja3dhcmQsYml0LGNhY2hlLGNoZWNrcG9pbnQsY2xhc3MsY2x1c3Rlcixjb2x1bW5zLGNvbW1lbnQsY29tbWVudHMsY29tcHJlc3Npb24sY29uY3VycmVudGx5LGNvbmZpZ3VyYXRpb24sY29uZmxpY3QsY29ubmVjdGlvbixjb250ZW50LGNvbnZlcnNpb24sY29weSxjb3N0LGNzdixjdXJyZW50X2NhdGFsb2csY3VycmVudF9zY2hlbWEsZGF0YWJhc2UsZGVsaW1pdGVyLGRlbGltaXRlcnMsZGVwZW5kcyxkZXRhY2gsZGljdGlvbmFyeSxkaXNhYmxlLGRpc2NhcmQsZG8sZG9jdW1lbnQsZW5hYmxlLGVuY29kaW5nLGVuY3J5cHRlZCxlbnVtLGV2ZW50LGV4Y2x1c2l2ZSxleHBsYWluLGV4cHJlc3Npb24sZXh0ZW5zaW9uLGZhbWlseSxmaW5hbGl6ZSxmb3JjZSxmb3J3YXJkLGZyZWV6ZSxmdW5jdGlvbnMsZ2VuZXJhdGVkLGdyZWF0ZXN0LGdyb3VwcyxoYW5kbGVyLGhlYWRlcixpZixpbGlrZSxpbW11dGFibGUsaW1wbGljaXQsaW1wb3J0LGluY2x1ZGUsaW5kZXgsaW5kZXhlcyxpbmhlcml0LGluaGVyaXRzLGlubGluZSxpbnN0ZWFkLGlzbnVsbCxsYWJlbCxsZWFrcHJvb2YsbGVhc3QsbGltaXQsbGlzdGVuLGxvYWQsbG9jYXRpb24sbG9jayxsb2NrZWQsbG9nZ2VkLG1hcHBpbmcsbWF0ZXJpYWxpemVkLG1vZGUsbW92ZSxuZmMsbmZkLG5ma2MsbmZrZCxub3RoaW5nLG5vdGlmeSxub3RudWxsLG5vd2FpdCxvZmYsb2Zmc2V0LG9pZHMsb3BlcmF0b3Isb3duZWQsb3duZXIscGFyYWxsZWwscGFyc2VyLHBhc3NpbmcscGFzc3dvcmQscGxhbnMscG9saWN5LHByZXBhcmVkLHByb2NlZHVyYWwscHJvY2VkdXJlcyxwcm9ncmFtLHB1YmxpY2F0aW9uLHF1b3RlLHJlYXNzaWduLHJlY2hlY2sscmVmcmVzaCxyZWluZGV4LHJlbmFtZSxyZXBsYWNlLHJlcGxpY2EscmVzZXQscmVzdHJpY3QscmV0dXJuaW5nLHJvdXRpbmVzLHJ1bGUsc2NoZW1hcyxzZXF1ZW5jZXMsc2VydmVyLHNldG9mLHNoYXJlLHNob3csc2tpcCxzbmFwc2hvdCxzdGFibGUsc3RhbmRhbG9uZSxzdGF0aXN0aWNzLHN0ZGluLHN0ZG91dCxzdG9yYWdlLHN0b3JlZCxzdHJpY3Qsc3RyaXAsc3Vic2NyaXB0aW9uLHN1cHBvcnQsc3lzaWQsdGFibGVzLHRhYmxlc3BhY2UsdGVtcCx0ZW1wbGF0ZSx0ZXh0LHRydW5jYXRlLHRydXN0ZWQsdHlwZXMsdW5lbmNyeXB0ZWQsdW5saXN0ZW4sdW5sb2dnZWQsdW50aWwsdmFjdXVtLHZhbGlkLHZhbGlkYXRlLHZhbGlkYXRvcix2YXJpYWRpYyx2ZXJib3NlLHZlcnNpb24sdmlld3Msdm9sYXRpbGUsd2hpdGVzcGFjZSx3cmFwcGVyLHhtbCx4bWxhdHRyaWJ1dGVzLHhtbGNvbmNhdCx4bWxlbGVtZW50LHhtbGV4aXN0cyx4bWxmb3Jlc3QseG1sbmFtZXNwYWNlcyx4bWxwYXJzZSx4bWxwaSx4bWxyb290LHhtbHNlcmlhbGl6ZSx4bWx0YWJsZSx5ZXNDAAAADVNFTEVDVCAxAFoAAAAFSQ== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ['abort,access,aggregate,also,analyse,analyze,attach,backward,bit,cache,checkpoint,class,cluster,columns,comment,comments,compression,concurrently,configuration,conflict,connection,content,conversion,copy,cost,csv,current_catalog,current_schema,database,delimiter,delimiters,depends,detach,dictionary,disable,discard,do,document,enable,encoding,encrypted,enum,event,exclusive,explain,expression,extension,family,finalize,force,forward,freeze,functions,generated,greatest,groups,handler,header,if,ilike,immutable,implicit,import,include,index,indexes,inherit,inherits,inline,instead,isnull,label,leakproof,least,limit,listen,load,location,lock,locked,logged,mapping,materialized,mode,move,nfc,nfd,nfkc,nfkd,nothing,notify,notnull,nowait,off,offset,oids,operator,owned,owner,parallel,parser,passing,password,plans,policy,prepared,procedural,procedures,program,publication,quote,reassign,recheck,refresh,reindex,rename,replace,replica,reset,restrict,returning,routines,rule,schemas,sequences,server,setof,share,show,skip,snapshot,stable,standalone,statistics,stdin,stdout,storage,stored,strict,strip,subscription,support,sysid,tables,tablespace,temp,template,text,truncate,trusted,types,unencrypted,unlisten,unlogged,until,vacuum,valid,validate,validator,variadic,verbose,version,views,volatile,whitespace,wrapper,xml,xmlattributes,xmlconcat,xmlelement,xmlexists,xmlforest,xmlnamespaces,xmlparse,xmlpi,xmlroot,xmlserialize,xmltable,yes']}, {row_values: ['abort,access,aggregate,also,analyse,analyze,attach,backward,bit,cache,checkpoint,class,cluster,columns,comment,comments,compression,concurrently,configuration,conflict,connection,content,conversion,copy,cost,csv,current_catalog,current_schema,database,delimiter,delimiters,depends,detach,dictionary,disable,discard,do,document,enable,encoding,encrypted,enum,event,exclusive,explain,expression,extension,family,finalize,force,forward,freeze,functions,generated,greatest,groups,handler,header,if,ilike,immutable,implicit,import,include,index,indexes,inherit,inherits,inline,instead,isnull,label,leakproof,least,limit,listen,load,location,lock,locked,logged,mapping,materialized,mode,move,nfc,nfd,nfkc,nfkd,nothing,notify,notnull,nowait,off,offset,oids,operator,owned,owner,parallel,parser,passing,password,plans,policy,prepared,procedural,procedures,program,publication,quote,reassign,recheck,refresh,reindex,rename,replace,replica,reset,restrict,returning,routines,rule,schemas,sequences,server,setof,share,show,skip,snapshot,stable,standalone,statistics,stdin,stdout,storage,stored,strict,strip,subscription,support,sysid,tables,tablespace,temp,template,text,truncate,trusted,types,unencrypted,unlisten,unlogged,until,vacuum,valid,validate,validator,variadic,verbose,version,views,volatile,whitespace,wrapper,xml,xmlattributes,xmlconcat,xmlelement,xmlexists,xmlforest,xmlnamespaces,xmlparse,xmlpi,xmlroot,xmlserialize,xmltable,yes']}, {row_values: ['abort,access,aggregate,also,analyse,analyze,attach,backward,bit,cache,checkpoint,class,cluster,columns,comment,comments,compression,concurrently,configuration,conflict,connection,content,conversion,copy,cost,csv,current_catalog,current_schema,database,delimiter,delimiters,depends,detach,dictionary,disable,discard,do,document,enable,encoding,encrypted,enum,event,exclusive,explain,expression,extension,family,finalize,force,forward,freeze,functions,generated,greatest,groups,handler,header,if,ilike,immutable,implicit,import,include,index,indexes,inherit,inherits,inline,instead,isnull,label,leakproof,least,limit,listen,load,location,lock,locked,logged,mapping,materialized,mode,move,nfc,nfd,nfkc,nfkd,nothing,notify,notnull,nowait,off,offset,oids,operator,owned,owner,parallel,parser,passing,password,plans,policy,prepared,procedural,procedures,program,publication,quote,reassign,recheck,refresh,reindex,rename,replace,replica,reset,restrict,returning,routines,rule,schemas,sequences,server,setof,share,show,skip,snapshot,stable,standalone,statistics,stdin,stdout,storage,stored,strict,strip,subscription,support,sysid,tables,tablespace,temp,template,text,truncate,trusted,types,unencrypted,unlisten,unlogged,until,vacuum,valid,validate,validator,variadic,verbose,version,views,volatile,whitespace,wrapper,xml,xmlattributes,xmlconcat,xmlelement,xmlexists,xmlforest,xmlnamespaces,xmlparse,xmlpi,xmlroot,xmlserialize,xmltable,yes']}] + - command_tag_type: SELECT 1 + data_row: [{row_values: ['abort,access,aggregate,also,analyse,analyze,attach,backward,bit,cache,checkpoint,class,cluster,columns,comment,comments,compression,concurrently,configuration,conflict,connection,content,conversion,copy,cost,csv,current_catalog,current_schema,database,delimiter,delimiters,depends,detach,dictionary,disable,discard,do,document,enable,encoding,encrypted,enum,event,exclusive,explain,expression,extension,family,finalize,force,forward,freeze,functions,generated,greatest,groups,handler,header,if,ilike,immutable,implicit,import,include,index,indexes,inherit,inherits,inline,instead,isnull,label,leakproof,least,limit,listen,load,location,lock,locked,logged,mapping,materialized,mode,move,nfc,nfd,nfkc,nfkd,nothing,notify,notnull,nowait,off,offset,oids,operator,owned,owner,parallel,parser,passing,password,plans,policy,prepared,procedural,procedures,program,publication,quote,reassign,recheck,refresh,reindex,rename,replace,replica,reset,restrict,returning,routines,rule,schemas,sequences,server,setof,share,show,skip,snapshot,stable,standalone,statistics,stdin,stdout,storage,stored,strict,strip,subscription,support,sysid,tables,tablespace,temp,template,text,truncate,trusted,types,unencrypted,unlisten,unlogged,until,vacuum,valid,validate,validator,variadic,verbose,version,views,volatile,whitespace,wrapper,xml,xmlattributes,xmlconcat,xmlelement,xmlexists,xmlforest,xmlnamespaces,xmlparse,xmlpi,xmlroot,xmlserialize,xmltable,yes']}] ready_for_query: txstatus: 73 - row_description: {fields: [{name: [115, 116, 114, 105, 110, 103, 95, 97, 103, 103], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} + row_description: {fields: [{field_name: string_agg, table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.036601245+05:30 - restimestampmock: 2024-02-12T16:43:50.036637454+05:30 + reqtimestampmock: 2025-04-11T09:58:16.72477415Z + restimestampmock: 2025-04-11T09:58:16.72483423Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -409,31 +372,20 @@ spec: - header: ["1", "2", T, D, C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABFQAAAAnAAFjdXJyZW50X3NjaGVtYQAAAAAAAAAAAAATAED/////AABEAAAAEAABAAAABnB1YmxpY0MAAAANU0VMRUNUIDEAWgAAAAVJ authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: [public]}, {row_values: [public]}, {row_values: [public]}] + - command_tag_type: SELECT 1 + data_row: [{row_values: [public]}] ready_for_query: txstatus: 73 - row_description: {fields: [{name: [99, 117, 114, 114, 101, 110, 116, 95, 115, 99, 104, 101, 109, 97], table_oid: 0, table_attribute_number: 0, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}]} + row_description: {fields: [{field_name: current_schema, table_oid: 0, table_attribute_number: 0, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.046345794+05:30 - restimestampmock: 2024-02-12T16:43:50.046379836+05:30 + reqtimestampmock: 2025-04-11T09:58:16.735183519Z + restimestampmock: 2025-04-11T09:58:16.73521735Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -451,14 +403,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.12466111+05:30 - restimestampmock: 2024-02-12T16:43:50.125023909+05:30 + reqtimestampmock: 2025-04-11T09:58:16.804999243Z + restimestampmock: 2025-04-11T09:58:16.805673244Z +connectionId: "2" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -468,25 +418,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.125615877+05:30 - restimestampmock: 2024-02-12T16:43:50.125628919+05:30 + reqtimestampmock: 2025-04-11T09:58:16.806400075Z + restimestampmock: 2025-04-11T09:58:16.806425865Z +connectionId: "2" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -507,16 +455,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 79, 71, 105, 125, 102, 99, 110, 36, 61, 68, 41, 124, 122, 90, 89, 36, 47, 43, 105, 58, 56, 96, 52, 53, 107, 81, 99, 122, 52, 102, 49, 54, 106, 49, 79, 99, 74, 85, 108, 53, 115, 80, 90, 108, 105, 101, 115, 104, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 43, 86, 33, 98, 47, 73, 64, 66, 85, 65, 62, 122, 98, 78, 86, 92, 73, 100, 72, 90, 65, 65, 112, 41, 56, 108, 112, 87, 110, 97, 81, 47, 80, 66, 65, 52, 76, 57, 57, 104, 78, 107, 43, 98, 67, 71, 116, 81, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.126251139+05:30 - restimestampmock: 2024-02-12T16:43:50.126260472+05:30 + reqtimestampmock: 2025-04-11T09:58:16.807189777Z + restimestampmock: 2025-04-11T09:58:16.807204234Z +connectionId: "2" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -535,15 +481,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 89, 99, 98, 119, 112, 99, 108, 99, 85, 118, 53, 115, 85, 110, 110, 103, 98, 56, 43, 73, 116, 66, 103, 121, 49, 85, 48, 47, 87, 107, 120, 69, 73, 100, 75, 98, 52, 75, 71, 52, 49, 72, 77, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 56, 56, 75, 51, 77, 50, 99, 52, 57, 113, 56, 86, 102, 57, 111, 84, 110, 105, 49, 71, 48, 69, 72, 76, 108, 74, 97, 51, 115, 81, 56, 110, 104, 112, 109, 81, 83, 116, 120, 108, 84, 115, 103, 61]} backend_key_data: - process_id: 76 - secret_key: 1002077137 + process_id: 71 + secret_key: 2198235015 parameter_status: - name: application_name value: "" @@ -570,17 +512,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.135318259+05:30 - restimestampmock: 2024-02-12T16:43:50.135350843+05:30 + reqtimestampmock: 2025-04-11T09:58:16.81271015Z + restimestampmock: 2025-04-11T09:58:16.812771313Z +connectionId: "2" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -608,22 +552,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.136259026+05:30 - restimestampmock: 2024-02-12T16:43:50.136269068+05:30 + reqtimestampmock: 2025-04-11T09:58:16.816320348Z + restimestampmock: 2025-04-11T09:58:16.816384261Z +connectionId: "2" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -641,14 +580,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.149805477+05:30 - restimestampmock: 2024-02-12T16:43:50.150253276+05:30 + reqtimestampmock: 2025-04-11T09:58:16.828056428Z + restimestampmock: 2025-04-11T09:58:16.828879128Z +connectionId: "4" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -658,25 +595,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.151007331+05:30 - restimestampmock: 2024-02-12T16:43:50.151019873+05:30 + reqtimestampmock: 2025-04-11T09:58:16.829856652Z + restimestampmock: 2025-04-11T09:58:16.829916523Z +connectionId: "4" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -697,16 +632,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 72, 121, 36, 95, 63, 88, 91, 123, 68, 60, 88, 89, 48, 74, 74, 86, 123, 72, 46, 50, 36, 40, 53, 45, 43, 84, 84, 55, 77, 108, 55, 48, 104, 75, 82, 89, 119, 109, 99, 71, 78, 105, 80, 88, 118, 97, 69, 114, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 47, 52, 122, 99, 36, 97, 86, 98, 102, 101, 73, 103, 34, 108, 79, 63, 93, 117, 114, 87, 80, 102, 52, 67, 104, 121, 118, 102, 104, 83, 105, 47, 85, 68, 65, 100, 79, 54, 102, 86, 57, 80, 114, 104, 75, 100, 53, 51, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.151523882+05:30 - restimestampmock: 2024-02-12T16:43:50.151532174+05:30 + reqtimestampmock: 2025-04-11T09:58:16.83027746Z + restimestampmock: 2025-04-11T09:58:16.830293875Z +connectionId: "4" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -725,15 +658,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 70, 67, 82, 66, 72, 74, 56, 99, 82, 77, 120, 89, 67, 109, 77, 119, 78, 88, 48, 54, 49, 43, 51, 103, 51, 77, 77, 113, 74, 79, 101, 89, 107, 67, 101, 51, 105, 43, 90, 104, 115, 52, 107, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 52, 90, 117, 102, 114, 66, 89, 99, 110, 74, 90, 119, 99, 98, 66, 85, 85, 50, 77, 71, 52, 67, 83, 121, 106, 48, 114, 78, 48, 75, 50, 47, 113, 76, 43, 90, 82, 114, 118, 48, 80, 115, 48, 61]} backend_key_data: - process_id: 77 - secret_key: 2815239238 + process_id: 72 + secret_key: 2795307873 parameter_status: - name: application_name value: "" @@ -760,17 +689,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.161113054+05:30 - restimestampmock: 2024-02-12T16:43:50.161139387+05:30 + reqtimestampmock: 2025-04-11T09:58:16.83381412Z + restimestampmock: 2025-04-11T09:58:16.833857493Z +connectionId: "4" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -798,22 +729,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.162246241+05:30 - restimestampmock: 2024-02-12T16:43:50.162259532+05:30 + reqtimestampmock: 2025-04-11T09:58:16.835749544Z + restimestampmock: 2025-04-11T09:58:16.835783709Z +connectionId: "4" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -831,14 +757,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.174570628+05:30 - restimestampmock: 2024-02-12T16:43:50.175025302+05:30 + reqtimestampmock: 2025-04-11T09:58:16.847470084Z + restimestampmock: 2025-04-11T09:58:16.848218538Z +connectionId: "6" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -848,25 +772,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.175576354+05:30 - restimestampmock: 2024-02-12T16:43:50.175589354+05:30 + reqtimestampmock: 2025-04-11T09:58:16.849170105Z + restimestampmock: 2025-04-11T09:58:16.849206853Z +connectionId: "6" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -887,16 +809,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 55, 83, 82, 52, 99, 72, 47, 105, 40, 125, 89, 66, 50, 90, 66, 81, 93, 57, 69, 93, 71, 56, 126, 78, 86, 89, 121, 66, 69, 114, 56, 82, 78, 55, 49, 103, 110, 43, 78, 100, 113, 50, 90, 47, 55, 101, 68, 52, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 49, 75, 38, 79, 39, 75, 74, 43, 121, 39, 41, 97, 46, 107, 104, 124, 64, 70, 49, 103, 70, 63, 52, 52, 52, 76, 55, 54, 110, 103, 71, 51, 57, 121, 86, 48, 104, 43, 51, 71, 48, 106, 68, 118, 78, 82, 88, 113, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.176155323+05:30 - restimestampmock: 2024-02-12T16:43:50.176164739+05:30 + reqtimestampmock: 2025-04-11T09:58:16.849551166Z + restimestampmock: 2025-04-11T09:58:16.849572831Z +connectionId: "6" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -915,15 +835,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 102, 99, 66, 90, 78, 87, 76, 116, 70, 49, 79, 113, 67, 66, 66, 52, 117, 82, 81, 121, 76, 98, 43, 50, 66, 99, 104, 65, 119, 77, 54, 72, 80, 107, 100, 120, 113, 70, 119, 88, 119, 56, 81, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 105, 122, 119, 70, 111, 122, 113, 107, 49, 55, 55, 70, 105, 107, 90, 56, 47, 86, 69, 113, 66, 120, 81, 120, 80, 53, 75, 49, 112, 107, 120, 99, 100, 109, 107, 66, 113, 80, 85, 57, 103, 74, 81, 61]} backend_key_data: - process_id: 78 - secret_key: 1814013018 + process_id: 73 + secret_key: 4262535552 parameter_status: - name: application_name value: "" @@ -950,17 +866,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.185917455+05:30 - restimestampmock: 2024-02-12T16:43:50.185959373+05:30 + reqtimestampmock: 2025-04-11T09:58:16.853182487Z + restimestampmock: 2025-04-11T09:58:16.853229568Z +connectionId: "6" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -988,22 +906,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.187115518+05:30 - restimestampmock: 2024-02-12T16:43:50.187127185+05:30 + reqtimestampmock: 2025-04-11T09:58:16.854699645Z + restimestampmock: 2025-04-11T09:58:16.854724019Z +connectionId: "6" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1021,14 +934,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.199841954+05:30 - restimestampmock: 2024-02-12T16:43:50.199945331+05:30 + reqtimestampmock: 2025-04-11T09:58:16.866211947Z + restimestampmock: 2025-04-11T09:58:16.867014231Z +connectionId: "8" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1038,25 +949,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.205629683+05:30 - restimestampmock: 2024-02-12T16:43:50.205649975+05:30 + reqtimestampmock: 2025-04-11T09:58:16.86791201Z + restimestampmock: 2025-04-11T09:58:16.867933092Z +connectionId: "8" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1077,16 +986,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 33, 41, 61, 88, 111, 109, 41, 117, 114, 95, 59, 125, 55, 86, 37, 83, 63, 86, 93, 83, 124, 93, 39, 70, 70, 50, 76, 87, 106, 80, 54, 120, 101, 122, 116, 120, 79, 107, 70, 70, 88, 80, 122, 48, 74, 79, 56, 49, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 59, 80, 99, 53, 92, 61, 76, 113, 48, 71, 38, 57, 74, 46, 73, 56, 78, 93, 103, 53, 78, 83, 90, 42, 102, 113, 52, 83, 50, 73, 109, 66, 74, 82, 122, 87, 87, 56, 73, 87, 51, 73, 68, 84, 113, 104, 65, 115, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.20623161+05:30 - restimestampmock: 2024-02-12T16:43:50.206241152+05:30 + reqtimestampmock: 2025-04-11T09:58:16.868286196Z + restimestampmock: 2025-04-11T09:58:16.868301362Z +connectionId: "8" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1105,15 +1012,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 55, 57, 50, 118, 82, 84, 100, 100, 75, 73, 102, 76, 86, 48, 74, 52, 117, 98, 110, 99, 49, 47, 81, 85, 54, 108, 101, 80, 79, 84, 65, 73, 66, 50, 53, 77, 108, 97, 90, 73, 103, 108, 115, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 120, 80, 120, 121, 99, 105, 75, 77, 122, 115, 104, 104, 70, 104, 79, 54, 99, 56, 107, 110, 53, 66, 82, 53, 105, 49, 88, 108, 73, 116, 80, 103, 66, 121, 103, 108, 52, 79, 80, 71, 50, 82, 103, 61]} backend_key_data: - process_id: 79 - secret_key: 4222458896 + process_id: 74 + secret_key: 1703932990 parameter_status: - name: application_name value: "" @@ -1140,17 +1043,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.21948193+05:30 - restimestampmock: 2024-02-12T16:43:50.21955489+05:30 + reqtimestampmock: 2025-04-11T09:58:16.871907518Z + restimestampmock: 2025-04-11T09:58:16.87196339Z +connectionId: "8" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1178,22 +1083,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.220514365+05:30 - restimestampmock: 2024-02-12T16:43:50.220530782+05:30 + reqtimestampmock: 2025-04-11T09:58:16.872989786Z + restimestampmock: 2025-04-11T09:58:16.873013951Z +connectionId: "8" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1211,14 +1111,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.233196592+05:30 - restimestampmock: 2024-02-12T16:43:50.233713393+05:30 + reqtimestampmock: 2025-04-11T09:58:16.884543918Z + restimestampmock: 2025-04-11T09:58:16.885380451Z +connectionId: "10" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1228,25 +1126,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.234698286+05:30 - restimestampmock: 2024-02-12T16:43:50.234713119+05:30 + reqtimestampmock: 2025-04-11T09:58:16.886137738Z + restimestampmock: 2025-04-11T09:58:16.88616407Z +connectionId: "10" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1267,16 +1163,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 74, 90, 49, 104, 38, 86, 115, 84, 90, 118, 46, 57, 35, 55, 110, 91, 56, 57, 53, 61, 121, 79, 67, 103, 69, 68, 98, 66, 116, 43, 114, 113, 83, 75, 81, 121, 90, 67, 98, 67, 70, 75, 105, 109, 122, 110, 52, 85, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 53, 86, 45, 52, 77, 86, 124, 84, 90, 69, 85, 98, 92, 116, 110, 123, 123, 64, 110, 105, 36, 95, 65, 68, 53, 99, 67, 74, 88, 108, 90, 76, 50, 78, 98, 117, 106, 90, 119, 85, 105, 99, 52, 86, 105, 81, 49, 78, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.235317713+05:30 - restimestampmock: 2024-02-12T16:43:50.235327422+05:30 + reqtimestampmock: 2025-04-11T09:58:16.886708204Z + restimestampmock: 2025-04-11T09:58:16.886730036Z +connectionId: "10" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1295,15 +1189,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 65, 110, 66, 76, 56, 108, 102, 79, 43, 79, 48, 50, 88, 80, 66, 50, 50, 120, 114, 102, 109, 50, 56, 99, 86, 76, 55, 87, 83, 86, 47, 103, 55, 118, 108, 54, 72, 82, 52, 101, 122, 82, 73, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 98, 71, 122, 86, 109, 56, 81, 105, 103, 103, 121, 90, 74, 80, 103, 118, 98, 117, 88, 97, 87, 88, 49, 108, 50, 57, 65, 107, 54, 101, 65, 83, 52, 88, 87, 97, 114, 106, 56, 104, 83, 65, 81, 61]} backend_key_data: - process_id: 80 - secret_key: 1103717122 + process_id: 75 + secret_key: 3634272219 parameter_status: - name: application_name value: "" @@ -1330,17 +1220,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.243879991+05:30 - restimestampmock: 2024-02-12T16:43:50.243906159+05:30 + reqtimestampmock: 2025-04-11T09:58:16.891509246Z + restimestampmock: 2025-04-11T09:58:16.891546868Z +connectionId: "10" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1368,22 +1260,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.245041179+05:30 - restimestampmock: 2024-02-12T16:43:50.245057512+05:30 + reqtimestampmock: 2025-04-11T09:58:16.893117273Z + restimestampmock: 2025-04-11T09:58:16.893198893Z +connectionId: "10" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1401,14 +1288,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.256794722+05:30 - restimestampmock: 2024-02-12T16:43:50.257225063+05:30 + reqtimestampmock: 2025-04-11T09:58:16.904928682Z + restimestampmock: 2025-04-11T09:58:16.905681594Z +connectionId: "12" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1418,25 +1303,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.258241415+05:30 - restimestampmock: 2024-02-12T16:43:50.25825479+05:30 + reqtimestampmock: 2025-04-11T09:58:16.906688492Z + restimestampmock: 2025-04-11T09:58:16.90671624Z +connectionId: "12" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1457,16 +1340,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 54, 119, 87, 95, 92, 66, 58, 70, 35, 52, 93, 94, 76, 62, 79, 51, 36, 61, 73, 98, 93, 42, 113, 107, 80, 110, 106, 55, 51, 76, 53, 105, 108, 119, 106, 120, 90, 88, 73, 75, 80, 121, 53, 117, 53, 112, 52, 69, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 66, 111, 124, 61, 86, 116, 90, 54, 103, 69, 120, 69, 39, 123, 53, 37, 86, 33, 94, 90, 109, 117, 72, 59, 65, 109, 81, 57, 69, 83, 65, 50, 103, 47, 50, 106, 87, 114, 83, 57, 49, 66, 116, 43, 57, 101, 110, 43, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.258768383+05:30 - restimestampmock: 2024-02-12T16:43:50.258777091+05:30 + reqtimestampmock: 2025-04-11T09:58:16.907131923Z + restimestampmock: 2025-04-11T09:58:16.907147589Z +connectionId: "12" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1485,15 +1366,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 107, 67, 86, 43, 111, 82, 98, 65, 104, 56, 76, 65, 52, 89, 115, 76, 66, 52, 54, 101, 43, 67, 69, 57, 115, 101, 88, 116, 79, 101, 107, 118, 101, 75, 71, 118, 117, 82, 104, 80, 101, 100, 115, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 118, 115, 53, 108, 112, 115, 88, 106, 74, 98, 110, 43, 89, 76, 115, 90, 104, 67, 111, 109, 117, 103, 108, 115, 56, 100, 103, 101, 85, 100, 100, 87, 107, 120, 75, 55, 87, 72, 49, 105, 122, 57, 89, 61]} backend_key_data: - process_id: 81 - secret_key: 4160748385 + process_id: 76 + secret_key: 3566245182 parameter_status: - name: application_name value: "" @@ -1520,17 +1397,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.26885648+05:30 - restimestampmock: 2024-02-12T16:43:50.268893814+05:30 + reqtimestampmock: 2025-04-11T09:58:16.910317147Z + restimestampmock: 2025-04-11T09:58:16.910374102Z +connectionId: "12" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1558,22 +1437,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.270706179+05:30 - restimestampmock: 2024-02-12T16:43:50.270718721+05:30 + reqtimestampmock: 2025-04-11T09:58:16.912107621Z + restimestampmock: 2025-04-11T09:58:16.91213087Z +connectionId: "12" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1591,14 +1465,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.283257695+05:30 - restimestampmock: 2024-02-12T16:43:50.283723412+05:30 + reqtimestampmock: 2025-04-11T09:58:16.923976693Z + restimestampmock: 2025-04-11T09:58:16.924599364Z +connectionId: "14" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1608,25 +1480,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.284230963+05:30 - restimestampmock: 2024-02-12T16:43:50.284242171+05:30 + reqtimestampmock: 2025-04-11T09:58:16.925365026Z + restimestampmock: 2025-04-11T09:58:16.925383858Z +connectionId: "14" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1647,16 +1517,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 103, 49, 72, 54, 50, 51, 105, 88, 37, 125, 47, 118, 75, 90, 102, 81, 45, 57, 45, 107, 86, 37, 56, 106, 48, 53, 73, 110, 68, 68, 89, 67, 66, 108, 49, 107, 112, 86, 67, 51, 79, 103, 121, 74, 67, 74, 76, 100, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 71, 55, 104, 85, 99, 42, 42, 72, 96, 59, 87, 88, 75, 46, 83, 36, 65, 87, 105, 107, 113, 126, 64, 73, 83, 122, 51, 113, 76, 99, 87, 89, 75, 100, 74, 120, 119, 119, 114, 80, 114, 105, 105, 55, 99, 74, 57, 119, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.284840849+05:30 - restimestampmock: 2024-02-12T16:43:50.284848224+05:30 + reqtimestampmock: 2025-04-11T09:58:16.925723296Z + restimestampmock: 2025-04-11T09:58:16.925734628Z +connectionId: "14" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1675,15 +1543,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 118, 108, 71, 106, 117, 113, 120, 76, 69, 53, 48, 105, 113, 52, 104, 57, 78, 47, 101, 88, 117, 69, 71, 99, 72, 48, 89, 83, 56, 88, 65, 108, 110, 112, 118, 99, 108, 115, 79, 120, 79, 97, 119, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 85, 112, 107, 101, 70, 56, 105, 99, 49, 120, 119, 108, 122, 121, 116, 52, 47, 121, 100, 113, 117, 86, 74, 52, 82, 121, 112, 69, 87, 53, 108, 114, 51, 106, 78, 106, 75, 75, 69, 56, 105, 73, 65, 61]} backend_key_data: - process_id: 82 - secret_key: 4236904492 + process_id: 77 + secret_key: 3348635632 parameter_status: - name: application_name value: "" @@ -1710,17 +1574,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.292080478+05:30 - restimestampmock: 2024-02-12T16:43:50.29210727+05:30 + reqtimestampmock: 2025-04-11T09:58:16.928851272Z + restimestampmock: 2025-04-11T09:58:16.928886229Z +connectionId: "14" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1748,22 +1614,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.293435586+05:30 - restimestampmock: 2024-02-12T16:43:50.293446836+05:30 + reqtimestampmock: 2025-04-11T09:58:16.930156985Z + restimestampmock: 2025-04-11T09:58:16.930172942Z +connectionId: "14" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1781,14 +1642,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.305297048+05:30 - restimestampmock: 2024-02-12T16:43:50.305861641+05:30 + reqtimestampmock: 2025-04-11T09:58:16.942480237Z + restimestampmock: 2025-04-11T09:58:16.942675392Z +connectionId: "16" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1798,25 +1657,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.306509236+05:30 - restimestampmock: 2024-02-12T16:43:50.306523486+05:30 + reqtimestampmock: 2025-04-11T09:58:16.943363517Z + restimestampmock: 2025-04-11T09:58:16.9433811Z +connectionId: "16" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1837,16 +1694,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 35, 118, 106, 95, 56, 119, 37, 33, 48, 83, 62, 91, 60, 97, 102, 81, 68, 89, 35, 74, 74, 79, 93, 58, 53, 76, 109, 43, 107, 75, 43, 78, 81, 84, 98, 107, 48, 78, 43, 70, 51, 70, 75, 78, 109, 54, 111, 97, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 94, 100, 41, 43, 69, 71, 41, 82, 37, 45, 48, 96, 43, 69, 36, 94, 33, 33, 46, 97, 74, 42, 89, 120, 72, 65, 53, 100, 97, 111, 73, 81, 67, 86, 66, 120, 78, 48, 82, 56, 68, 101, 100, 120, 65, 115, 89, 82, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.307000786+05:30 - restimestampmock: 2024-02-12T16:43:50.307008287+05:30 + reqtimestampmock: 2025-04-11T09:58:16.943739119Z + restimestampmock: 2025-04-11T09:58:16.943757743Z +connectionId: "16" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1865,15 +1720,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 77, 117, 51, 117, 71, 65, 79, 99, 86, 106, 119, 112, 70, 53, 113, 70, 99, 112, 80, 67, 69, 104, 54, 77, 77, 73, 69, 56, 116, 53, 87, 56, 109, 107, 83, 115, 107, 111, 56, 66, 87, 107, 52, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 55, 65, 47, 89, 107, 47, 114, 79, 87, 89, 54, 76, 87, 71, 49, 49, 69, 103, 113, 103, 103, 80, 78, 119, 70, 87, 70, 111, 112, 54, 80, 54, 52, 87, 97, 120, 73, 66, 90, 85, 110, 73, 81, 61]} backend_key_data: - process_id: 83 - secret_key: 4094673570 + process_id: 78 + secret_key: 2981493037 parameter_status: - name: application_name value: "" @@ -1900,17 +1751,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.309295327+05:30 - restimestampmock: 2024-02-12T16:43:50.309324578+05:30 + reqtimestampmock: 2025-04-11T09:58:16.946265425Z + restimestampmock: 2025-04-11T09:58:16.946324713Z +connectionId: "16" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1938,22 +1791,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.310726353+05:30 - restimestampmock: 2024-02-12T16:43:50.310739478+05:30 + reqtimestampmock: 2025-04-11T09:58:16.946918385Z + restimestampmock: 2025-04-11T09:58:16.946944008Z +connectionId: "16" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1971,14 +1819,12 @@ spec: postgresresponses: - payload: Tg== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.323227326+05:30 - restimestampmock: 2024-02-12T16:43:50.337663584+05:30 + reqtimestampmock: 2025-04-11T09:58:16.959073814Z + restimestampmock: 2025-04-11T09:58:16.959561326Z +connectionId: "18" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -1988,25 +1834,23 @@ spec: type: config postgresrequests: - identifier: StartupRequest - payload: AAAAeQADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBBc2lhL0tvbGthdGEAZXh0cmFfZmxvYXRfZGlnaXRzADIAAA== + payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= auth_type: 0 postgresresponses: - header: [R] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] authentication_sasl: auth_mechanisms: - SCRAM-SHA-256 msg_type: 82 auth_type: 10 - reqtimestampmock: 2024-02-12T16:43:50.338246178+05:30 - restimestampmock: 2024-02-12T16:43:50.338258553+05:30 + reqtimestampmock: 2025-04-11T09:58:16.960127792Z + restimestampmock: 2025-04-11T09:58:16.960151666Z +connectionId: "18" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2027,16 +1871,14 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 126, 83, 113, 38, 59, 70, 83, 79, 125, 68, 34, 68, 81, 42, 86, 88, 34, 66, 80, 84, 67, 39, 38, 90, 72, 73, 74, 78, 70, 73, 114, 100, 114, 119, 82, 113, 86, 43, 51, 73, 121, 115, 67, 81, 116, 88, 82, 72, 44, 115, 61, 98, 47, 103, 122, 108, 119, 81, 43, 102, 110, 74, 116, 119, 67, 72, 118, 113, 79, 122, 82, 104, 119, 61, 61, 44, 105, 61, 52, 48, 57, 54]} + salt: [0, 0, 0, 0] + authentication_sasl_continue: {data: [114, 61, 116, 86, 102, 122, 36, 61, 42, 119, 95, 33, 124, 95, 65, 125, 59, 94, 34, 104, 80, 79, 38, 83, 107, 88, 115, 120, 97, 116, 76, 117, 120, 117, 107, 81, 99, 56, 112, 43, 122, 69, 86, 78, 49, 57, 122, 54, 55, 109, 44, 115, 61, 103, 118, 106, 112, 88, 102, 110, 54, 77, 117, 77, 71, 51, 69, 51, 48, 90, 115, 70, 83, 54, 103, 61, 61, 44, 105, 61, 52, 48, 57, 54]} msg_type: 82 auth_type: 11 - reqtimestampmock: 2024-02-12T16:43:50.339323114+05:30 - restimestampmock: 2024-02-12T16:43:50.339332156+05:30 + reqtimestampmock: 2025-04-11T09:58:16.960489104Z + restimestampmock: 2025-04-11T09:58:16.960507852Z +connectionId: "18" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2055,15 +1897,11 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 99, 120, 106, 113, 76, 85, 68, 47, 90, 122, 122, 68, 66, 88, 65, 69, 82, 50, 82, 49, 100, 67, 78, 116, 43, 117, 82, 88, 68, 101, 87, 50, 117, 76, 70, 68, 109, 67, 57, 43, 71, 118, 69, 61]} + salt: [0, 0, 0, 0] + authentication_sasl_final: {data: [118, 61, 107, 67, 69, 110, 82, 102, 115, 111, 115, 86, 102, 76, 47, 114, 55, 114, 55, 68, 79, 105, 50, 112, 78, 116, 118, 122, 90, 121, 118, 57, 68, 84, 57, 104, 89, 78, 121, 102, 113, 52, 107, 106, 48, 61]} backend_key_data: - process_id: 84 - secret_key: 400980314 + process_id: 79 + secret_key: 4192555233 parameter_status: - name: application_name value: "" @@ -2090,17 +1928,19 @@ spec: - name: standard_conforming_strings value: "on" - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC - name: TimeZone - value: Asia/Kolkata + value: Etc/UTC ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.341942828+05:30 - restimestampmock: 2024-02-12T16:43:50.34197137+05:30 + reqtimestampmock: 2025-04-11T09:58:16.962991452Z + restimestampmock: 2025-04-11T09:58:16.963047907Z +connectionId: "18" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2128,22 +1968,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.343610024+05:30 - restimestampmock: 2024-02-12T16:43:50.343621899+05:30 + reqtimestampmock: 2025-04-11T09:58:16.963683951Z + restimestampmock: 2025-04-11T09:58:16.963707117Z +connectionId: "18" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2173,31 +2008,20 @@ spec: - header: ["1", "2", T, D, C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABFQAAAAnAAFjdXJyZW50X3NjaGVtYQAAAAAAAAAAAAATAED/////AABEAAAAEAABAAAABnB1YmxpY0MAAAANU0VMRUNUIDEAWgAAAAVJ authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: [public]}, {row_values: [public]}, {row_values: [public]}] + - command_tag_type: SELECT 1 + data_row: [{row_values: [public]}] ready_for_query: txstatus: 73 - row_description: {fields: [{name: [99, 117, 114, 114, 101, 110, 116, 95, 115, 99, 104, 101, 109, 97], table_oid: 0, table_attribute_number: 0, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}]} + row_description: {fields: [{field_name: current_schema, table_oid: 0, table_attribute_number: 0, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.047373354+05:30 - restimestampmock: 2024-02-12T16:43:50.047392438+05:30 + reqtimestampmock: 2025-04-11T09:58:16.735990595Z + restimestampmock: 2025-04-11T09:58:16.736010094Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2228,17 +2052,15 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.681629025+05:30 - restimestampmock: 2024-02-12T16:43:50.681654483+05:30 + reqtimestampmock: 2025-04-11T09:58:17.362499886Z + restimestampmock: 2025-04-11T09:58:17.362534759Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2250,7 +2072,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAADIAc2VsZWN0ICogZnJvbSBpbmZvcm1hdGlvbl9zY2hlbWEuc2VxdWVuY2VzAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAFgAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHBldHMgZHJvcCBjb25zdHJhaW50IGlmIGV4aXN0cyBGSzZ0ZWc0a2NqY25qaGR1Z3VmdDU2d2Nmb2EAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - {} describe: @@ -2260,37 +2082,54 @@ spec: - {} parse: - name: "" - query: select * from information_schema.sequences + query: alter table if exists pets drop constraint if exists FK6teg4kcjcnjhduguft56wcfoa parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", T, C, Z] + - header: ["1", "2", "n", "N"] + identifier: ServerResponse + length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAJxTTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1jb25zdHJhaW50ICJmazZ0ZWc0a2NqY25qaGR1Z3VmdDU2d2Nmb2EiIG9mIHJlbGF0aW9uICJwZXRzIiBkb2VzIG5vdCBleGlzdCwgc2tpcHBpbmcARnRhYmxlY21kcy5jAEwxMTk4MwBSQVRFeGVjRHJvcENvbnN0cmFpbnQAAA== + authentication_md5_password: + salt: [0, 0, 0, 0] + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: constraint "fk6teg4kcjcnjhduguft56wcfoa" of relation "pets" does not exist, skipping + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: tablecmds.c + line: 11983 + routine: ATExecDropConstraint + unknown_fields: {} + msg_type: 78 + auth_type: 0 + - header: [C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 - row_description: {fields: [{name: [115, 101, 113, 117, 101, 110, 99, 101, 95, 99, 97, 116, 97, 108, 111, 103], table_oid: 13365, table_attribute_number: 1, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [115, 101, 113, 117, 101, 110, 99, 101, 95, 115, 99, 104, 101, 109, 97], table_oid: 13365, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [115, 101, 113, 117, 101, 110, 99, 101, 95, 110, 97, 109, 101], table_oid: 13365, table_attribute_number: 3, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [100, 97, 116, 97, 95, 116, 121, 112, 101], table_oid: 13365, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [110, 117, 109, 101, 114, 105, 99, 95, 112, 114, 101, 99, 105, 115, 105, 111, 110], table_oid: 13365, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 117, 109, 101, 114, 105, 99, 95, 112, 114, 101, 99, 105, 115, 105, 111, 110, 95, 114, 97, 100, 105, 120], table_oid: 13365, table_attribute_number: 6, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 117, 109, 101, 114, 105, 99, 95, 115, 99, 97, 108, 101], table_oid: 13365, table_attribute_number: 7, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [115, 116, 97, 114, 116, 95, 118, 97, 108, 117, 101], table_oid: 13365, table_attribute_number: 8, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [109, 105, 110, 105, 109, 117, 109, 95, 118, 97, 108, 117, 101], table_oid: 13365, table_attribute_number: 9, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [109, 97, 120, 105, 109, 117, 109, 95, 118, 97, 108, 117, 101], table_oid: 13365, table_attribute_number: 10, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [105, 110, 99, 114, 101, 109, 101, 110, 116], table_oid: 13365, table_attribute_number: 11, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [99, 121, 99, 108, 101, 95, 111, 112, 116, 105, 111, 110], table_oid: 13365, table_attribute_number: 12, data_type_oid: 1043, data_type_size: -1, type_modifier: 7, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.684237155+05:30 - restimestampmock: 2024-02-12T16:43:50.684267947+05:30 + reqtimestampmock: 2025-04-11T09:58:17.364516847Z + restimestampmock: 2025-04-11T09:58:17.364896407Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2302,7 +2141,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAABvoAU0VMRUNUIE5VTEwgQVMgVEFCTEVfQ0FULCBuLm5zcG5hbWUgQVMgVEFCTEVfU0NIRU0sIGMucmVsbmFtZSBBUyBUQUJMRV9OQU1FLCAgQ0FTRSBuLm5zcG5hbWUgfiAnXnBnXycgT1Igbi5uc3BuYW1lID0gJ2luZm9ybWF0aW9uX3NjaGVtYScgIFdIRU4gdHJ1ZSBUSEVOIENBU0UgIFdIRU4gbi5uc3BuYW1lID0gJ3BnX2NhdGFsb2cnIE9SIG4ubnNwbmFtZSA9ICdpbmZvcm1hdGlvbl9zY2hlbWEnIFRIRU4gQ0FTRSBjLnJlbGtpbmQgICBXSEVOICdyJyBUSEVOICdTWVNURU0gVEFCTEUnICAgV0hFTiAndicgVEhFTiAnU1lTVEVNIFZJRVcnICAgV0hFTiAnaScgVEhFTiAnU1lTVEVNIElOREVYJyAgIEVMU0UgTlVMTCAgIEVORCAgV0hFTiBuLm5zcG5hbWUgPSAncGdfdG9hc3QnIFRIRU4gQ0FTRSBjLnJlbGtpbmQgICBXSEVOICdyJyBUSEVOICdTWVNURU0gVE9BU1QgVEFCTEUnICAgV0hFTiAnaScgVEhFTiAnU1lTVEVNIFRPQVNUIElOREVYJyAgIEVMU0UgTlVMTCAgIEVORCAgRUxTRSBDQVNFIGMucmVsa2luZCAgIFdIRU4gJ3InIFRIRU4gJ1RFTVBPUkFSWSBUQUJMRScgICBXSEVOICdwJyBUSEVOICdURU1QT1JBUlkgVEFCTEUnICAgV0hFTiAnaScgVEhFTiAnVEVNUE9SQVJZIElOREVYJyAgIFdIRU4gJ1MnIFRIRU4gJ1RFTVBPUkFSWSBTRVFVRU5DRScgICBXSEVOICd2JyBUSEVOICdURU1QT1JBUlkgVklFVycgICBFTFNFIE5VTEwgICBFTkQgIEVORCAgV0hFTiBmYWxzZSBUSEVOIENBU0UgYy5yZWxraW5kICBXSEVOICdyJyBUSEVOICdUQUJMRScgIFdIRU4gJ3AnIFRIRU4gJ1BBUlRJVElPTkVEIFRBQkxFJyAgV0hFTiAnaScgVEhFTiAnSU5ERVgnICBXSEVOICdQJyB0aGVuICdQQVJUSVRJT05FRCBJTkRFWCcgIFdIRU4gJ1MnIFRIRU4gJ1NFUVVFTkNFJyAgV0hFTiAndicgVEhFTiAnVklFVycgIFdIRU4gJ2MnIFRIRU4gJ1RZUEUnICBXSEVOICdmJyBUSEVOICdGT1JFSUdOIFRBQkxFJyAgV0hFTiAnbScgVEhFTiAnTUFURVJJQUxJWkVEIFZJRVcnICBFTFNFIE5VTEwgIEVORCAgRUxTRSBOVUxMICBFTkQgIEFTIFRBQkxFX1RZUEUsIGQuZGVzY3JpcHRpb24gQVMgUkVNQVJLUywgICcnIGFzIFRZUEVfQ0FULCAnJyBhcyBUWVBFX1NDSEVNLCAnJyBhcyBUWVBFX05BTUUsICcnIEFTIFNFTEZfUkVGRVJFTkNJTkdfQ09MX05BTUUsICcnIEFTIFJFRl9HRU5FUkFUSU9OICBGUk9NIHBnX2NhdGFsb2cucGdfbmFtZXNwYWNlIG4sIHBnX2NhdGFsb2cucGdfY2xhc3MgYyAgTEVGVCBKT0lOIHBnX2NhdGFsb2cucGdfZGVzY3JpcHRpb24gZCBPTiAoYy5vaWQgPSBkLm9iam9pZCBBTkQgZC5vYmpzdWJpZCA9IDAgIGFuZCBkLmNsYXNzb2lkID0gJ3BnX2NsYXNzJzo6cmVnY2xhc3MpICBXSEVSRSBjLnJlbG5hbWVzcGFjZSA9IG4ub2lkICBBTkQgbi5uc3BuYW1lIExJS0UgJ3B1YmxpYycgQU5EIGMucmVsbmFtZSBMSUtFICclJyBBTkQgKGZhbHNlICBPUiAoIGMucmVsa2luZCA9ICdyJyBBTkQgbi5uc3BuYW1lICF+ICdecGdfJyBBTkQgbi5uc3BuYW1lIDw+ICdpbmZvcm1hdGlvbl9zY2hlbWEnICkgIE9SICggYy5yZWxraW5kID0gJ3YnIEFORCBuLm5zcG5hbWUgPD4gJ3BnX2NhdGFsb2cnIEFORCBuLm5zcG5hbWUgPD4gJ2luZm9ybWF0aW9uX3NjaGVtYScgKSAgT1IgKCBjLnJlbGtpbmQgPSAnbScgKSAgT1IgKCBjLnJlbGtpbmQgPSAncCcgQU5EIG4ubnNwbmFtZSAhfiAnXnBnXycgQU5EIG4ubnNwbmFtZSA8PiAnaW5mb3JtYXRpb25fc2NoZW1hJyApICkgIE9SREVSIEJZIFRBQkxFX1RZUEUsVEFCTEVfU0NIRU0sVEFCTEVfTkFNRSAAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + payload: UAAAAFgAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHBldHMgZHJvcCBjb25zdHJhaW50IGlmIGV4aXN0cyBGS3RtbWgxdHE4cGFoNXZ4ZjhrdXFxcGxvNHAAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - {} describe: @@ -2312,37 +2151,47 @@ spec: - {} parse: - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''%'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' + query: alter table if exists pets drop constraint if exists FKtmmh1tq8pah5vxf8kuqqplo4p parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", T, C, Z] + - header: ["1", "2", "n", "N", C, Z] identifier: ServerResponse length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAJxTTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1jb25zdHJhaW50ICJma3RtbWgxdHE4cGFoNXZ4ZjhrdXFxcGxvNHAiIG9mIHJlbGF0aW9uICJwZXRzIiBkb2VzIG5vdCBleGlzdCwgc2tpcHBpbmcARnRhYmxlY21kcy5jAEwxMTk4MwBSQVRFeGVjRHJvcENvbnN0cmFpbnQAAEMAAAAQQUxURVIgVEFCTEUAWgAAAAVJ authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: ALTER TABLE + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: constraint "fktmmh1tq8pah5vxf8kuqqplo4p" of relation "pets" does not exist, skipping + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: tablecmds.c + line: 11983 + routine: ATExecDropConstraint + unknown_fields: {} ready_for_query: txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.689428372+05:30 - restimestampmock: 2024-02-12T16:43:50.689456164+05:30 + reqtimestampmock: 2025-04-11T09:58:17.366961865Z + restimestampmock: 2025-04-11T09:58:17.366988322Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2354,7 +2203,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAABIQAU0VMRUNUICogRlJPTSAoU0VMRUNUIG4ubnNwbmFtZSxjLnJlbG5hbWUsYS5hdHRuYW1lLGEuYXR0dHlwaWQsYS5hdHRub3RudWxsIE9SICh0LnR5cHR5cGUgPSAnZCcgQU5EIHQudHlwbm90bnVsbCkgQVMgYXR0bm90bnVsbCxhLmF0dHR5cG1vZCxhLmF0dGxlbix0LnR5cHR5cG1vZCxyb3dfbnVtYmVyKCkgT1ZFUiAoUEFSVElUSU9OIEJZIGEuYXR0cmVsaWQgT1JERVIgQlkgYS5hdHRudW0pIEFTIGF0dG51bSwgbnVsbGlmKGEuYXR0aWRlbnRpdHksICcnKSBhcyBhdHRpZGVudGl0eSxudWxsaWYoYS5hdHRnZW5lcmF0ZWQsICcnKSBhcyBhdHRnZW5lcmF0ZWQscGdfY2F0YWxvZy5wZ19nZXRfZXhwcihkZWYuYWRiaW4sIGRlZi5hZHJlbGlkKSBBUyBhZHNyYyxkc2MuZGVzY3JpcHRpb24sdC50eXBiYXNldHlwZSx0LnR5cHR5cGUgIEZST00gcGdfY2F0YWxvZy5wZ19uYW1lc3BhY2UgbiAgSk9JTiBwZ19jYXRhbG9nLnBnX2NsYXNzIGMgT04gKGMucmVsbmFtZXNwYWNlID0gbi5vaWQpICBKT0lOIHBnX2NhdGFsb2cucGdfYXR0cmlidXRlIGEgT04gKGEuYXR0cmVsaWQ9Yy5vaWQpICBKT0lOIHBnX2NhdGFsb2cucGdfdHlwZSB0IE9OIChhLmF0dHR5cGlkID0gdC5vaWQpICBMRUZUIEpPSU4gcGdfY2F0YWxvZy5wZ19hdHRyZGVmIGRlZiBPTiAoYS5hdHRyZWxpZD1kZWYuYWRyZWxpZCBBTkQgYS5hdHRudW0gPSBkZWYuYWRudW0pICBMRUZUIEpPSU4gcGdfY2F0YWxvZy5wZ19kZXNjcmlwdGlvbiBkc2MgT04gKGMub2lkPWRzYy5vYmpvaWQgQU5EIGEuYXR0bnVtID0gZHNjLm9ianN1YmlkKSAgTEVGVCBKT0lOIHBnX2NhdGFsb2cucGdfY2xhc3MgZGMgT04gKGRjLm9pZD1kc2MuY2xhc3NvaWQgQU5EIGRjLnJlbG5hbWU9J3BnX2NsYXNzJykgIExFRlQgSk9JTiBwZ19jYXRhbG9nLnBnX25hbWVzcGFjZSBkbiBPTiAoZGMucmVsbmFtZXNwYWNlPWRuLm9pZCBBTkQgZG4ubnNwbmFtZT0ncGdfY2F0YWxvZycpICBXSEVSRSBjLnJlbGtpbmQgaW4gKCdyJywncCcsJ3YnLCdmJywnbScpIGFuZCBhLmF0dG51bSA+IDAgQU5EIE5PVCBhLmF0dGlzZHJvcHBlZCAgQU5EIG4ubnNwbmFtZSBMSUtFICdwdWJsaWMnKSBjIFdIRVJFIHRydWUgIEFORCBhdHRuYW1lIExJS0UgJyUnIE9SREVSIEJZIG5zcG5hbWUsYy5yZWxuYW1lLGF0dG51bSAAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + payload: UAAAAFkAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHJvbGVzIGRyb3AgY29uc3RyYWludCBpZiBleGlzdHMgRktxbXlrZzJtYWJ3a2sxdmhwYzQ1MjZnNDRrAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - {} describe: @@ -2364,37 +2213,54 @@ spec: - {} parse: - name: "" - query: 'SELECT * FROM (SELECT n.nspname,c.relname,a.attname,a.atttypid,a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull) AS attnotnull,a.atttypmod,a.attlen,t.typtypmod,row_number() OVER (PARTITION BY a.attrelid ORDER BY a.attnum) AS attnum, nullif(a.attidentity, '''') as attidentity,nullif(a.attgenerated, '''') as attgenerated,pg_catalog.pg_get_expr(def.adbin, def.adrelid) AS adsrc,dsc.description,t.typbasetype,t.typtype FROM pg_catalog.pg_namespace n JOIN pg_catalog.pg_class c ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (a.attrelid=c.oid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef def ON (a.attrelid=def.adrelid AND a.attnum = def.adnum) LEFT JOIN pg_catalog.pg_description dsc ON (c.oid=dsc.objoid AND a.attnum = dsc.objsubid) LEFT JOIN pg_catalog.pg_class dc ON (dc.oid=dsc.classoid AND dc.relname=''pg_class'') LEFT JOIN pg_catalog.pg_namespace dn ON (dc.relnamespace=dn.oid AND dn.nspname=''pg_catalog'') WHERE c.relkind in (''r'',''p'',''v'',''f'',''m'') and a.attnum > 0 AND NOT a.attisdropped AND n.nspname LIKE ''public'') c WHERE true AND attname LIKE ''%'' ORDER BY nspname,c.relname,attnum ' + query: alter table if exists roles drop constraint if exists FKqmykg2mabwkk1vhpc4526g44k parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", T, C, Z] + - header: ["1", "2", "n", "N"] + identifier: ServerResponse + length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAJ1TTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1jb25zdHJhaW50ICJma3FteWtnMm1hYndrazF2aHBjNDUyNmc0NGsiIG9mIHJlbGF0aW9uICJyb2xlcyIgZG9lcyBub3QgZXhpc3QsIHNraXBwaW5nAEZ0YWJsZWNtZHMuYwBMMTE5ODMAUkFURXhlY0Ryb3BDb25zdHJhaW50AAA= + authentication_md5_password: + salt: [0, 0, 0, 0] + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: constraint "fkqmykg2mabwkk1vhpc4526g44k" of relation "roles" does not exist, skipping + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: tablecmds.c + line: 11983 + routine: ATExecDropConstraint + unknown_fields: {} + msg_type: 78 + auth_type: 0 + - header: [C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 - row_description: {fields: [{name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [97, 116, 116, 116, 121, 112, 105, 100], table_oid: 1249, table_attribute_number: 3, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 111, 116, 110, 117, 108, 108], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [97, 116, 116, 116, 121, 112, 109, 111, 100], table_oid: 1249, table_attribute_number: 9, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 108, 101, 110], table_oid: 1249, table_attribute_number: 5, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [116, 121, 112, 116, 121, 112, 109, 111, 100], table_oid: 1247, table_attribute_number: 27, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 20, data_type_size: 8, type_modifier: -1, format: 0}, {name: [97, 116, 116, 105, 100, 101, 110, 116, 105, 116, 121], table_oid: 0, table_attribute_number: 0, data_type_oid: 18, data_type_size: 1, type_modifier: -1, format: 0}, {name: [97, 116, 116, 103, 101, 110, 101, 114, 97, 116, 101, 100], table_oid: 0, table_attribute_number: 0, data_type_oid: 18, data_type_size: 1, type_modifier: -1, format: 0}, {name: [97, 100, 115, 114, 99], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 98, 97, 115, 101, 116, 121, 112, 101], table_oid: 1247, table_attribute_number: 26, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [116, 121, 112, 116, 121, 112, 101], table_oid: 1247, table_attribute_number: 7, data_type_oid: 18, data_type_size: 1, type_modifier: -1, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.692208505+05:30 - restimestampmock: 2024-02-12T16:43:50.692241298+05:30 + reqtimestampmock: 2025-04-11T09:58:17.368840876Z + restimestampmock: 2025-04-11T09:58:17.369031823Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2406,7 +2272,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAALQAY3JlYXRlIHRhYmxlIG93bmVycyAoaWQgc2VyaWFsIG5vdCBudWxsLCBmaXJzdF9uYW1lIHZhcmNoYXIoMjU1KSwgbGFzdF9uYW1lIHZhcmNoYXIoMjU1KSwgYWRkcmVzcyB2YXJjaGFyKDI1NSksIGNpdHkgdmFyY2hhcigyNTUpLCB0ZWxlcGhvbmUgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAAGMAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZldF9zcGVjaWFsdGllcyBkcm9wIGNvbnN0cmFpbnQgaWYgZXhpc3RzIEZLMzV1aWJveXJwZm4xYm5kcnI1am9yY2owbQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -2416,40 +2282,54 @@ spec: - {} parse: - name: "" - query: create table owners (id serial not null, first_name varchar(255), last_name varchar(255), address varchar(255), city varchar(255), telephone varchar(255), primary key (id)) + query: alter table if exists vet_specialties drop constraint if exists FK35uiboyrpfn1bndrr5jorcj0m parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", C, Z] + - header: ["1", "2", "n", "N"] + identifier: ServerResponse + length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAKdTTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1jb25zdHJhaW50ICJmazM1dWlib3lycGZuMWJuZHJyNWpvcmNqMG0iIG9mIHJlbGF0aW9uICJ2ZXRfc3BlY2lhbHRpZXMiIGRvZXMgbm90IGV4aXN0LCBza2lwcGluZwBGdGFibGVjbWRzLmMATDExOTgzAFJBVEV4ZWNEcm9wQ29uc3RyYWludAAA + authentication_md5_password: + salt: [0, 0, 0, 0] + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: constraint "fk35uiboyrpfn1bndrr5jorcj0m" of relation "vet_specialties" does not exist, skipping + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: tablecmds.c + line: 11983 + routine: ATExecDropConstraint + unknown_fields: {} + msg_type: 78 + auth_type: 0 + - header: [C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.705328907+05:30 - restimestampmock: 2024-02-12T16:43:50.7054282+05:30 + reqtimestampmock: 2025-04-11T09:58:17.369913061Z + restimestampmock: 2025-04-11T09:58:17.369982599Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2461,7 +2341,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAIcAY3JlYXRlIHRhYmxlIHBldHMgKGlkIHNlcmlhbCBub3QgbnVsbCwgbmFtZSB2YXJjaGFyKDI1NSksIGJpcnRoX2RhdGUgREFURSwgb3duZXJfaWQgaW50ZWdlciwgdHlwZV9pZCBpbnRlZ2VyLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAAGMAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZldF9zcGVjaWFsdGllcyBkcm9wIGNvbnN0cmFpbnQgaWYgZXhpc3RzIEZLYnkxYzBmYmFhMGJ5YWlmaTYzdnQxOHN4OQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -2471,40 +2351,47 @@ spec: - {} parse: - name: "" - query: create table pets (id serial not null, name varchar(255), birth_date DATE, owner_id integer, type_id integer, primary key (id)) + query: alter table if exists vet_specialties drop constraint if exists FKby1c0fbaa0byaifi63vt18sx9 parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", C, Z] + - header: ["1", "2", "n", "N", C, Z] identifier: ServerResponse length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAKdTTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1jb25zdHJhaW50ICJma2J5MWMwZmJhYTBieWFpZmk2M3Z0MThzeDkiIG9mIHJlbGF0aW9uICJ2ZXRfc3BlY2lhbHRpZXMiIGRvZXMgbm90IGV4aXN0LCBza2lwcGluZwBGdGFibGVjbWRzLmMATDExOTgzAFJBVEV4ZWNEcm9wQ29uc3RyYWludAAAQwAAABBBTFRFUiBUQUJMRQBaAAAABUk= authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: ALTER TABLE + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: constraint "fkby1c0fbaa0byaifi63vt18sx9" of relation "vet_specialties" does not exist, skipping + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: tablecmds.c + line: 11983 + routine: ATExecDropConstraint + unknown_fields: {} ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.707634364+05:30 - restimestampmock: 2024-02-12T16:43:50.707659365+05:30 + reqtimestampmock: 2025-04-11T09:58:17.374354958Z + restimestampmock: 2025-04-11T09:58:17.374537072Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2516,7 +2403,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAGsAY3JlYXRlIHRhYmxlIHJvbGVzIChpZCBzZXJpYWwgbm90IG51bGwsIHJvbGUgdmFyY2hhcigyNTUpLCB1c2VybmFtZSB2YXJjaGFyKDI1NSksIHByaW1hcnkga2V5IChpZCkpAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAFoAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZpc2l0cyBkcm9wIGNvbnN0cmFpbnQgaWYgZXhpc3RzIEZLNmpjaWZobHFxbHNmc2V1Njd1dGxvdWF1eQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -2526,40 +2413,54 @@ spec: - {} parse: - name: "" - query: create table roles (id serial not null, role varchar(255), username varchar(255), primary key (id)) + query: alter table if exists visits drop constraint if exists FK6jcifhlqqlsfseu67utlouauy parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", C, Z] + - header: ["1", "2", "n", "N"] + identifier: ServerResponse + length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAJ5TTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1jb25zdHJhaW50ICJmazZqY2lmaGxxcWxzZnNldTY3dXRsb3VhdXkiIG9mIHJlbGF0aW9uICJ2aXNpdHMiIGRvZXMgbm90IGV4aXN0LCBza2lwcGluZwBGdGFibGVjbWRzLmMATDExOTgzAFJBVEV4ZWNEcm9wQ29uc3RyYWludAAA + authentication_md5_password: + salt: [0, 0, 0, 0] + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: constraint "fk6jcifhlqqlsfseu67utlouauy" of relation "visits" does not exist, skipping + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: tablecmds.c + line: 11983 + routine: ATExecDropConstraint + unknown_fields: {} + msg_type: 78 + auth_type: 0 + - header: [C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.711182636+05:30 - restimestampmock: 2024-02-12T16:43:50.711202428+05:30 + reqtimestampmock: 2025-04-11T09:58:17.383462031Z + restimestampmock: 2025-04-11T09:58:17.383729473Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2571,7 +2472,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAFoAY3JlYXRlIHRhYmxlIHNwZWNpYWx0aWVzIChpZCBzZXJpYWwgbm90IG51bGwsIG5hbWUgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAACsAZHJvcCB0YWJsZSBpZiBleGlzdHMgb3duZXJzIGNhc2NhZGUAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - {} describe: @@ -2581,40 +2482,54 @@ spec: - {} parse: - name: "" - query: create table specialties (id serial not null, name varchar(255), primary key (id)) + query: drop table if exists owners cascade parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", C, Z] + - header: ["1", "2", "n", "N"] + identifier: ServerResponse + length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAIZTTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1kcm9wIGNhc2NhZGVzIHRvIGNvbnN0cmFpbnQgcGV0c19vd25lcl9pZF9ma2V5IG9uIHRhYmxlIHBldHMARmRlcGVuZGVuY3kuYwBMMTIxNwBScmVwb3J0RGVwZW5kZW50T2JqZWN0cwAA + authentication_md5_password: + salt: [0, 0, 0, 0] + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: drop cascades to constraint pets_owner_id_fkey on table pets + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: dependency.c + line: 1217 + routine: reportDependentObjects + unknown_fields: {} + msg_type: 78 + auth_type: 0 + - header: [C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.713449843+05:30 - restimestampmock: 2024-02-12T16:43:50.713466594+05:30 + reqtimestampmock: 2025-04-11T09:58:17.387574448Z + restimestampmock: 2025-04-11T09:58:17.388426313Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2626,7 +2541,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAFQAY3JlYXRlIHRhYmxlIHR5cGVzIChpZCBzZXJpYWwgbm90IG51bGwsIG5hbWUgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAACkAZHJvcCB0YWJsZSBpZiBleGlzdHMgcGV0cyBjYXNjYWRlAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - {} describe: @@ -2636,40 +2551,54 @@ spec: - {} parse: - name: "" - query: create table types (id serial not null, name varchar(255), primary key (id)) + query: drop table if exists pets cascade parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", C, Z] + - header: ["1", "2", "n", "N"] + identifier: ServerResponse + length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAIhTTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1kcm9wIGNhc2NhZGVzIHRvIGNvbnN0cmFpbnQgdmlzaXRzX3BldF9pZF9ma2V5IG9uIHRhYmxlIHZpc2l0cwBGZGVwZW5kZW5jeS5jAEwxMjE3AFJyZXBvcnREZXBlbmRlbnRPYmplY3RzAAA= + authentication_md5_password: + salt: [0, 0, 0, 0] + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: drop cascades to constraint visits_pet_id_fkey on table visits + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: dependency.c + line: 1217 + routine: reportDependentObjects + unknown_fields: {} + msg_type: 78 + auth_type: 0 + - header: [C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.715362961+05:30 - restimestampmock: 2024-02-12T16:43:50.715380295+05:30 + reqtimestampmock: 2025-04-11T09:58:17.390753172Z + restimestampmock: 2025-04-11T09:58:17.391215519Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2681,7 +2610,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAHsAY3JlYXRlIHRhYmxlIHVzZXJzICh1c2VybmFtZSB2YXJjaGFyKDI1NSkgbm90IG51bGwsIGVuYWJsZWQgYm9vbGVhbiwgcGFzc3dvcmQgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAodXNlcm5hbWUpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAACoAZHJvcCB0YWJsZSBpZiBleGlzdHMgcm9sZXMgY2FzY2FkZQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -2691,7 +2620,7 @@ spec: - {} parse: - name: "" - query: create table users (username varchar(255) not null, enabled boolean, password varchar(255), primary key (username)) + query: drop table if exists roles cascade parameter_oids: [] msg_type: 69 auth_type: 0 @@ -2700,31 +2629,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.718600769+05:30 - restimestampmock: 2024-02-12T16:43:50.718618811+05:30 + reqtimestampmock: 2025-04-11T09:58:17.393895565Z + restimestampmock: 2025-04-11T09:58:17.393933313Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2736,7 +2651,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAIEAY3JlYXRlIHRhYmxlIHZldF9zcGVjaWFsdGllcyAodmV0X2lkIGludGVnZXIgbm90IG51bGwsIHNwZWNpYWx0eV9pZCBpbnRlZ2VyIG5vdCBudWxsLCBwcmltYXJ5IGtleSAodmV0X2lkLCBzcGVjaWFsdHlfaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAADAAZHJvcCB0YWJsZSBpZiBleGlzdHMgc3BlY2lhbHRpZXMgY2FzY2FkZQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -2746,40 +2661,54 @@ spec: - {} parse: - name: "" - query: create table vet_specialties (vet_id integer not null, specialty_id integer not null, primary key (vet_id, specialty_id)) + query: drop table if exists specialties cascade parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", C, Z] + - header: ["1", "2", "n", "N"] + identifier: ServerResponse + length: 8 + payload: MQAAAAQyAAAABG4AAAAETgAAAKBTTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1kcm9wIGNhc2NhZGVzIHRvIGNvbnN0cmFpbnQgdmV0X3NwZWNpYWx0aWVzX3NwZWNpYWx0eV9pZF9ma2V5IG9uIHRhYmxlIHZldF9zcGVjaWFsdGllcwBGZGVwZW5kZW5jeS5jAEwxMjE3AFJyZXBvcnREZXBlbmRlbnRPYmplY3RzAAA= + authentication_md5_password: + salt: [0, 0, 0, 0] + notice_response: + severity: NOTICE + severity_unlocalized: NOTICE + code: "00000" + message: drop cascades to constraint vet_specialties_specialty_id_fkey on table vet_specialties + detail: "" + hint: "" + position: 0 + internal_position: 0 + internal_query: "" + where: "" + schema_name: "" + table_name: "" + column_name: "" + data_type_name: "" + constraint_name: "" + file: dependency.c + line: 1217 + routine: reportDependentObjects + unknown_fields: {} + msg_type: 78 + auth_type: 0 + - header: [C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.720501594+05:30 - restimestampmock: 2024-02-12T16:43:50.720515345+05:30 + reqtimestampmock: 2025-04-11T09:58:17.395555298Z + restimestampmock: 2025-04-11T09:58:17.396510531Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2791,7 +2720,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAHEAY3JlYXRlIHRhYmxlIHZldHMgKGlkIHNlcmlhbCBub3QgbnVsbCwgZmlyc3RfbmFtZSB2YXJjaGFyKDI1NSksIGxhc3RfbmFtZSB2YXJjaGFyKDI1NSksIHByaW1hcnkga2V5IChpZCkpAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAACoAZHJvcCB0YWJsZSBpZiBleGlzdHMgdHlwZXMgY2FzY2FkZQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -2801,7 +2730,7 @@ spec: - {} parse: - name: "" - query: create table vets (id serial not null, first_name varchar(255), last_name varchar(255), primary key (id)) + query: drop table if exists types cascade parameter_oids: [] msg_type: 69 auth_type: 0 @@ -2810,31 +2739,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.723947031+05:30 - restimestampmock: 2024-02-12T16:43:50.723982573+05:30 + reqtimestampmock: 2025-04-11T09:58:17.39941623Z + restimestampmock: 2025-04-11T09:58:17.399454311Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2846,7 +2761,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAH0AY3JlYXRlIHRhYmxlIHZpc2l0cyAoaWQgc2VyaWFsIG5vdCBudWxsLCB2aXNpdF9kYXRlIERBVEUsIGRlc2NyaXB0aW9uIHZhcmNoYXIoMjU1KSwgcGV0X2lkIGludGVnZXIsIHByaW1hcnkga2V5IChpZCkpAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAACoAZHJvcCB0YWJsZSBpZiBleGlzdHMgdXNlcnMgY2FzY2FkZQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -2856,7 +2771,7 @@ spec: - {} parse: - name: "" - query: create table visits (id serial not null, visit_date DATE, description varchar(255), pet_id integer, primary key (id)) + query: drop table if exists users cascade parameter_oids: [] msg_type: 69 auth_type: 0 @@ -2865,31 +2780,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 82 - - 69 - - 65 - - 84 - - 69 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.728355985+05:30 - restimestampmock: 2024-02-12T16:43:50.72838311+05:30 + reqtimestampmock: 2025-04-11T09:58:17.40076369Z + restimestampmock: 2025-04-11T09:58:17.400789355Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2901,7 +2802,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAFkAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHJvbGVzIGRyb3AgY29uc3RyYWludCBpZiBleGlzdHMgVUtnYnVqbzlkMDZ4YmF4NTBodDFsYWtmNnYwAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAADQAZHJvcCB0YWJsZSBpZiBleGlzdHMgdmV0X3NwZWNpYWx0aWVzIGNhc2NhZGUAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - {} describe: @@ -2911,71 +2812,26 @@ spec: - {} parse: - name: "" - query: alter table if exists roles drop constraint if exists UKgbujo9d06xbax50ht1lakf6v0 + query: drop table if exists vet_specialties cascade parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", "N"] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABG4AAAAETgAAAJ1TTk9USUNFAFZOT1RJQ0UAQzAwMDAwAE1jb25zdHJhaW50ICJ1a2didWpvOWQwNnhiYXg1MGh0MWxha2Y2djAiIG9mIHJlbGF0aW9uICJyb2xlcyIgZG9lcyBub3QgZXhpc3QsIHNraXBwaW5nAEZ0YWJsZWNtZHMuYwBMMTE5ODMAUkFURXhlY0Ryb3BDb25zdHJhaW50AAA= authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - notice_response: - severity: NOTICE - severity_unlocalized: NOTICE - code: "00000" - message: constraint "ukgbujo9d06xbax50ht1lakf6v0" of relation "roles" does not exist, skipping - detail: "" - hint: "" - position: 0 - internal_position: 0 - internal_query: "" - where: "" - schema_name: "" - table_name: "" - column_name: "" - data_type_name: "" - constraint_name: "" - file: tablecmds.c - line: 11983 - routine: ATExecDropConstraint - unknown_fields: {} - msg_type: 78 - auth_type: 0 - - header: [C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.729770885+05:30 - restimestampmock: 2024-02-12T16:43:50.730025556+05:30 + reqtimestampmock: 2025-04-11T09:58:17.402073569Z + restimestampmock: 2025-04-11T09:58:17.402098067Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -2987,7 +2843,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAGYAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHJvbGVzIGFkZCBjb25zdHJhaW50IFVLZ2J1am85ZDA2eGJheDUwaHQxbGFrZjZ2MCB1bmlxdWUgKHVzZXJuYW1lLCByb2xlKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAACkAZHJvcCB0YWJsZSBpZiBleGlzdHMgdmV0cyBjYXNjYWRlAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - {} describe: @@ -2997,7 +2853,7 @@ spec: - {} parse: - name: "" - query: alter table if exists roles add constraint UKgbujo9d06xbax50ht1lakf6v0 unique (username, role) + query: drop table if exists vets cascade parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3006,30 +2862,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.733530161+05:30 - restimestampmock: 2024-02-12T16:43:50.733553744+05:30 + reqtimestampmock: 2025-04-11T09:58:17.403317035Z + restimestampmock: 2025-04-11T09:58:17.403342284Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3041,7 +2884,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAHYAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHBldHMgYWRkIGNvbnN0cmFpbnQgRks2dGVnNGtjamNuamhkdWd1ZnQ1NndjZm9hIGZvcmVpZ24ga2V5IChvd25lcl9pZCkgcmVmZXJlbmNlcyBvd25lcnMAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + payload: UAAAACsAZHJvcCB0YWJsZSBpZiBleGlzdHMgdmlzaXRzIGNhc2NhZGUAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - {} describe: @@ -3051,7 +2894,7 @@ spec: - {} parse: - name: "" - query: alter table if exists pets add constraint FK6teg4kcjcnjhduguft56wcfoa foreign key (owner_id) references owners + query: drop table if exists visits cascade parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3060,30 +2903,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: DROP TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.735349151+05:30 - restimestampmock: 2024-02-12T16:43:50.735368068+05:30 + reqtimestampmock: 2025-04-11T09:58:17.404263644Z + restimestampmock: 2025-04-11T09:58:17.404283018Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3095,7 +2925,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAHQAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHBldHMgYWRkIGNvbnN0cmFpbnQgRkt0bW1oMXRxOHBhaDV2eGY4a3VxcXBsbzRwIGZvcmVpZ24ga2V5ICh0eXBlX2lkKSByZWZlcmVuY2VzIHR5cGVzAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAALQAY3JlYXRlIHRhYmxlIG93bmVycyAoaWQgc2VyaWFsIG5vdCBudWxsLCBmaXJzdF9uYW1lIHZhcmNoYXIoMjU1KSwgbGFzdF9uYW1lIHZhcmNoYXIoMjU1KSwgYWRkcmVzcyB2YXJjaGFyKDI1NSksIGNpdHkgdmFyY2hhcigyNTUpLCB0ZWxlcGhvbmUgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -3105,7 +2935,7 @@ spec: - {} parse: - name: "" - query: alter table if exists pets add constraint FKtmmh1tq8pah5vxf8kuqqplo4p foreign key (type_id) references types + query: create table owners (id serial not null, first_name varchar(255), last_name varchar(255), address varchar(255), city varchar(255), telephone varchar(255), primary key (id)) parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3114,30 +2944,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.736848887+05:30 - restimestampmock: 2024-02-12T16:43:50.736867345+05:30 + reqtimestampmock: 2025-04-11T09:58:17.411262386Z + restimestampmock: 2025-04-11T09:58:17.411300967Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3149,7 +2966,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAHYAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHJvbGVzIGFkZCBjb25zdHJhaW50IEZLcW15a2cybWFid2trMXZocGM0NTI2ZzQ0ayBmb3JlaWduIGtleSAodXNlcm5hbWUpIHJlZmVyZW5jZXMgdXNlcnMAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + payload: UAAAAIcAY3JlYXRlIHRhYmxlIHBldHMgKGlkIHNlcmlhbCBub3QgbnVsbCwgbmFtZSB2YXJjaGFyKDI1NSksIGJpcnRoX2RhdGUgREFURSwgb3duZXJfaWQgaW50ZWdlciwgdHlwZV9pZCBpbnRlZ2VyLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -3159,7 +2976,7 @@ spec: - {} parse: - name: "" - query: alter table if exists roles add constraint FKqmykg2mabwkk1vhpc4526g44k foreign key (username) references users + query: create table pets (id serial not null, name varchar(255), birth_date DATE, owner_id integer, type_id integer, primary key (id)) parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3168,30 +2985,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.737992699+05:30 - restimestampmock: 2024-02-12T16:43:50.738008741+05:30 + reqtimestampmock: 2025-04-11T09:58:17.415590916Z + restimestampmock: 2025-04-11T09:58:17.415623039Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3203,7 +3007,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAIoAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZldF9zcGVjaWFsdGllcyBhZGQgY29uc3RyYWludCBGSzM1dWlib3lycGZuMWJuZHJyNWpvcmNqMG0gZm9yZWlnbiBrZXkgKHNwZWNpYWx0eV9pZCkgcmVmZXJlbmNlcyBzcGVjaWFsdGllcwAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + payload: UAAAAGsAY3JlYXRlIHRhYmxlIHJvbGVzIChpZCBzZXJpYWwgbm90IG51bGwsIHJvbGUgdmFyY2hhcigyNTUpLCB1c2VybmFtZSB2YXJjaGFyKDI1NSksIHByaW1hcnkga2V5IChpZCkpAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - {} describe: @@ -3213,7 +3017,7 @@ spec: - {} parse: - name: "" - query: alter table if exists vet_specialties add constraint FK35uiboyrpfn1bndrr5jorcj0m foreign key (specialty_id) references specialties + query: create table roles (id serial not null, role varchar(255), username varchar(255), primary key (id)) parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3222,30 +3026,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.739211346+05:30 - restimestampmock: 2024-02-12T16:43:50.739232888+05:30 + reqtimestampmock: 2025-04-11T09:58:17.418284502Z + restimestampmock: 2025-04-11T09:58:17.418311001Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3257,7 +3048,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAH0AYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZldF9zcGVjaWFsdGllcyBhZGQgY29uc3RyYWludCBGS2J5MWMwZmJhYTBieWFpZmk2M3Z0MThzeDkgZm9yZWlnbiBrZXkgKHZldF9pZCkgcmVmZXJlbmNlcyB2ZXRzAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAFoAY3JlYXRlIHRhYmxlIHNwZWNpYWx0aWVzIChpZCBzZXJpYWwgbm90IG51bGwsIG5hbWUgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -3267,7 +3058,7 @@ spec: - {} parse: - name: "" - query: alter table if exists vet_specialties add constraint FKby1c0fbaa0byaifi63vt18sx9 foreign key (vet_id) references vets + query: create table specialties (id serial not null, name varchar(255), primary key (id)) parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3276,30 +3067,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.740103986+05:30 - restimestampmock: 2024-02-12T16:43:50.740120487+05:30 + reqtimestampmock: 2025-04-11T09:58:17.420136307Z + restimestampmock: 2025-04-11T09:58:17.420164013Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3311,7 +3089,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAHQAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZpc2l0cyBhZGQgY29uc3RyYWludCBGSzZqY2lmaGxxcWxzZnNldTY3dXRsb3VhdXkgZm9yZWlnbiBrZXkgKHBldF9pZCkgcmVmZXJlbmNlcyBwZXRzAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAFQAY3JlYXRlIHRhYmxlIHR5cGVzIChpZCBzZXJpYWwgbm90IG51bGwsIG5hbWUgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAoaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: @@ -3321,7 +3099,7 @@ spec: - {} parse: - name: "" - query: alter table if exists visits add constraint FK6jcifhlqqlsfseu67utlouauy foreign key (pet_id) references pets + query: create table types (id serial not null, name varchar(255), primary key (id)) parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3330,30 +3108,17 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 65 - - 76 - - 84 - - 69 - - 82 - - 32 - - 84 - - 65 - - 66 - - 76 - - 69 + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.741690306+05:30 - restimestampmock: 2024-02-12T16:43:50.741957728+05:30 + reqtimestampmock: 2025-04-11T09:58:17.421758Z + restimestampmock: 2025-04-11T09:58:17.421787498Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3365,36 +3130,36 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAAgAAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAABUwAAAAQ= + payload: UAAAAHsAY3JlYXRlIHRhYmxlIHVzZXJzICh1c2VybmFtZSB2YXJjaGFyKDI1NSkgbm90IG51bGwsIGVuYWJsZWQgYm9vbGVhbiwgcGFzc3dvcmQgdmFyY2hhcigyNTUpLCBwcmltYXJ5IGtleSAodXNlcm5hbWUpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} describe: object_type: 80 name: "" execute: - - max_rows: 1 + - {} parse: - name: "" - query: "" + query: create table users (username varchar(255) not null, enabled boolean, password varchar(255), primary key (username)) parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", I, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:21.187903172+05:30 - restimestampmock: 2024-02-12T16:54:21.187974496+05:30 + reqtimestampmock: 2025-04-11T09:58:17.426778737Z + restimestampmock: 2025-04-11T09:58:17.426817776Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3403,61 +3168,39 @@ spec: metadata: type: config postgresrequests: - - header: [P, B, E, P, B, D, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAAMABzZWxlY3QgcDFfMC5pZCxwMV8wLm5hbWUgZnJvbSB0eXBlcyBwMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAIEAY3JlYXRlIHRhYmxlIHZldF9zcGVjaWFsdGllcyAodmV0X2lkIGludGVnZXIgbm90IG51bGwsIHNwZWNpYWx0eV9pZCBpbnRlZ2VyIG5vdCBudWxsLCBwcmltYXJ5IGtleSAodmV0X2lkLCBzcGVjaWFsdHlfaWQpKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} - - {} describe: object_type: 80 name: "" execute: - {} - - {} parse: - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select p1_0.id,p1_0.name from types p1_0 + query: create table vet_specialties (vet_id integer not null, specialty_id integer not null, primary key (vet_id, specialty_id)) parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, "1", "2", T, C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: CREATE TABLE ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:21.235694633+05:30 - restimestampmock: 2024-02-12T16:54:21.235748042+05:30 + reqtimestampmock: 2025-04-11T09:58:17.429666353Z + restimestampmock: 2025-04-11T09:58:17.429700768Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3466,44 +3209,39 @@ spec: metadata: type: config postgresrequests: - - header: [P, B, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAABFTXzEAQ09NTUlUAAAAQgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + payload: UAAAAHEAY3JlYXRlIHRhYmxlIHZldHMgKGlkIHNlcmlhbCBub3QgbnVsbCwgZmlyc3RfbmFtZSB2YXJjaGFyKDI1NSksIGxhc3RfbmFtZSB2YXJjaGFyKDI1NSksIHByaW1hcnkga2V5IChpZCkpAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - - prepared_statement: S_1 + - {} + describe: + object_type: 80 + name: "" execute: - - max_rows: 1 + - {} parse: - - name: S_1 - query: COMMIT + - name: "" + query: create table vets (id serial not null, first_name varchar(255), last_name varchar(255), primary key (id)) parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:21.240783261+05:30 - restimestampmock: 2024-02-12T16:54:21.240806049+05:30 + reqtimestampmock: 2025-04-11T09:58:17.431988129Z + restimestampmock: 2025-04-11T09:58:17.432015378Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3515,36 +3253,36 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAAgAAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAABUwAAAAQ= + payload: UAAAAH0AY3JlYXRlIHRhYmxlIHZpc2l0cyAoaWQgc2VyaWFsIG5vdCBudWxsLCB2aXNpdF9kYXRlIERBVEUsIGRlc2NyaXB0aW9uIHZhcmNoYXIoMjU1KSwgcGV0X2lkIGludGVnZXIsIHByaW1hcnkga2V5IChpZCkpAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - {} describe: object_type: 80 name: "" execute: - - max_rows: 1 + - {} parse: - name: "" - query: "" + query: create table visits (id serial not null, visit_date DATE, description varchar(255), pet_id integer, primary key (id)) parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", I, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: CREATE TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:26.926339897+05:30 - restimestampmock: 2024-02-12T16:54:26.926373809+05:30 + reqtimestampmock: 2025-04-11T09:58:17.433986008Z + restimestampmock: 2025-04-11T09:58:17.434040671Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3553,67 +3291,39 @@ spec: metadata: type: config postgresrequests: - - header: [P, B, E, P, B, D, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAAA8AGluc2VydCBpbnRvIHR5cGVzIChuYW1lKSB2YWx1ZXMgKCQxKQpSRVRVUk5JTkcgKgAAAQAABBNCAAAAFQAAAAEAAAABAAAAA0NhdAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + payload: UAAAAGYAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHJvbGVzIGFkZCBjb25zdHJhaW50IFVLZ2J1am85ZDA2eGJheDUwaHQxbGFrZjZ2MCB1bmlxdWUgKHVzZXJuYW1lLCByb2xlKQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} - - parameter_format_codes: [0] - parameters: [[67, 97, 116]] describe: object_type: 80 name: "" execute: - {} - - {} parse: - name: "" - query: BEGIN + query: alter table if exists roles add constraint UKgbujo9d06xbax50ht1lakf6v0 unique (username, role) parameter_oids: [] - - name: "" - query: insert into types (name) values ($1) RETURNING * - parameter_oids: - - 1043 msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAAyAAJpZAAAAEAmAAEAAAAXAAT/////AABuYW1lAAAAQCYAAgAABBP//wAAAQMAAEQAAAASAAIAAAABMQAAAANDYXRDAAAAD0lOU0VSVCAwIDEAWgAAAAVU authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 73 - - 78 - - 83 - - 69 - - 82 - - 84 - - 32 - - 48 - - 32 - - 49 - data_row: [{row_values: ["1", Cat]}, {row_values: ["1", Cat]}, {row_values: ["1", Cat]}] + - command_tag_type: ALTER TABLE ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:26.946484187+05:30 - restimestampmock: 2024-02-12T16:54:26.946517349+05:30 + reqtimestampmock: 2025-04-11T09:58:17.435891976Z + restimestampmock: 2025-04-11T09:58:17.435920141Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3622,40 +3332,39 @@ spec: metadata: type: config postgresrequests: - - header: [B, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + payload: UAAAAHYAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHBldHMgYWRkIGNvbnN0cmFpbnQgRks2dGVnNGtjamNuamhkdWd1ZnQ1NndjZm9hIGZvcmVpZ24ga2V5IChvd25lcl9pZCkgcmVmZXJlbmNlcyBvd25lcnMAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - - prepared_statement: S_1 + - {} + describe: + object_type: 80 + name: "" execute: - - max_rows: 1 + - {} + parse: + - name: "" + query: alter table if exists pets add constraint FK6teg4kcjcnjhduguft56wcfoa foreign key (owner_id) references owners + parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["2", C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:26.955795229+05:30 - restimestampmock: 2024-02-12T16:54:26.955878342+05:30 + reqtimestampmock: 2025-04-11T09:58:17.4372756Z + restimestampmock: 2025-04-11T09:58:17.437305432Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3667,36 +3376,36 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAAtTXzIAAAAAQgAAAA8AU18yAAAAAAAAAEQAAAAGUABFAAAACQAAAAABUwAAAAQ= + payload: UAAAAHQAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHBldHMgYWRkIGNvbnN0cmFpbnQgRkt0bW1oMXRxOHBhaDV2eGY4a3VxcXBsbzRwIGZvcmVpZ24ga2V5ICh0eXBlX2lkKSByZWZlcmVuY2VzIHR5cGVzAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - - prepared_statement: S_2 + - {} describe: object_type: 80 name: "" execute: - - max_rows: 1 + - {} parse: - - name: S_2 - query: "" + - name: "" + query: alter table if exists pets add constraint FKtmmh1tq8pah5vxf8kuqqplo4p foreign key (type_id) references types parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", "n", I, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:33.699567357+05:30 - restimestampmock: 2024-02-12T16:54:33.69964093+05:30 + reqtimestampmock: 2025-04-11T09:58:17.438524025Z + restimestampmock: 2025-04-11T09:58:17.438552398Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3705,67 +3414,39 @@ spec: metadata: type: config postgresrequests: - - header: [P, B, E, P, B, D, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAAA8AGluc2VydCBpbnRvIHR5cGVzIChuYW1lKSB2YWx1ZXMgKCQxKQpSRVRVUk5JTkcgKgAAAQAABBNCAAAAFQAAAAEAAAABAAAAA0RvZwAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + payload: UAAAAHYAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHJvbGVzIGFkZCBjb25zdHJhaW50IEZLcW15a2cybWFid2trMXZocGM0NTI2ZzQ0ayBmb3JlaWduIGtleSAodXNlcm5hbWUpIHJlZmVyZW5jZXMgdXNlcnMAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - {} - - parameter_format_codes: [0] - parameters: [[68, 111, 103]] describe: object_type: 80 name: "" execute: - {} - - {} parse: - name: "" - query: BEGIN + query: alter table if exists roles add constraint FKqmykg2mabwkk1vhpc4526g44k foreign key (username) references users parameter_oids: [] - - name: "" - query: insert into types (name) values ($1) RETURNING * - parameter_oids: - - 1043 msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAAyAAJpZAAAAEAmAAEAAAAXAAT/////AABuYW1lAAAAQCYAAgAABBP//wAAAQMAAEQAAAASAAIAAAABMgAAAANEb2dDAAAAD0lOU0VSVCAwIDEAWgAAAAVU authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 73 - - 78 - - 83 - - 69 - - 82 - - 84 - - 32 - - 48 - - 32 - - 49 - data_row: [{row_values: ["2", Dog]}, {row_values: ["2", Dog]}, {row_values: ["2", Dog]}] + - command_tag_type: ALTER TABLE ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:33.704459594+05:30 - restimestampmock: 2024-02-12T16:54:33.704560205+05:30 + reqtimestampmock: 2025-04-11T09:58:17.439835112Z + restimestampmock: 2025-04-11T09:58:17.439857235Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3774,40 +3455,39 @@ spec: metadata: type: config postgresrequests: - - header: [B, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + payload: UAAAAIoAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZldF9zcGVjaWFsdGllcyBhZGQgY29uc3RyYWludCBGSzM1dWlib3lycGZuMWJuZHJyNWpvcmNqMG0gZm9yZWlnbiBrZXkgKHNwZWNpYWx0eV9pZCkgcmVmZXJlbmNlcyBzcGVjaWFsdGllcwAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - - prepared_statement: S_1 + - {} + describe: + object_type: 80 + name: "" execute: - - max_rows: 1 + - {} + parse: + - name: "" + query: alter table if exists vet_specialties add constraint FK35uiboyrpfn1bndrr5jorcj0m foreign key (specialty_id) references specialties + parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["2", C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:33.712093534+05:30 - restimestampmock: 2024-02-12T16:54:33.712178398+05:30 + reqtimestampmock: 2025-04-11T09:58:17.441008915Z + restimestampmock: 2025-04-11T09:58:17.441033956Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3816,32 +3496,39 @@ spec: metadata: type: config postgresrequests: - - header: [B, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + payload: UAAAAH0AYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZldF9zcGVjaWFsdGllcyBhZGQgY29uc3RyYWludCBGS2J5MWMwZmJhYTBieWFpZmk2M3Z0MThzeDkgZm9yZWlnbiBrZXkgKHZldF9pZCkgcmVmZXJlbmNlcyB2ZXRzAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - - prepared_statement: S_2 + - {} + describe: + object_type: 80 + name: "" execute: - - max_rows: 1 + - {} + parse: + - name: "" + query: alter table if exists vet_specialties add constraint FKby1c0fbaa0byaifi63vt18sx9 foreign key (vet_id) references vets + parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["2", I, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: ALTER TABLE ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:48.1556217+05:30 - restimestampmock: 2024-02-12T16:54:48.155668266+05:30 + reqtimestampmock: 2025-04-11T09:58:17.441923902Z + restimestampmock: 2025-04-11T09:58:17.441951067Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres @@ -3850,75 +3537,1494 @@ spec: metadata: type: config postgresrequests: - - header: [P, B, E, P, B, D, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAACIAGluc2VydCBpbnRvIG93bmVycyAoYWRkcmVzcywgY2l0eSwgZmlyc3RfbmFtZSwgbGFzdF9uYW1lLCB0ZWxlcGhvbmUpIHZhbHVlcyAoJDEsICQyLCAkMywgJDQsICQ1KQpSRVRVUk5JTkcgKgAABQAABBMAAAQTAAAEEwAABBMAAAQTQgAAAGYAAAAFAAAAAAAAAAAAAAAFAAAAHjE0dGggTWFpbiBTdHJlZXQsIFJveWFsIFN0cmVldAAAAA9Mb25kb24sIEVuZ2xhbmQAAAAESm9obgAAAANEb2UAAAAIMTIzNDU2NzgAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAHQAYWx0ZXIgdGFibGUgaWYgZXhpc3RzIHZpc2l0cyBhZGQgY29uc3RyYWludCBGSzZqY2lmaGxxcWxzZnNldTY3dXRsb3VhdXkgZm9yZWlnbiBrZXkgKHBldF9pZCkgcmVmZXJlbmNlcyBwZXRzAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - {} - - parameter_format_codes: [0, 0, 0, 0, 0] - parameters: [[49, 52, 116, 104, 32, 77, 97, 105, 110, 32, 83, 116, 114, 101, 101, 116, 44, 32, 82, 111, 121, 97, 108, 32, 83, 116, 114, 101, 101, 116], [76, 111, 110, 100, 111, 110, 44, 32, 69, 110, 103, 108, 97, 110, 100], [74, 111, 104, 110], [68, 111, 101], [49, 50, 51, 52, 53, 54, 55, 56]] describe: object_type: 80 name: "" execute: - {} - - {} parse: - name: "" - query: BEGIN + query: alter table if exists visits add constraint FK6jcifhlqqlsfseu67utlouauy foreign key (pet_id) references pets parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", "n", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: ALTER TABLE + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:58:17.442721437Z + restimestampmock: 2025-04-11T09:58:17.442737894Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-88 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAAgAAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAABUwAAAAQ= + bind: + - {} + describe: + object_type: 80 + name: "" + execute: + - max_rows: 1 + parse: - name: "" - query: insert into owners (address, city, first_name, last_name, telephone) values ($1, $2, $3, $4, $5) RETURNING * - parameter_oids: - - 1043 - - 1043 - - 1043 - - 1043 - - 1043 + query: "" + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", "n", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:07.555522801Z + restimestampmock: 2025-04-11T09:59:07.555590672Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-89 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAACIAGluc2VydCBpbnRvIG93bmVycyAoYWRkcmVzcywgY2l0eSwgZmlyc3RfbmFtZSwgbGFzdF9uYW1lLCB0ZWxlcGhvbmUpIHZhbHVlcyAoJDEsICQyLCAkMywgJDQsICQ1KQpSRVRVUk5JTkcgKgAABQAABBMAAAQTAAAEEwAABBMAAAQTQgAAAFEAAAAFAAAAAAAAAAAAAAAFAAAACGJhbmdsb3JlAAAACGJhbmdsb3JlAAAACWZpcnN0bmFtZQAAAAhsYXN0bmFtZQAAAAYxMjM0NTYAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - {} + - parameter_format_codes: [0, 0, 0, 0, 0] + parameters: [[98, 97, 110, 103, 108, 111, 114, 101], [98, 97, 110, 103, 108, 111, 114, 101], [102, 105, 114, 115, 116, 110, 97, 109, 101], [108, 97, 115, 116, 110, 97, 109, 101], [49, 50, 51, 52, 53, 54]] + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN + parameter_oids: [] + - name: "" + query: insert into owners (address, city, first_name, last_name, telephone) values ($1, $2, $3, $4, $5) RETURNING * + parameter_oids: + - 1043 + - 1043 + - 1043 + - 1043 + - 1043 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: INSERT 0 1 + data_row: [{row_values: ["1", firstname, lastname, banglore, banglore, "123456"]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16490, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: first_name, table_oid: 16490, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16490, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: address, table_oid: 16490, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: city, table_oid: 16490, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: telephone, table_oid: 16490, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:07.588443051Z + restimestampmock: 2025-04-11T09:59:07.58869916Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-90 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E] + identifier: ClientRequest + length: 8 + payload: UAAAABFTXzEAQ09NTUlUAAAAQgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + parse: + - name: S_1 + query: COMMIT + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:07.602412827Z + restimestampmock: 2025-04-11T09:59:07.602437534Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-91 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAAbABzZWxlY3QgbzFfMC5pZCxvMV8wLmFkZHJlc3MsbzFfMC5jaXR5LG8xXzAuZmlyc3RfbmFtZSxvMV8wLmxhc3RfbmFtZSxvMV8wLnRlbGVwaG9uZSBmcm9tIG93bmVycyBvMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - {} + - {} + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,o1_0.telephone from owners o1_0 + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", banglore, banglore, firstname, lastname, "123456"]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16490, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: address, table_oid: 16490, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: city, table_oid: 16490, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: first_name, table_oid: 16490, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16490, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: telephone, table_oid: 16490, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:07.672445197Z + restimestampmock: 2025-04-11T09:59:07.672505776Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-92 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAQkAc2VsZWN0IHAxXzAub3duZXJfaWQscDFfMC5pZCxwMV8wLmJpcnRoX2RhdGUscDFfMC5uYW1lLHQxXzAuaWQsdDFfMC5uYW1lLHYxXzAucGV0X2lkLHYxXzAuaWQsdjFfMC52aXNpdF9kYXRlLHYxXzAuZGVzY3JpcHRpb24gZnJvbSBwZXRzIHAxXzAgbGVmdCBqb2luIHR5cGVzIHQxXzAgb24gdDFfMC5pZD1wMV8wLnR5cGVfaWQgbGVmdCBqb2luIHZpc2l0cyB2MV8wIG9uIHAxXzAuaWQ9djFfMC5wZXRfaWQgd2hlcmUgcDFfMC5vd25lcl9pZD0kMQAAAQAAABdCAAAAFgAAAAEAAQABAAAABAAAAAEAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - parameter_format_codes: [1] + parameters: [[0, 0, 0, 1]] + describe: + object_type: 80 + name: "" + execute: + - {} + parse: + - name: "" + query: select p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,t1_0.id,t1_0.name,v1_0.pet_id,v1_0.id,v1_0.visit_date,v1_0.description from pets p1_0 left join types t1_0 on t1_0.id=p1_0.type_id left join visits v1_0 on p1_0.id=v1_0.pet_id where p1_0.owner_id=$1 + parameter_oids: + - 23 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", T, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: SELECT 0 + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: owner_id, table_oid: 16499, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16499, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: birth_date, table_oid: 16499, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16499, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: id, table_oid: 16522, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16522, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: pet_id, table_oid: 16550, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16550, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: visit_date, table_oid: 16550, table_attribute_number: 2, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: description, table_oid: 16550, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:07.68465358Z + restimestampmock: 2025-04-11T09:59:07.684705327Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-93 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:07.685581023Z + restimestampmock: 2025-04-11T09:59:07.685615021Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-94 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAAgAAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAABUwAAAAQ= + bind: + - {} + describe: + object_type: 80 + name: "" + execute: + - max_rows: 1 + parse: + - name: "" + query: "" + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", "n", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:11.8111342Z + restimestampmock: 2025-04-11T09:59:11.811267775Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-95 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAABCgBzZWxlY3QgZGlzdGluY3QgbzFfMC5pZCxvMV8wLmFkZHJlc3MsbzFfMC5jaXR5LG8xXzAuZmlyc3RfbmFtZSxvMV8wLmxhc3RfbmFtZSxwMV8wLm93bmVyX2lkLHAxXzAuaWQscDFfMC5iaXJ0aF9kYXRlLHAxXzAubmFtZSxwMV8wLnR5cGVfaWQsbzFfMC50ZWxlcGhvbmUgZnJvbSBvd25lcnMgbzFfMCBsZWZ0IGpvaW4gcGV0cyBwMV8wIG9uIG8xXzAuaWQ9cDFfMC5vd25lcl9pZCB3aGVyZSBvMV8wLmxhc3RfbmFtZSBsaWtlICQxIGVzY2FwZSAnJwAAAQAABBNCAAAAGwAAAAEAAAABAAAACWxhc3RuYW1lJQAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + bind: + - {} + - parameter_format_codes: [0] + parameters: [[108, 97, 115, 116, 110, 97, 109, 101, 37]] + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select distinct o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,p1_0.type_id,o1_0.telephone from owners o1_0 left join pets p1_0 on o1_0.id=p1_0.owner_id where o1_0.last_name like $1 escape '' + parameter_oids: + - 1043 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", banglore, banglore, firstname, lastname, "", "", "", "", "", "123456"]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16490, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: address, table_oid: 16490, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: city, table_oid: 16490, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: first_name, table_oid: 16490, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16490, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: owner_id, table_oid: 16499, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16499, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: birth_date, table_oid: 16499, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16499, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: type_id, table_oid: 16499, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: telephone, table_oid: 16490, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:11.834357955Z + restimestampmock: 2025-04-11T09:59:11.83449228Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-96 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:11.838742022Z + restimestampmock: 2025-04-11T09:59:11.838767354Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-97 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAAtTXzIAAAAAQgAAAA8AU18yAAAAAAAAAEQAAAAGUABFAAAACQAAAAABUwAAAAQ= + bind: + - prepared_statement: S_2 + describe: + object_type: 80 + name: "" + execute: + - max_rows: 1 + parse: + - name: S_2 + query: "" + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", "n", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:14.068580884Z + restimestampmock: 2025-04-11T09:59:14.068627964Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-98 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAANgBzZWxlY3QgczFfMC5pZCxzMV8wLm5hbWUgZnJvbSBzcGVjaWFsdGllcyBzMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - {} + - {} + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select s1_0.id,s1_0.name from specialties s1_0 + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: SELECT 0 + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16515, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16515, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:14.071672654Z + restimestampmock: 2025-04-11T09:59:14.071771731Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-99 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:14.073083818Z + restimestampmock: 2025-04-11T09:59:14.07311665Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-100 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:18.636174523Z + restimestampmock: 2025-04-11T09:59:18.636219561Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-101 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAABUAGluc2VydCBpbnRvIHZldHMgKGZpcnN0X25hbWUsIGxhc3RfbmFtZSkgdmFsdWVzICgkMSwgJDIpClJFVFVSTklORyAqAAACAAAEEwAABBNCAAAAKQAAAAIAAAAAAAIAAAAJZmlyc3RuYW1lAAAACGxhc3RuYW1lAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + bind: + - {} + - parameter_format_codes: [0, 0] + parameters: [[102, 105, 114, 115, 116, 110, 97, 109, 101], [108, 97, 115, 116, 110, 97, 109, 101]] + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN + parameter_oids: [] + - name: "" + query: insert into vets (first_name, last_name) values ($1, $2) RETURNING * + parameter_oids: + - 1043 + - 1043 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: INSERT 0 1 + data_row: [{row_values: ["1", firstname, lastname]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16541, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: first_name, table_oid: 16541, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16541, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:18.638368098Z + restimestampmock: 2025-04-11T09:59:18.638420969Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-102 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:18.642253153Z + restimestampmock: 2025-04-11T09:59:18.64228086Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-103 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAARABzZWxlY3QgdjFfMC5pZCx2MV8wLmZpcnN0X25hbWUsdjFfMC5sYXN0X25hbWUgZnJvbSB2ZXRzIHYxXzAAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + bind: + - {} + - {} + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select v1_0.id,v1_0.first_name,v1_0.last_name from vets v1_0 + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", firstname, lastname]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16541, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: first_name, table_oid: 16541, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16541, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:18.655502598Z + restimestampmock: 2025-04-11T09:59:18.65555197Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-104 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAJIAc2VsZWN0IHMxXzAudmV0X2lkLHMxXzEuaWQsczFfMS5uYW1lIGZyb20gdmV0X3NwZWNpYWx0aWVzIHMxXzAgam9pbiBzcGVjaWFsdGllcyBzMV8xIG9uIHMxXzEuaWQ9czFfMC5zcGVjaWFsdHlfaWQgd2hlcmUgczFfMC52ZXRfaWQ9JDEAAAEAAAAXQgAAABYAAAABAAEAAQAAAAQAAAABAABEAAAABlAARQAAAAkAAAAAAFMAAAAE + bind: + - parameter_format_codes: [1] + parameters: [[0, 0, 0, 1]] + describe: + object_type: 80 + name: "" + execute: + - {} + parse: + - name: "" + query: select s1_0.vet_id,s1_1.id,s1_1.name from vet_specialties s1_0 join specialties s1_1 on s1_1.id=s1_0.specialty_id where s1_0.vet_id=$1 + parameter_oids: + - 23 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", T, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: SELECT 0 + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: vet_id, table_oid: 16535, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16515, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16515, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:18.657626802Z + restimestampmock: 2025-04-11T09:59:18.657657258Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-105 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:18.658424712Z + restimestampmock: 2025-04-11T09:59:18.658441377Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-106 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:20.017297574Z + restimestampmock: 2025-04-11T09:59:20.017351654Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-107 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAAMABzZWxlY3QgcDFfMC5pZCxwMV8wLm5hbWUgZnJvbSB0eXBlcyBwMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - {} + - {} + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select p1_0.id,p1_0.name from types p1_0 + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: SELECT 0 + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16522, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16522, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:20.020119277Z + restimestampmock: 2025-04-11T09:59:20.020196564Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-108 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:20.021482069Z + restimestampmock: 2025-04-11T09:59:20.021532025Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-109 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:30.966768508Z + restimestampmock: 2025-04-11T09:59:30.966836588Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-110 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAAA8AGluc2VydCBpbnRvIHR5cGVzIChuYW1lKSB2YWx1ZXMgKCQxKQpSRVRVUk5JTkcgKgAAAQAABBNCAAAAGAAAAAEAAAABAAAABm5ld29uZQAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + bind: + - {} + - parameter_format_codes: [0] + parameters: [[110, 101, 119, 111, 110, 101]] + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN + parameter_oids: [] + - name: "" + query: insert into types (name) values ($1) RETURNING * + parameter_oids: + - 1043 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: INSERT 0 1 + data_row: [{row_values: ["1", newone]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16522, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16522, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:30.970453909Z + restimestampmock: 2025-04-11T09:59:30.970568111Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-111 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:30.972821515Z + restimestampmock: 2025-04-11T09:59:30.972887886Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-112 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:33.187759716Z + restimestampmock: 2025-04-11T09:59:33.187832129Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-113 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAANgBzZWxlY3QgczFfMC5pZCxzMV8wLm5hbWUgZnJvbSBzcGVjaWFsdGllcyBzMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - {} + - {} + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select s1_0.id,s1_0.name from specialties s1_0 + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: SELECT 0 + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16515, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16515, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:33.190963813Z + restimestampmock: 2025-04-11T09:59:33.191030559Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-114 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:33.192534759Z + restimestampmock: 2025-04-11T09:59:33.192665043Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-115 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:36.61780347Z + restimestampmock: 2025-04-11T09:59:36.617943591Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-116 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAABCAGluc2VydCBpbnRvIHNwZWNpYWx0aWVzIChuYW1lKSB2YWx1ZXMgKCQxKQpSRVRVUk5JTkcgKgAAAQAABBNCAAAAGAAAAAEAAAABAAAABm5ld29uZQAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + bind: + - {} + - parameter_format_codes: [0] + parameters: [[110, 101, 119, 111, 110, 101]] + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN + parameter_oids: [] + - name: "" + query: insert into specialties (name) values ($1) RETURNING * + parameter_oids: + - 1043 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: INSERT 0 1 + data_row: [{row_values: ["1", newone]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16515, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16515, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:36.62074267Z + restimestampmock: 2025-04-11T09:59:36.620843958Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-117 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:36.62301164Z + restimestampmock: 2025-04-11T09:59:36.623082721Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-118 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:43.371987337Z + restimestampmock: 2025-04-11T09:59:43.37206271Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-119 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAAbABzZWxlY3QgbzFfMC5pZCxvMV8wLmFkZHJlc3MsbzFfMC5jaXR5LG8xXzAuZmlyc3RfbmFtZSxvMV8wLmxhc3RfbmFtZSxvMV8wLnRlbGVwaG9uZSBmcm9tIG93bmVycyBvMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - {} + - {} + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,o1_0.telephone from owners o1_0 + parameter_oids: [] + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", C, "1", "2", T, D, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", banglore, banglore, firstname, lastname, "123456"]}] + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: id, table_oid: 16490, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: address, table_oid: 16490, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: city, table_oid: 16490, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: first_name, table_oid: 16490, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16490, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: telephone, table_oid: 16490, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:43.378883241Z + restimestampmock: 2025-04-11T09:59:43.378980822Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-120 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAAQkAc2VsZWN0IHAxXzAub3duZXJfaWQscDFfMC5pZCxwMV8wLmJpcnRoX2RhdGUscDFfMC5uYW1lLHQxXzAuaWQsdDFfMC5uYW1lLHYxXzAucGV0X2lkLHYxXzAuaWQsdjFfMC52aXNpdF9kYXRlLHYxXzAuZGVzY3JpcHRpb24gZnJvbSBwZXRzIHAxXzAgbGVmdCBqb2luIHR5cGVzIHQxXzAgb24gdDFfMC5pZD1wMV8wLnR5cGVfaWQgbGVmdCBqb2luIHZpc2l0cyB2MV8wIG9uIHAxXzAuaWQ9djFfMC5wZXRfaWQgd2hlcmUgcDFfMC5vd25lcl9pZD0kMQAAAQAAABdCAAAAFgAAAAEAAQABAAAABAAAAAEAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - parameter_format_codes: [1] + parameters: [[0, 0, 0, 1]] + describe: + object_type: 80 + name: "" + execute: + - {} + parse: + - name: "" + query: select p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,t1_0.id,t1_0.name,v1_0.pet_id,v1_0.id,v1_0.visit_date,v1_0.description from pets p1_0 left join types t1_0 on t1_0.id=p1_0.type_id left join visits v1_0 on p1_0.id=v1_0.pet_id where p1_0.owner_id=$1 + parameter_oids: + - 23 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", T, C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: SELECT 0 + ready_for_query: + txstatus: 84 + row_description: {fields: [{field_name: owner_id, table_oid: 16499, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16499, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: birth_date, table_oid: 16499, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16499, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: id, table_oid: 16522, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16522, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: pet_id, table_oid: 16550, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16550, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: visit_date, table_oid: 16550, table_attribute_number: 2, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: description, table_oid: 16550, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:43.386895735Z + restimestampmock: 2025-04-11T09:59:43.386982024Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-121 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_1 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: COMMIT + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:43.388124654Z + restimestampmock: 2025-04-11T09:59:43.38818536Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-122 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:46.871083393Z + restimestampmock: 2025-04-11T09:59:46.871169182Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-123 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, E, P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAANgBzZWxlY3QgczFfMC5pZCxzMV8wLm5hbWUgZnJvbSBzcGVjaWFsdGllcyBzMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + bind: + - {} + - {} + describe: + object_type: 80 + name: "" + execute: + - {} + - {} + parse: + - name: "" + query: BEGIN READ ONLY + parameter_oids: [] + - name: "" + query: select s1_0.id,s1_0.name from specialties s1_0 + parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - header: ["1", "2", C, "1", "2", T, D, C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAChAAZpZAAAAEAGAAEAAAAXAAT/////AABmaXJzdF9uYW1lAAAAQAYAAgAABBP//wAAAQMAAGxhc3RfbmFtZQAAAEAGAAMAAAQT//8AAAEDAABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABbAAYAAAABMQAAAARKb2huAAAAA0RvZQAAAB4xNHRoIE1haW4gU3RyZWV0LCBSb3lhbCBTdHJlZXQAAAAPTG9uZG9uLCBFbmdsYW5kAAAACDEyMzQ1Njc4QwAAAA9JTlNFUlQgMCAxAFoAAAAFVA== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 73 - - 78 - - 83 - - 69 - - 82 - - 84 - - 32 - - 48 - - 32 - - 49 - data_row: [{row_values: ["1", John, Doe, '14th Main Street, Royal Street', 'London, England', "12345678"]}, {row_values: ["1", John, Doe, '14th Main Street, Royal Street', 'London, England', "12345678"]}, {row_values: ["1", John, Doe, '14th Main Street, Royal Street', 'London, England', "12345678"]}] + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", newone]}] ready_for_query: txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + row_description: {fields: [{field_name: id, table_oid: 16515, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16515, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:48.162144766+05:30 - restimestampmock: 2024-02-12T16:54:48.162232728+05:30 + reqtimestampmock: 2025-04-11T09:59:46.874207292Z + restimestampmock: 2025-04-11T09:59:46.874291623Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-88 +name: mock-124 spec: metadata: type: config @@ -3938,29 +5044,53 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: COMMIT ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:48.165306893+05:30 - restimestampmock: 2024-02-12T16:54:48.165433792+05:30 + reqtimestampmock: 2025-04-11T09:59:46.87551225Z + restimestampmock: 2025-04-11T09:59:46.875562832Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-89 +name: mock-125 +spec: + metadata: + type: config + postgresrequests: + - header: [B, E] + identifier: ClientRequest + length: 8 + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + bind: + - prepared_statement: S_2 + execute: + - max_rows: 1 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["2", I, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + ready_for_query: + txstatus: 73 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:49.087426658Z + restimestampmock: 2025-04-11T09:59:49.087495031Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-126 spec: metadata: type: config @@ -3968,7 +5098,7 @@ spec: - header: [P, B, E, P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAAbABzZWxlY3QgbzFfMC5pZCxvMV8wLmFkZHJlc3MsbzFfMC5jaXR5LG8xXzAuZmlyc3RfbmFtZSxvMV8wLmxhc3RfbmFtZSxvMV8wLnRlbGVwaG9uZSBmcm9tIG93bmVycyBvMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAARABzZWxlY3QgdjFfMC5pZCx2MV8wLmZpcnN0X25hbWUsdjFfMC5sYXN0X25hbWUgZnJvbSB2ZXRzIHYxXzAAAABCAAAADAAAAAAAAAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== bind: - {} - {} @@ -3983,7 +5113,7 @@ spec: query: BEGIN READ ONLY parameter_oids: [] - name: "" - query: select o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,o1_0.telephone from owners o1_0 + query: select v1_0.id,v1_0.first_name,v1_0.last_name from vets v1_0 parameter_oids: [] msg_type: 69 auth_type: 0 @@ -3991,41 +5121,25 @@ spec: - header: ["1", "2", C, "1", "2", T, D, C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAChAAZpZAAAAEAGAAEAAAAXAAT/////AABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAZmlyc3RfbmFtZQAAAEAGAAIAAAQT//8AAAEDAABsYXN0X25hbWUAAABABgADAAAEE///AAABAwAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABbAAYAAAABMQAAAB4xNHRoIE1haW4gU3RyZWV0LCBSb3lhbCBTdHJlZXQAAAAPTG9uZG9uLCBFbmdsYW5kAAAABEpvaG4AAAADRG9lAAAACDEyMzQ1Njc4QwAAAA1TRUxFQ1QgMQBaAAAABVQ= authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}] + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", firstname, lastname]}] ready_for_query: txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + row_description: {fields: [{field_name: id, table_oid: 16541, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: first_name, table_oid: 16541, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16541, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:48.190116537+05:30 - restimestampmock: 2024-02-12T16:54:48.190148762+05:30 + reqtimestampmock: 2025-04-11T09:59:49.090629595Z + restimestampmock: 2025-04-11T09:59:49.09074255Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-90 +name: mock-127 spec: metadata: type: config @@ -4033,7 +5147,7 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAQkAc2VsZWN0IHAxXzAub3duZXJfaWQscDFfMC5pZCxwMV8wLmJpcnRoX2RhdGUscDFfMC5uYW1lLHQxXzAuaWQsdDFfMC5uYW1lLHYxXzAucGV0X2lkLHYxXzAuaWQsdjFfMC52aXNpdF9kYXRlLHYxXzAuZGVzY3JpcHRpb24gZnJvbSBwZXRzIHAxXzAgbGVmdCBqb2luIHR5cGVzIHQxXzAgb24gdDFfMC5pZD1wMV8wLnR5cGVfaWQgbGVmdCBqb2luIHZpc2l0cyB2MV8wIG9uIHAxXzAuaWQ9djFfMC5wZXRfaWQgd2hlcmUgcDFfMC5vd25lcl9pZD0kMQAAAQAAABdCAAAAFgAAAAEAAQABAAAABAAAAAEAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAJIAc2VsZWN0IHMxXzAudmV0X2lkLHMxXzEuaWQsczFfMS5uYW1lIGZyb20gdmV0X3NwZWNpYWx0aWVzIHMxXzAgam9pbiBzcGVjaWFsdGllcyBzMV8xIG9uIHMxXzEuaWQ9czFfMC5zcGVjaWFsdHlfaWQgd2hlcmUgczFfMC52ZXRfaWQ9JDEAAAEAAAAXQgAAABYAAAABAAEAAQAAAAQAAAABAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - parameter_format_codes: [1] parameters: [[0, 0, 0, 1]] @@ -4044,7 +5158,7 @@ spec: - {} parse: - name: "" - query: select p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,t1_0.id,t1_0.name,v1_0.pet_id,v1_0.id,v1_0.visit_date,v1_0.description from pets p1_0 left join types t1_0 on t1_0.id=p1_0.type_id left join visits v1_0 on p1_0.id=v1_0.pet_id where p1_0.owner_id=$1 + query: select s1_0.vet_id,s1_1.id,s1_1.name from vet_specialties s1_0 join specialties s1_1 on s1_1.id=s1_0.specialty_id where s1_0.vet_id=$1 parameter_oids: - 23 msg_type: 69 @@ -4054,32 +5168,22 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: SELECT 0 ready_for_query: txstatus: 84 - row_description: {fields: [{name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [112, 101, 116, 95, 105, 100], table_oid: 16450, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16450, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [118, 105, 115, 105, 116, 95, 100, 97, 116, 101], table_oid: 16450, table_attribute_number: 2, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110], table_oid: 16450, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + row_description: {fields: [{field_name: vet_id, table_oid: 16535, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16515, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16515, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:48.206100514+05:30 - restimestampmock: 2024-02-12T16:54:48.206123859+05:30 + reqtimestampmock: 2025-04-11T09:59:49.093826199Z + restimestampmock: 2025-04-11T09:59:49.093966903Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-91 +name: mock-128 spec: metadata: type: config @@ -4099,29 +5203,21 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: COMMIT ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:48.207559307+05:30 - restimestampmock: 2024-02-12T16:54:48.207577149+05:30 + reqtimestampmock: 2025-04-11T09:59:49.095401398Z + restimestampmock: 2025-04-11T09:59:49.095466604Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-92 +name: mock-129 spec: metadata: type: config @@ -4141,21 +5237,19 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:55.823344895+05:30 - restimestampmock: 2024-02-12T16:54:55.823396837+05:30 + reqtimestampmock: 2025-04-11T09:59:50.559222578Z + restimestampmock: 2025-04-11T09:59:50.5593407Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-93 +name: mock-130 spec: metadata: type: config @@ -4163,10 +5257,11 @@ spec: - header: [P, B, E, P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAANgBzZWxlY3QgczFfMC5pZCxzMV8wLm5hbWUgZnJvbSBzcGVjaWFsdGllcyBzMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAADiAHNlbGVjdCB2MV8wLmlkLHYxXzAuZmlyc3RfbmFtZSx2MV8wLmxhc3RfbmFtZSxzMV8wLnZldF9pZCxzMV8xLmlkLHMxXzEubmFtZSBmcm9tIHZldHMgdjFfMCBsZWZ0IGpvaW4gKHZldF9zcGVjaWFsdGllcyBzMV8wIGpvaW4gc3BlY2lhbHRpZXMgczFfMSBvbiBzMV8xLmlkPXMxXzAuc3BlY2lhbHR5X2lkKSBvbiB2MV8wLmlkPXMxXzAudmV0X2lkIHdoZXJlIHYxXzAuaWQ9JDEAAAEAAAAXQgAAABYAAAABAAEAAQAAAAQAAAABAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - {} - - {} + - parameter_format_codes: [1] + parameters: [[0, 0, 0, 1]] describe: object_type: 80 name: "" @@ -4175,50 +5270,80 @@ spec: - {} parse: - name: "" - query: BEGIN READ ONLY + query: BEGIN parameter_oids: [] - name: "" - query: select s1_0.id,s1_0.name from specialties s1_0 - parameter_oids: [] + query: select v1_0.id,v1_0.first_name,v1_0.last_name,s1_0.vet_id,s1_1.id,s1_1.name from vets v1_0 left join (vet_specialties s1_0 join specialties s1_1 on s1_1.id=s1_0.specialty_id) on v1_0.id=s1_0.vet_id where v1_0.id=$1 + parameter_oids: + - 23 msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, "1", "2", T, C, Z] + - header: ["1", "2", C, "1", "2", T, D, C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", firstname, lastname, "", "", ""]}] ready_for_query: txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16415, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16415, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + row_description: {fields: [{field_name: id, table_oid: 16541, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: first_name, table_oid: 16541, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: last_name, table_oid: 16541, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: vet_id, table_oid: 16535, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: id, table_oid: 16515, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16515, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:55.828074766+05:30 - restimestampmock: 2024-02-12T16:54:55.828162766+05:30 + reqtimestampmock: 2025-04-11T09:59:50.573185746Z + restimestampmock: 2025-04-11T09:59:50.573287451Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-94 +name: mock-131 +spec: + metadata: + type: config + postgresrequests: + - header: [P, B, D, E] + identifier: ClientRequest + length: 8 + payload: UAAAACgAZGVsZXRlIGZyb20gdmV0cyB3aGVyZSBpZD0kMQAAAQAAABdCAAAAFgAAAAEAAQABAAAABAAAAAEAAEQAAAAGUABFAAAACQAAAAABUwAAAAQ= + bind: + - parameter_format_codes: [1] + parameters: [[0, 0, 0, 1]] + describe: + object_type: 80 + name: "" + execute: + - max_rows: 1 + parse: + - name: "" + query: delete from vets where id=$1 + parameter_oids: + - 23 + msg_type: 69 + auth_type: 0 + postgresresponses: + - header: ["1", "2", "n", C, Z] + identifier: ServerResponse + length: 8 + authentication_md5_password: + salt: [0, 0, 0, 0] + command_complete: + - command_tag_type: DELETE 1 + ready_for_query: + txstatus: 84 + msg_type: 90 + auth_type: 0 + reqtimestampmock: 2025-04-11T09:59:50.585746794Z + restimestampmock: 2025-04-11T09:59:50.585796667Z +connectionId: "0" +respType: json +--- +version: api.keploy.io/v1beta1 +kind: Postgres +name: mock-132 spec: metadata: type: config @@ -4238,29 +5363,21 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: COMMIT ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:54:55.830973709+05:30 - restimestampmock: 2024-02-12T16:54:55.831019106+05:30 + reqtimestampmock: 2025-04-11T09:59:50.588186755Z + restimestampmock: 2025-04-11T09:59:50.588228087Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-95 +name: mock-133 spec: metadata: type: config @@ -4280,21 +5397,19 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:50.040062946+05:30 - restimestampmock: 2024-02-12T16:55:50.040193067+05:30 + reqtimestampmock: 2025-04-11T09:59:51.479500912Z + restimestampmock: 2025-04-11T09:59:51.479542703Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-96 +name: mock-134 spec: metadata: type: config @@ -4302,11 +5417,10 @@ spec: - header: [P, B, E, P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAACIAGluc2VydCBpbnRvIG93bmVycyAoYWRkcmVzcywgY2l0eSwgZmlyc3RfbmFtZSwgbGFzdF9uYW1lLCB0ZWxlcGhvbmUpIHZhbHVlcyAoJDEsICQyLCAkMywgJDQsICQ1KQpSRVRVUk5JTkcgKgAABQAABBMAAAQTAAAEEwAABBMAAAQTQgAAAHcAAAAFAAAAAAAAAAAAAAAFAAAAIjI0dGggTWFpbiBTdHJlZXQsIFNvbWV0aGluZyBTdHJlZXQAAAAXTG9zIEFuZ2VsZXMsIENhbGlmb3JuaWEAAAADSm9lAAAAB0hvcGtpbnMAAAAKOTA5MDgxMjAzMAAARAAAAAZQAEUAAAAJAAAAAABTAAAABA== + payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAAMABzZWxlY3QgcDFfMC5pZCxwMV8wLm5hbWUgZnJvbSB0eXBlcyBwMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: - {} - - parameter_format_codes: [0, 0, 0, 0, 0] - parameters: [[50, 52, 116, 104, 32, 77, 97, 105, 110, 32, 83, 116, 114, 101, 101, 116, 44, 32, 83, 111, 109, 101, 116, 104, 105, 110, 103, 32, 83, 116, 114, 101, 101, 116], [76, 111, 115, 32, 65, 110, 103, 101, 108, 101, 115, 44, 32, 67, 97, 108, 105, 102, 111, 114, 110, 105, 97], [74, 111, 101], [72, 111, 112, 107, 105, 110, 115], [57, 48, 57, 48, 56, 49, 50, 48, 51, 48]] + - {} describe: object_type: 80 name: "" @@ -4315,59 +5429,36 @@ spec: - {} parse: - name: "" - query: BEGIN + query: BEGIN READ ONLY parameter_oids: [] - name: "" - query: insert into owners (address, city, first_name, last_name, telephone) values ($1, $2, $3, $4, $5) RETURNING * - parameter_oids: - - 1043 - - 1043 - - 1043 - - 1043 - - 1043 + query: select p1_0.id,p1_0.name from types p1_0 + parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - header: ["1", "2", C, "1", "2", T, D, C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAChAAZpZAAAAEAGAAEAAAAXAAT/////AABmaXJzdF9uYW1lAAAAQAYAAgAABBP//wAAAQMAAGxhc3RfbmFtZQAAAEAGAAMAAAQT//8AAAEDAABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABsAAYAAAABMgAAAANKb2UAAAAHSG9wa2lucwAAACIyNHRoIE1haW4gU3RyZWV0LCBTb21ldGhpbmcgU3RyZWV0AAAAF0xvcyBBbmdlbGVzLCBDYWxpZm9ybmlhAAAACjkwOTA4MTIwMzBDAAAAD0lOU0VSVCAwIDEAWgAAAAVU authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 73 - - 78 - - 83 - - 69 - - 82 - - 84 - - 32 - - 48 - - 32 - - 49 - data_row: [{row_values: ["2", Joe, Hopkins, '24th Main Street, Something Street', 'Los Angeles, California', "9090812030"]}, {row_values: ["2", Joe, Hopkins, '24th Main Street, Something Street', 'Los Angeles, California', "9090812030"]}, {row_values: ["2", Joe, Hopkins, '24th Main Street, Something Street', 'Los Angeles, California', "9090812030"]}] + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", newone]}] ready_for_query: txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + row_description: {fields: [{field_name: id, table_oid: 16522, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16522, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:50.04342909+05:30 - restimestampmock: 2024-02-12T16:55:50.043512656+05:30 + reqtimestampmock: 2025-04-11T09:59:51.480691332Z + restimestampmock: 2025-04-11T09:59:51.480731747Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-97 +name: mock-135 spec: metadata: type: config @@ -4387,148 +5478,104 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: COMMIT ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:50.04724153+05:30 - restimestampmock: 2024-02-12T16:55:50.047301506+05:30 + reqtimestampmock: 2025-04-11T09:59:51.481405641Z + restimestampmock: 2025-04-11T09:59:51.481430432Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-98 +name: mock-136 spec: metadata: type: config postgresrequests: - - header: [P, B, E, P, B, D, E] + - header: [B, E] identifier: ClientRequest length: 8 - payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAAAbABzZWxlY3QgbzFfMC5pZCxvMV8wLmFkZHJlc3MsbzFfMC5jaXR5LG8xXzAuZmlyc3RfbmFtZSxvMV8wLmxhc3RfbmFtZSxvMV8wLnRlbGVwaG9uZSBmcm9tIG93bmVycyBvMV8wAAAAQgAAAAwAAAAAAAAAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== bind: - - {} - - {} - describe: - object_type: 80 - name: "" + - prepared_statement: S_2 execute: - - {} - - {} - parse: - - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,o1_0.telephone from owners o1_0 - parameter_oids: [] + - max_rows: 1 msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, D, C, Z] + - header: ["2", I, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAChAAZpZAAAAEAGAAEAAAAXAAT/////AABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAZmlyc3RfbmFtZQAAAEAGAAIAAAQT//8AAAEDAABsYXN0X25hbWUAAABABgADAAAEE///AAABAwAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABbAAYAAAABMQAAAB4xNHRoIE1haW4gU3RyZWV0LCBSb3lhbCBTdHJlZXQAAAAPTG9uZG9uLCBFbmdsYW5kAAAABEpvaG4AAAADRG9lAAAACDEyMzQ1Njc4RAAAAGwABgAAAAEyAAAAIjI0dGggTWFpbiBTdHJlZXQsIFNvbWV0aGluZyBTdHJlZXQAAAAXTG9zIEFuZ2VsZXMsIENhbGlmb3JuaWEAAAADSm9lAAAAB0hvcGtpbnMAAAAKOTA5MDgxMjAzMEMAAAANU0VMRUNUIDIAWgAAAAVU authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 50 - data_row: [{row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678", "2", '24th Main Street, Something Street', 'Los Angeles, California', Joe, Hopkins, "9090812030"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678", "2", '24th Main Street, Something Street', 'Los Angeles, California', Joe, Hopkins, "9090812030"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678", "2", '24th Main Street, Something Street', 'Los Angeles, California', Joe, Hopkins, "9090812030"]}] + salt: [0, 0, 0, 0] ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:50.068838093+05:30 - restimestampmock: 2024-02-12T16:55:50.068895068+05:30 + reqtimestampmock: 2025-04-11T09:59:52.875474214Z + restimestampmock: 2025-04-11T09:59:52.87555967Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-99 +name: mock-137 spec: metadata: type: config postgresrequests: - - header: [P, B, D, E] + - header: [P, B, E, P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAQkAc2VsZWN0IHAxXzAub3duZXJfaWQscDFfMC5pZCxwMV8wLmJpcnRoX2RhdGUscDFfMC5uYW1lLHQxXzAuaWQsdDFfMC5uYW1lLHYxXzAucGV0X2lkLHYxXzAuaWQsdjFfMC52aXNpdF9kYXRlLHYxXzAuZGVzY3JpcHRpb24gZnJvbSBwZXRzIHAxXzAgbGVmdCBqb2luIHR5cGVzIHQxXzAgb24gdDFfMC5pZD1wMV8wLnR5cGVfaWQgbGVmdCBqb2luIHZpc2l0cyB2MV8wIG9uIHAxXzAuaWQ9djFfMC5wZXRfaWQgd2hlcmUgcDFfMC5vd25lcl9pZD0kMQAAAQAAABdCAAAAFgAAAAEAAQABAAAABAAAAAIAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAA0AQkVHSU4AAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAFAAAABFAHNlbGVjdCBwMV8wLmlkLHAxXzAubmFtZSBmcm9tIHR5cGVzIHAxXzAgd2hlcmUgcDFfMC5pZD0kMQAAAQAAABdCAAAAFgAAAAEAAQABAAAABAAAAAEAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= bind: + - {} - parameter_format_codes: [1] - parameters: [[0, 0, 0, 2]] + parameters: [[0, 0, 0, 1]] describe: object_type: 80 name: "" execute: - {} + - {} parse: - name: "" - query: select p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,t1_0.id,t1_0.name,v1_0.pet_id,v1_0.id,v1_0.visit_date,v1_0.description from pets p1_0 left join types t1_0 on t1_0.id=p1_0.type_id left join visits v1_0 on p1_0.id=v1_0.pet_id where p1_0.owner_id=$1 + query: BEGIN + parameter_oids: [] + - name: "" + query: select p1_0.id,p1_0.name from types p1_0 where p1_0.id=$1 parameter_oids: - 23 msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", T, C, Z] + - header: ["1", "2", C, "1", "2", T, D, C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: BEGIN + - command_tag_type: SELECT 1 + data_row: [{row_values: ["1", newone]}] ready_for_query: txstatus: 84 - row_description: {fields: [{name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [112, 101, 116, 95, 105, 100], table_oid: 16450, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16450, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [118, 105, 115, 105, 116, 95, 100, 97, 116, 101], table_oid: 16450, table_attribute_number: 2, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110], table_oid: 16450, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + row_description: {fields: [{field_name: id, table_oid: 16522, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16522, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:50.073623899+05:30 - restimestampmock: 2024-02-12T16:55:50.073683875+05:30 + reqtimestampmock: 2025-04-11T09:59:52.878948517Z + restimestampmock: 2025-04-11T09:59:52.879030181Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-100 +name: mock-138 spec: metadata: type: config @@ -4536,10 +5583,9 @@ spec: - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAAQkAc2VsZWN0IHAxXzAub3duZXJfaWQscDFfMC5pZCxwMV8wLmJpcnRoX2RhdGUscDFfMC5uYW1lLHQxXzAuaWQsdDFfMC5uYW1lLHYxXzAucGV0X2lkLHYxXzAuaWQsdjFfMC52aXNpdF9kYXRlLHYxXzAuZGVzY3JpcHRpb24gZnJvbSBwZXRzIHAxXzAgbGVmdCBqb2luIHR5cGVzIHQxXzAgb24gdDFfMC5pZD1wMV8wLnR5cGVfaWQgbGVmdCBqb2luIHZpc2l0cyB2MV8wIG9uIHAxXzAuaWQ9djFfMC5wZXRfaWQgd2hlcmUgcDFfMC5vd25lcl9pZD0kMQAAAQAAABdCAAAAFgAAAAEAAQABAAAABAAAAAEAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAAG8Ac2VsZWN0IHAxXzAuaWQscDFfMC5iaXJ0aF9kYXRlLHAxXzAubmFtZSxwMV8wLm93bmVyX2lkLHAxXzAudHlwZV9pZCBmcm9tIHBldHMgcDFfMCB3aGVyZSBwMV8wLnR5cGVfaWQ9MQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAFMAAAAE bind: - - parameter_format_codes: [1] - parameters: [[0, 0, 0, 1]] + - {} describe: object_type: 80 name: "" @@ -4547,9 +5593,8 @@ spec: - {} parse: - name: "" - query: select p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,t1_0.id,t1_0.name,v1_0.pet_id,v1_0.id,v1_0.visit_date,v1_0.description from pets p1_0 left join types t1_0 on t1_0.id=p1_0.type_id left join visits v1_0 on p1_0.id=v1_0.pet_id where p1_0.owner_id=$1 - parameter_oids: - - 23 + query: select p1_0.id,p1_0.birth_date,p1_0.name,p1_0.owner_id,p1_0.type_id from pets p1_0 where p1_0.type_id=1 + parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: @@ -4557,217 +5602,149 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 + - command_tag_type: SELECT 0 ready_for_query: txstatus: 84 - row_description: {fields: [{name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [112, 101, 116, 95, 105, 100], table_oid: 16450, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16450, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [118, 105, 115, 105, 116, 95, 100, 97, 116, 101], table_oid: 16450, table_attribute_number: 2, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110], table_oid: 16450, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} + row_description: {fields: [{field_name: id, table_oid: 16499, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: birth_date, table_oid: 16499, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: name, table_oid: 16499, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {field_name: owner_id, table_oid: 16499, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {field_name: type_id, table_oid: 16499, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:50.076258581+05:30 - restimestampmock: 2024-02-12T16:55:50.076304928+05:30 + reqtimestampmock: 2025-04-11T09:59:52.897461866Z + restimestampmock: 2025-04-11T09:59:52.897508822Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-101 +name: mock-139 spec: metadata: type: config postgresrequests: - - header: [B, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + payload: UAAAACkAZGVsZXRlIGZyb20gdHlwZXMgd2hlcmUgaWQ9JDEAAAEAAAAXQgAAABYAAAABAAEAAQAAAAQAAAABAABEAAAABlAARQAAAAkAAAAAAVMAAAAE bind: - - prepared_statement: S_1 + - parameter_format_codes: [1] + parameters: [[0, 0, 0, 1]] + describe: + object_type: 80 + name: "" execute: - max_rows: 1 + parse: + - name: "" + query: delete from types where id=$1 + parameter_oids: + - 23 msg_type: 69 auth_type: 0 postgresresponses: - - header: ["2", C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:50.077763851+05:30 - restimestampmock: 2024-02-12T16:55:50.077789484+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mock-102 -spec: - metadata: - type: config - postgresrequests: - - header: [B, E] - identifier: ClientRequest - length: 8 - payload: QgAAAA8AU18yAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== - bind: - - prepared_statement: S_2 - execute: - - max_rows: 1 - msg_type: 69 - auth_type: 0 - postgresresponses: - - header: ["2", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + - command_tag_type: DELETE 1 ready_for_query: - txstatus: 73 + txstatus: 84 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:54.333949144+05:30 - restimestampmock: 2024-02-12T16:55:54.334014537+05:30 + reqtimestampmock: 2025-04-11T09:59:52.912158798Z + restimestampmock: 2025-04-11T09:59:52.912187672Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-103 +name: mock-140 spec: metadata: type: config postgresrequests: - - header: [P, B, E, P, B, D, E] + - header: [P, B, D, E] identifier: ClientRequest length: 8 - payload: UAAAABcAQkVHSU4gUkVBRCBPTkxZAAAAQgAAAAwAAAAAAAAAAEUAAAAJAAAAAABQAAABCgBzZWxlY3QgZGlzdGluY3QgbzFfMC5pZCxvMV8wLmFkZHJlc3MsbzFfMC5jaXR5LG8xXzAuZmlyc3RfbmFtZSxvMV8wLmxhc3RfbmFtZSxwMV8wLm93bmVyX2lkLHAxXzAuaWQscDFfMC5iaXJ0aF9kYXRlLHAxXzAubmFtZSxwMV8wLnR5cGVfaWQsbzFfMC50ZWxlcGhvbmUgZnJvbSBvd25lcnMgbzFfMCBsZWZ0IGpvaW4gcGV0cyBwMV8wIG9uIG8xXzAuaWQ9cDFfMC5vd25lcl9pZCB3aGVyZSBvMV8wLmxhc3RfbmFtZSBsaWtlICQxIGVzY2FwZSAnJwAAAQAABBNCAAAAFgAAAAEAAAABAAAABERvZSUAAEQAAAAGUABFAAAACQAAAAAAUwAAAAQ= + payload: UAAAACQAZGVsZXRlIGZyb20gdHlwZXMgd2hlcmUgaWQ9MQAAAEIAAAAMAAAAAAAAAABEAAAABlAARQAAAAkAAAAAAVMAAAAE bind: - {} - - parameter_format_codes: [0] - parameters: [[68, 111, 101, 37]] describe: object_type: 80 name: "" execute: - - {} - - {} + - max_rows: 1 parse: - name: "" - query: BEGIN READ ONLY + query: delete from types where id=1 parameter_oids: [] - - name: "" - query: select distinct o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,p1_0.type_id,o1_0.telephone from owners o1_0 left join pets p1_0 on o1_0.id=p1_0.owner_id where o1_0.last_name like $1 escape '' - parameter_oids: - - 1043 msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] + - header: ["1", "2", "n", C, Z] identifier: ServerResponse length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAEfAAtpZAAAAEAGAAEAAAAXAAT/////AABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAZmlyc3RfbmFtZQAAAEAGAAIAAAQT//8AAAEDAABsYXN0X25hbWUAAABABgADAAAEE///AAABAwAAb3duZXJfaWQAAABADwAEAAAAFwAE/////wAAaWQAAABADwABAAAAFwAE/////wAAYmlydGhfZGF0ZQAAAEAPAAMAAAQ6AAT/////AABuYW1lAAAAQA8AAgAABBP//wAAAQMAAHR5cGVfaWQAAABADwAFAAAAFwAE/////wAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABvAAsAAAABMQAAAB4xNHRoIE1haW4gU3RyZWV0LCBSb3lhbCBTdHJlZXQAAAAPTG9uZG9uLCBFbmdsYW5kAAAABEpvaG4AAAADRG9l//////////////////////////8AAAAIMTIzNDU2NzhDAAAADVNFTEVDVCAxAFoAAAAFVA== authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "", "", "", "", "", "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "", "", "", "", "", "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "", "", "", "", "", "12345678"]}] + - command_tag_type: DELETE 0 ready_for_query: txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 121, 112, 101, 95, 105, 100], table_oid: 16399, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:54.359748725+05:30 - restimestampmock: 2024-02-12T16:55:54.35980224+05:30 + reqtimestampmock: 2025-04-11T09:59:52.912890691Z + restimestampmock: 2025-04-11T09:59:52.912924106Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-104 +name: mock-141 spec: metadata: type: config postgresrequests: - - header: [B, E] + - header: [P, B, E] identifier: ClientRequest length: 8 - payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== + payload: UAAAADcAU0VUIGFwcGxpY2F0aW9uX25hbWUgPSAnUG9zdGdyZVNRTCBKREJDIERyaXZlcicAAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAVMAAAAE bind: - - prepared_statement: S_1 + - {} execute: - max_rows: 1 + parse: + - name: "" + query: SET application_name = 'PostgreSQL JDBC Driver' + parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["2", C, Z] + - header: ["1", "2", C, S, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 + - command_tag_type: SET + parameter_status: + - name: application_name + value: PostgreSQL JDBC Driver + - name: application_name + value: PostgreSQL JDBC Driver ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:55:54.364402525+05:30 - restimestampmock: 2024-02-12T16:55:54.364438368+05:30 + reqtimestampmock: 2025-04-11T09:58:16.930456467Z + restimestampmock: 2025-04-11T09:58:16.930482965Z +connectionId: "14" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-105 +name: mock-142 spec: metadata: type: config @@ -4791,16 +5768,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -4810,12 +5780,14 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.271134312+05:30 - restimestampmock: 2024-02-12T16:43:50.271144812+05:30 + reqtimestampmock: 2025-04-11T09:58:16.963907521Z + restimestampmock: 2025-04-11T09:58:16.963926562Z +connectionId: "18" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-106 +name: mock-143 spec: metadata: type: config @@ -4839,16 +5811,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -4858,12 +5823,14 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.245572605+05:30 - restimestampmock: 2024-02-12T16:43:50.245583272+05:30 + reqtimestampmock: 2025-04-11T09:58:16.912479057Z + restimestampmock: 2025-04-11T09:58:16.912503389Z +connectionId: "12" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-107 +name: mock-144 spec: metadata: type: config @@ -4887,16 +5854,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -4906,12 +5866,14 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.311346072+05:30 - restimestampmock: 2024-02-12T16:43:50.311357656+05:30 + reqtimestampmock: 2025-04-11T09:58:16.947130205Z + restimestampmock: 2025-04-11T09:58:16.947150371Z +connectionId: "16" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-108 +name: mock-145 spec: metadata: type: config @@ -4935,16 +5897,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -4954,12 +5909,14 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.162691249+05:30 - restimestampmock: 2024-02-12T16:43:50.162700707+05:30 + reqtimestampmock: 2025-04-11T09:58:16.893517374Z + restimestampmock: 2025-04-11T09:58:16.893535123Z +connectionId: "10" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-109 +name: mock-146 spec: metadata: type: config @@ -4983,16 +5940,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -5002,60 +5952,48 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.344132908+05:30 - restimestampmock: 2024-02-12T16:43:50.344143034+05:30 + reqtimestampmock: 2025-04-11T09:58:16.816564416Z + restimestampmock: 2025-04-11T09:58:16.816586998Z +connectionId: "2" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-110 +name: mock-147 spec: metadata: type: config postgresrequests: - - header: [P, B, E] + - header: [B, E] identifier: ClientRequest length: 8 - payload: UAAAADcAU0VUIGFwcGxpY2F0aW9uX25hbWUgPSAnUG9zdGdyZVNRTCBKREJDIERyaXZlcicAAABCAAAADAAAAAAAAAAARQAAAAkAAAAAAVMAAAAE + payload: QgAAAA8AU18xAAAAAAAAAEUAAAAJAAAAAAFTAAAABA== bind: - - {} + - prepared_statement: S_1 execute: - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] msg_type: 69 auth_type: 0 postgresresponses: - - header: ["1", "2", C, S, Z] + - header: ["2", C, Z] identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver + - command_tag_type: COMMIT ready_for_query: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.293884135+05:30 - restimestampmock: 2024-02-12T16:43:50.293892885+05:30 + reqtimestampmock: 2025-04-11T09:59:52.914044945Z + restimestampmock: 2025-04-11T09:59:52.91408061Z +connectionId: "0" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-111 +name: mock-148 spec: metadata: type: config @@ -5079,16 +6017,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -5098,12 +6029,14 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.187595569+05:30 - restimestampmock: 2024-02-12T16:43:50.187609402+05:30 + reqtimestampmock: 2025-04-11T09:58:16.836156853Z + restimestampmock: 2025-04-11T09:58:16.836179852Z +connectionId: "4" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-112 +name: mock-149 spec: metadata: type: config @@ -5127,16 +6060,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -5146,12 +6072,14 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.220929665+05:30 - restimestampmock: 2024-02-12T16:43:50.220953957+05:30 + reqtimestampmock: 2025-04-11T09:58:16.855000043Z + restimestampmock: 2025-04-11T09:58:16.855018042Z +connectionId: "6" +respType: json --- version: api.keploy.io/v1beta1 kind: Postgres -name: mock-113 +name: mock-150 spec: metadata: type: config @@ -5175,16 +6103,9 @@ spec: identifier: ServerResponse length: 8 authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 + salt: [0, 0, 0, 0] command_complete: - - command_tag: - - 83 - - 69 - - 84 + - command_tag_type: SET parameter_status: - name: application_name value: PostgreSQL JDBC Driver @@ -5194,5 +6115,7 @@ spec: txstatus: 73 msg_type: 90 auth_type: 0 - reqtimestampmock: 2024-02-12T16:43:50.136646866+05:30 - restimestampmock: 2024-02-12T16:43:50.136656283+05:30 + reqtimestampmock: 2025-04-11T09:58:16.873236146Z + restimestampmock: 2025-04-11T09:58:16.873276227Z +connectionId: "8" +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-1.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-1.yaml index f4dc844b..5ef636b1 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-1.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-1.yaml @@ -1,41 +1,43 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-1 spec: metadata: {} req: - method: GET + method: OPTIONS proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes + url: http://localhost:9966/petclinic/api/owners header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept: '*/*' + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 + Access-Control-Request-Headers: content-type + Access-Control-Request-Method: POST Connection: keep-alive Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2024-02-12T16:54:21.054666137+05:30 - host: "" + timestamp: 2025-04-11T09:59:07.399769724Z resp: - status_code: 404 + status_code: 200 header: + Access-Control-Allow-Headers: content-type + Access-Control-Allow-Methods: POST Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type + Access-Control-Max-Age: "1800" + Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:21 GMT + Date: Fri, 11 Apr 2025 09:59:07 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -44,31 +46,29 @@ spec: X-Frame-Options: DENY X-Xss-Protection: "0" body: "" - body_type: "" - status_message: "" + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:23.272606779+05:30 + timestamp: 2025-04-11T09:59:07.493501695Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737063 + created: 1744365547 curl: | - curl --request GET \ - --url http://localhost:9966/petclinic/api/pettypes \ - --header 'Referer: http://localhost:4200/' \ - --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ + curl --request OPTIONS \ + --url http://localhost:9966/petclinic/api/owners \ --header 'Host: localhost:9966' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Access-Control-Request-Headers: content-type' \ + --header 'Referer: http://localhost:4200/' \ --header 'Connection: keep-alive' \ - --header 'Accept: application/json, text/plain, */*' \ + --header 'Accept: */*' \ + --header 'Access-Control-Request-Method: POST' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ --header 'Sec-Fetch-Mode: cors' \ - --header 'Sec-Fetch-Dest: empty' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ --header 'Origin: http://localhost:4200' \ - --header 'Sec-Fetch-Site: same-site' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-10.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-10.yaml index 21334493..265ddf3c 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-10.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-10.yaml @@ -1,77 +1,74 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-10 spec: metadata: {} req: - method: POST + method: OPTIONS proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/vets + url: http://localhost:9966/petclinic/api/pettypes header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept: '*/*' + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 + Access-Control-Request-Headers: content-type + Access-Control-Request-Method: POST Connection: keep-alive - Content-Length: "70" - Content-Type: application/json Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"firstName":"Alice ","lastName":"Hopkins","specialties":[]}' - body_type: "" - timestamp: 2024-02-12T16:55:00.533630021+05:30 - host: "" + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: "" + timestamp: 2025-04-11T09:59:30.946283796Z resp: - status_code: 400 + status_code: 200 header: + Access-Control-Allow-Headers: content-type + Access-Control-Allow-Methods: POST Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type + Access-Control-Max-Age: "1800" + Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH Cache-Control: no-cache, no-store, max-age=0, must-revalidate + Connection: keep-alive Content-Length: "0" - Date: Mon, 12 Feb 2024 11:25:00 GMT - Errors: '[{"objectName":"vetDto","fieldName":"firstName","fieldValue":"Alice ","errorMessage":"must match \"^[a-zA-Z]*$\""}]' + Date: Fri, 11 Apr 2025 09:59:30 GMT Expires: "0" + Keep-Alive: timeout=60 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" body: "" - body_type: "" - status_message: "" + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:55:03.593634538+05:30 + timestamp: 2025-04-11T09:59:30.967767156Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737103 -curl: |- - curl --request POST \ - --url http://localhost:9966/petclinic/api/vets \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Content-Type: application/json' \ + created: 1744365570 +curl: | + curl --request OPTIONS \ + --url http://localhost:9966/petclinic/api/pettypes \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Host: localhost:9966' \ + --header 'Access-Control-Request-Headers: content-type' \ + --header 'Connection: keep-alive' \ + --header 'Access-Control-Request-Method: POST' \ --header 'Sec-Fetch-Mode: cors' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Host: localhost:9966' \ - --header 'Referer: http://localhost:4200/' \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ --header 'Origin: http://localhost:4200' \ - --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Fetch-Site: same-site' \ - --data '{"id":null,"firstName":"Alice ","lastName":"Hopkins","specialties":[]}' + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Accept: */*' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-11.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-11.yaml index 434e2751..881cea37 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-11.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-11.yaml @@ -1,3 +1,4 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-11 @@ -7,28 +8,26 @@ spec: method: POST proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners + url: http://localhost:9966/petclinic/api/pettypes header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Content-Length: "155" + Content-Length: "27" Content-Type: application/json Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030"}' - body_type: "" - timestamp: 2024-02-12T16:55:50.028129439+05:30 - host: "" + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: '{"id":null,"name":"newone"}' + timestamp: 2025-04-11T09:59:30.956579753Z resp: status_code: 201 header: @@ -37,44 +36,42 @@ spec: Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Mon, 12 Feb 2024 11:25:50 GMT + Date: Fri, 11 Apr 2025 09:59:30 GMT Expires: "0" Keep-Alive: timeout=60 - Location: /api/owners/2 + Location: /api/pettypes/1 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}' - body_type: "" - status_message: "" + body: '{"name":"newone","id":1}' + status_message: Created proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:55:50.095389844+05:30 + timestamp: 2025-04-11T09:59:33.019590442Z objects: [] assertions: noise: - body.telephone: [] - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737150 + created: 1744365573 curl: |- curl --request POST \ - --url http://localhost:9966/petclinic/api/owners \ - --header 'Origin: http://localhost:4200' \ - --header 'Accept-Encoding: gzip, deflate, br' \ + --url http://localhost:9966/petclinic/api/pettypes \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Content-Type: application/json' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Accept: application/json, text/plain, */*' \ --header 'Sec-Fetch-Mode: cors' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Connection: keep-alive' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ --header 'Host: localhost:9966' \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Referer: http://localhost:4200/' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ --header 'Sec-Fetch-Site: same-site' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ + --header 'Connection: keep-alive' \ + --header 'Origin: http://localhost:4200' \ --header 'Sec-Fetch-Dest: empty' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Content-Type: application/json' \ - --data '{"id":null,"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030"}' + --data "{\"id\":null,\"name\":\"newone\"}" +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-12.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-12.yaml index b397ddda..e3b296cd 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-12.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-12.yaml @@ -1,3 +1,4 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-12 @@ -7,35 +8,33 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners + url: http://localhost:9966/petclinic/api/specialties header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2024-02-12T16:55:50.062519717+05:30 - host: "" + timestamp: 2025-04-11T09:59:33.180807514Z resp: - status_code: 200 + status_code: 404 header: Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:25:50 GMT + Content-Length: "0" + Date: Fri, 11 Apr 2025 09:59:33 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -43,35 +42,31 @@ spec: X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]},{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}]' - body_type: "" - status_message: "" + body: "" + status_message: Not Found proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:55:52.113241485+05:30 + timestamp: 2025-04-11T09:59:35.266540023Z objects: [] assertions: noise: - body.city: [] - body.firstName: [] - body.telephone: [] - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737152 + created: 1744365575 curl: | curl --request GET \ - --url http://localhost:9966/petclinic/api/owners \ - --header 'Sec-Fetch-Mode: cors' \ - --header 'Accept: application/json, text/plain, */*' \ + --url http://localhost:9966/petclinic/api/specialties \ + --header 'Referer: http://localhost:4200/' \ + --header 'Host: localhost:9966' \ + --header 'Origin: http://localhost:4200' \ --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Sec-Fetch-Dest: empty' \ + --header 'Accept: application/json, text/plain, */*' \ --header 'Sec-Fetch-Site: same-site' \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ --header 'Connection: keep-alive' \ - --header 'Origin: http://localhost:4200' \ - --header 'Referer: http://localhost:4200/' \ - --header 'Host: localhost:9966' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-13.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-13.yaml index ff87fe91..206e422d 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-13.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-13.yaml @@ -1,43 +1,43 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-13 spec: metadata: {} req: - method: GET + method: OPTIONS proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners?lastName=Doe - url_params: - lastName: Doe + url: http://localhost:9966/petclinic/api/specialties header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept: '*/*' + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 + Access-Control-Request-Headers: content-type + Access-Control-Request-Method: POST Connection: keep-alive Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2024-02-12T16:55:54.294712477+05:30 - host: "" + timestamp: 2025-04-11T09:59:36.597670809Z resp: status_code: 200 header: + Access-Control-Allow-Headers: content-type + Access-Control-Allow-Methods: POST Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type + Access-Control-Max-Age: "1800" + Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:25:54 GMT + Content-Length: "0" + Date: Fri, 11 Apr 2025 09:59:36 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -45,33 +45,30 @@ spec: X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" + body: "" + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:55:56.366794212+05:30 + timestamp: 2025-04-11T09:59:36.689976543Z objects: [] assertions: noise: - body.city: [] - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737156 + created: 1744365576 curl: | - curl --request GET \ - --url http://localhost:9966/petclinic/api/owners?lastName=Doe \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ - --header 'Sec-Fetch-Dest: empty' \ - --header 'Host: localhost:9966' \ - --header 'Accept: application/json, text/plain, */*' \ + curl --request OPTIONS \ + --url http://localhost:9966/petclinic/api/specialties \ --header 'Connection: keep-alive' \ - --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ --header 'Sec-Fetch-Mode: cors' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Access-Control-Request-Method: POST' \ --header 'Origin: http://localhost:4200' \ --header 'Referer: http://localhost:4200/' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Access-Control-Request-Headers: content-type' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Accept: */*' \ + --header 'Host: localhost:9966' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-7.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-14.yaml similarity index 58% rename from spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-7.yaml rename to spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-14.yaml index f1fa99d4..0c236426 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-7.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-14.yaml @@ -1,33 +1,33 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http -name: test-7 +name: test-14 spec: metadata: {} req: method: POST proto_major: 1 proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes + url: http://localhost:9966/petclinic/api/specialties header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Content-Length: "25" + Content-Length: "17" Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Dogs"}' - body_type: "" - timestamp: 2023-12-09T06:34:05.008639825Z + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: '{"name":"newone"}' + timestamp: 2025-04-11T09:59:36.607237593Z resp: status_code: 201 header: @@ -36,43 +36,42 @@ spec: Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Sat, 09 Dec 2023 06:34:05 GMT + Date: Fri, 11 Apr 2025 09:59:36 GMT Expires: "0" Keep-Alive: timeout=60 - Location: /api/pettypes/2 + Location: /api/specialties/1 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '{"name":"Dogs","id":2}' - body_type: "" - status_message: "" + body: '{"id":1,"name":"newone"}' + status_message: Created proto_major: 0 proto_minor: 0 - timestamp: 2023-12-09T06:34:07.07283856Z + timestamp: 2025-04-11T09:59:38.6459685Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1702103647 + created: 1744365578 curl: |- curl --request POST \ - --url http://localhost:9967/petclinic/api/pettypes \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Origin: http://localhost:59555' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Content-Type: application/json' \ - --header 'Host: localhost:9967' \ + --url http://localhost:9966/petclinic/api/specialties \ --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Connection: keep-alive' \ --header 'Sec-Fetch-Mode: cors' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'Referer: http://localhost:59555/' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ - --data '{"id":null,"name":"Dogs"}' + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Content-Type: application/json' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Origin: http://localhost:4200' \ + --header 'Accept: application/json, text/plain, */*' \ + --header 'Host: localhost:9966' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --data "{\"name\":\"newone\"}" +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-2.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-15.yaml similarity index 57% rename from spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-2.yaml rename to spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-15.yaml index 403fc8f6..bf40b427 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-2.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-15.yaml @@ -1,31 +1,31 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http -name: test-2 +name: test-15 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners + url: http://localhost:9966/petclinic/api/owners header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2023-12-09T06:32:39.198607089Z + timestamp: 2025-04-11T09:59:43.366033987Z resp: status_code: 200 header: @@ -34,7 +34,7 @@ spec: Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:39 GMT + Date: Fri, 11 Apr 2025 09:59:43 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -42,33 +42,31 @@ spec: X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" + body: '[{"firstName":"firstname","lastName":"lastname","address":"banglore","city":"banglore","telephone":"123456","id":1,"pets":[]}]' + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2023-12-09T06:32:41.20953687Z + timestamp: 2025-04-11T09:59:45.500238835Z objects: [] assertions: noise: - body.city: [] - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1702103561 + created: 1744365585 curl: | curl --request GET \ - --url http://localhost:9967/petclinic/api/owners \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Host: localhost:9967' \ + --url http://localhost:9966/petclinic/api/owners \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ - --header 'Referer: http://localhost:59555/' \ --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Connection: keep-alive' \ - --header 'Origin: http://localhost:59555' \ - --header 'Sec-Fetch-Dest: empty' \ --header 'Accept: application/json, text/plain, */*' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ - --header 'Sec-Fetch-Mode: cors' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Origin: http://localhost:4200' \ + --header 'Host: localhost:9966' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Connection: keep-alive' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-6.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-16.yaml similarity index 60% rename from spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-6.yaml rename to spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-16.yaml index 3da4ef5b..bf05aa4f 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-6.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-16.yaml @@ -1,31 +1,31 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http -name: test-6 +name: test-16 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes + url: http://localhost:9966/petclinic/api/specialties header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2023-12-09T06:33:50.361853545Z + timestamp: 2025-04-11T09:59:46.864895094Z resp: status_code: 200 header: @@ -34,7 +34,7 @@ spec: Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Sat, 09 Dec 2023 06:33:50 GMT + Date: Fri, 11 Apr 2025 09:59:46 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -42,32 +42,31 @@ spec: X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '[{"name":"Cats","id":1}]' - body_type: "" - status_message: "" + body: '[{"id":1,"name":"newone"}]' + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2023-12-09T06:33:52.38144631Z + timestamp: 2025-04-11T09:59:48.978419338Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1702103632 + created: 1744365588 curl: | curl --request GET \ - --url http://localhost:9967/petclinic/api/pettypes \ - --header 'Connection: keep-alive' \ + --url http://localhost:9966/petclinic/api/specialties \ + --header 'Host: localhost:9966' \ + --header 'Origin: http://localhost:4200' \ --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Connection: keep-alive' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'Referer: http://localhost:59555/' \ - --header 'Origin: http://localhost:59555' \ --header 'Accept: application/json, text/plain, */*' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Sec-Fetch-Mode: cors' \ --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ - --header 'Host: localhost:9967' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Referer: http://localhost:4200/' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-1.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-17.yaml similarity index 57% rename from spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-1.yaml rename to spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-17.yaml index 00059deb..891f78b8 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-1.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-17.yaml @@ -1,31 +1,31 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http -name: test-1 +name: test-17 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners + url: http://localhost:9966/petclinic/api/vets header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2023-12-09T06:32:33.200536193Z + timestamp: 2025-04-11T09:59:49.081028409Z resp: status_code: 200 header: @@ -34,7 +34,7 @@ spec: Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:33 GMT + Date: Fri, 11 Apr 2025 09:59:49 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -42,33 +42,31 @@ spec: X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" + body: '[{"firstName":"firstname","lastName":"lastname","specialties":[],"id":1}]' + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2023-12-09T06:32:35.392184427Z + timestamp: 2025-04-11T09:59:50.603568085Z objects: [] assertions: noise: - body.city: [] - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1702103555 + created: 1744365590 curl: | curl --request GET \ - --url http://localhost:9967/petclinic/api/owners \ + --url http://localhost:9966/petclinic/api/vets \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ --header 'Sec-Fetch-Site: same-site' \ - --header 'Referer: http://localhost:59555/' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Origin: http://localhost:59555' \ - --header 'Accept: application/json, text/plain, */*' \ --header 'Sec-Fetch-Mode: cors' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Host: localhost:9966' \ + --header 'Connection: keep-alive' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Origin: http://localhost:4200' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Host: localhost:9967' \ - --header 'Connection: keep-alive' \ + --header 'Accept: application/json, text/plain, */*' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-18.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-18.yaml new file mode 100755 index 00000000..484ea1db --- /dev/null +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-18.yaml @@ -0,0 +1,71 @@ +# Generated by Keploy (0.11.22) +version: api.keploy.io/v1beta1 +kind: Http +name: test-18 +spec: + metadata: {} + req: + method: OPTIONS + proto_major: 1 + proto_minor: 1 + url: http://localhost:9966/petclinic/api/vets/1 + header: + Accept: '*/*' + Accept-Encoding: gzip, deflate, br, zstd + Accept-Language: en-US,en;q=0.9 + Access-Control-Request-Method: DELETE + Connection: keep-alive + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Fetch-Dest: empty + Sec-Fetch-Mode: cors + Sec-Fetch-Site: same-site + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: "" + timestamp: 2025-04-11T09:59:50.543606673Z + resp: + status_code: 200 + header: + Access-Control-Allow-Methods: DELETE + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: errors, content-type + Access-Control-Max-Age: "1800" + Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH + Cache-Control: no-cache, no-store, max-age=0, must-revalidate + Connection: keep-alive + Content-Length: "0" + Date: Fri, 11 Apr 2025 09:59:50 GMT + Expires: "0" + Keep-Alive: timeout=60 + Pragma: no-cache + Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers + X-Content-Type-Options: nosniff + X-Frame-Options: DENY + X-Xss-Protection: "0" + body: "" + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-04-11T09:59:50.706813456Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1744365590 +curl: | + curl --request OPTIONS \ + --url http://localhost:9966/petclinic/api/vets/1 \ + --header 'Origin: http://localhost:4200' \ + --header 'Sec-Fetch-Mode: cors' \ + --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/135.0.0.0 Safari/537.36' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Access-Control-Request-Method: DELETE' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Host: localhost:9966' \ + --header 'Accept: */*' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-3.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-19.yaml similarity index 56% rename from spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-3.yaml rename to spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-19.yaml index 498895ad..dfa883a0 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-3.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-19.yaml @@ -1,42 +1,39 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http -name: test-3 +name: test-19 spec: metadata: {} req: - method: GET + method: DELETE proto_major: 1 proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners?lastName=John%20Doe - url_params: - lastName: John Doe + url: http://localhost:9966/petclinic/api/vets/1 header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2023-12-09T06:32:43.676771286Z + timestamp: 2025-04-11T09:59:50.553304356Z resp: - status_code: 404 + status_code: 204 header: Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive - Content-Length: "0" - Date: Sat, 09 Dec 2023 06:32:43 GMT + Date: Fri, 11 Apr 2025 09:59:50 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -45,31 +42,30 @@ spec: X-Frame-Options: DENY X-Xss-Protection: "0" body: "" - body_type: "" - status_message: "" + status_message: No Content proto_major: 0 proto_minor: 0 - timestamp: 2023-12-09T06:32:45.708746469Z + timestamp: 2025-04-11T09:59:51.522157137Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1702103565 + created: 1744365591 curl: | - curl --request GET \ - --url http://localhost:9967/petclinic/api/owners?lastName=John%20Doe \ - --header 'Connection: keep-alive' \ - --header 'Host: localhost:9967' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ + curl --request DELETE \ + --url http://localhost:9966/petclinic/api/vets/1 \ --header 'Sec-Fetch-Dest: empty' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ - --header 'Origin: http://localhost:59555' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Host: localhost:9966' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Origin: http://localhost:4200' \ --header 'Sec-Fetch-Mode: cors' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Connection: keep-alive' \ --header 'Accept: application/json, text/plain, */*' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Referer: http://localhost:59555/' \ - --header 'Sec-Fetch-Site: same-site' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-2.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-2.yaml index ca5472a8..4d1e54f3 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-2.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-2.yaml @@ -1,77 +1,77 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-2 spec: metadata: {} req: - method: OPTIONS + method: POST proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes + url: http://localhost:9966/petclinic/api/owners header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br + Accept: application/json, text/plain, */* + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 - Access-Control-Request-Headers: content-type - Access-Control-Request-Method: POST Connection: keep-alive + Content-Length: "117" + Content-Type: application/json Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' + Sec-Ch-Ua-Mobile: ?0 + Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 2024-02-12T16:54:26.80205576+05:30 - host: "" + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: '{"id":null,"firstName":"firstname","lastName":"lastname","address":"banglore","city":"banglore","telephone":"123456"}' + timestamp: 2025-04-11T09:59:07.461362731Z resp: - status_code: 200 + status_code: 201 header: - Access-Control-Allow-Headers: content-type - Access-Control-Allow-Methods: POST Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type - Access-Control-Max-Age: "1800" - Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:26 GMT + Content-Type: application/json + Date: Fri, 11 Apr 2025 09:59:07 GMT Expires: "0" Keep-Alive: timeout=60 + Location: /api/owners/1 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" + body: '{"firstName":"firstname","lastName":"lastname","address":"banglore","city":"banglore","telephone":"123456","id":1,"pets":[]}' + status_message: Created proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:26.851164574+05:30 + timestamp: 2025-04-11T09:59:07.69556275Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] - header.Access-Control-Max-Age: [] header.Date: [] - created: 1707737066 -curl: | - curl --request OPTIONS \ - --url http://localhost:9966/petclinic/api/pettypes \ - --header 'Host: localhost:9966' \ - --header 'Origin: http://localhost:4200' \ - --header 'Access-Control-Request-Method: POST' \ + created: 1744365547 +curl: |- + curl --request POST \ + --url http://localhost:9966/petclinic/api/owners \ --header 'Referer: http://localhost:4200/' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Access-Control-Request-Headers: content-type' \ - --header 'Accept: */*' \ + --header 'Accept: application/json, text/plain, */*' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Host: localhost:9966' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ --header 'Sec-Fetch-Mode: cors' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'Sec-Fetch-Site: same-site' \ --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Origin: http://localhost:4200' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Content-Type: application/json' \ --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/121.0.0.0 Safari/537.36' \ + --data "{\"id\":null,\"firstName\":\"firstname\",\"lastName\":\"lastname\",\"address\":\"banglore\",\"city\":\"banglore\",\"telephone\":\"123456\"}" +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-4.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-20.yaml similarity index 57% rename from spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-4.yaml rename to spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-20.yaml index 82c1aeab..15c8a553 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-4.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-20.yaml @@ -1,42 +1,40 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http -name: test-4 +name: test-20 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners?lastName=John - url_params: - lastName: John + url: http://localhost:9966/petclinic/api/pettypes header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2023-12-09T06:32:51.559909719Z + timestamp: 2025-04-11T09:59:51.473443653Z resp: - status_code: 404 + status_code: 200 header: Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive - Content-Length: "0" - Date: Sat, 09 Dec 2023 06:32:51 GMT + Content-Type: application/json + Date: Fri, 11 Apr 2025 09:59:50 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -44,32 +42,31 @@ spec: X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" + body: '[{"name":"newone","id":1}]' + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2023-12-09T06:32:55.477292923Z + timestamp: 2025-04-11T09:59:52.9601993Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1702103575 + created: 1744365592 curl: | curl --request GET \ - --url http://localhost:9967/petclinic/api/owners?lastName=John \ + --url http://localhost:9966/petclinic/api/pettypes \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Sec-Fetch-Site: same-site' \ --header 'Accept-Language: en-US,en;q=0.9' \ --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Origin: http://localhost:59555' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Host: localhost:9967' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Connection: keep-alive' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'Sec-Fetch-Mode: cors' \ --header 'Accept: application/json, text/plain, */*' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Referer: http://localhost:59555/' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ - --header 'Connection: keep-alive' \ + --header 'Origin: http://localhost:4200' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Host: localhost:9966' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-21.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-21.yaml new file mode 100755 index 00000000..e57d51c6 --- /dev/null +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-21.yaml @@ -0,0 +1,71 @@ +# Generated by Keploy (0.11.22) +version: api.keploy.io/v1beta1 +kind: Http +name: test-21 +spec: + metadata: {} + req: + method: OPTIONS + proto_major: 1 + proto_minor: 1 + url: http://localhost:9966/petclinic/api/pettypes/1 + header: + Accept: '*/*' + Accept-Encoding: gzip, deflate, br, zstd + Accept-Language: en-US,en;q=0.9 + Access-Control-Request-Method: DELETE + Connection: keep-alive + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Fetch-Dest: empty + Sec-Fetch-Mode: cors + Sec-Fetch-Site: same-site + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: "" + timestamp: 2025-04-11T09:59:52.860354088Z + resp: + status_code: 200 + header: + Access-Control-Allow-Methods: DELETE + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: errors, content-type + Access-Control-Max-Age: "1800" + Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH + Cache-Control: no-cache, no-store, max-age=0, must-revalidate + Connection: keep-alive + Content-Length: "0" + Date: Fri, 11 Apr 2025 09:59:52 GMT + Expires: "0" + Keep-Alive: timeout=60 + Pragma: no-cache + Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers + X-Content-Type-Options: nosniff + X-Frame-Options: DENY + X-Xss-Protection: "0" + body: "" + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-04-11T09:59:53.061322757Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1744365593 +curl: | + curl --request OPTIONS \ + --url http://localhost:9966/petclinic/api/pettypes/1 \ + --header 'Accept: */*' \ + --header 'Access-Control-Request-Method: DELETE' \ + --header 'Connection: keep-alive' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Origin: http://localhost:4200' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Host: localhost:9966' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-22.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-22.yaml new file mode 100755 index 00000000..a3353424 --- /dev/null +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-22.yaml @@ -0,0 +1,71 @@ +# Generated by Keploy (0.11.22) +version: api.keploy.io/v1beta1 +kind: Http +name: test-22 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9966/petclinic/api/pettypes/1 + header: + Accept: application/json, text/plain, */* + Accept-Encoding: gzip, deflate, br, zstd + Accept-Language: en-US,en;q=0.9 + Connection: keep-alive + Host: localhost:9966 + Origin: http://localhost:4200 + Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' + Sec-Ch-Ua-Mobile: ?0 + Sec-Ch-Ua-Platform: '"macOS"' + Sec-Fetch-Dest: empty + Sec-Fetch-Mode: cors + Sec-Fetch-Site: same-site + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: "" + timestamp: 2025-04-11T09:59:52.869500786Z + resp: + status_code: 204 + header: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: errors, content-type + Cache-Control: no-cache, no-store, max-age=0, must-revalidate + Connection: keep-alive + Date: Fri, 11 Apr 2025 09:59:52 GMT + Expires: "0" + Keep-Alive: timeout=60 + Pragma: no-cache + Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers + X-Content-Type-Options: nosniff + X-Frame-Options: DENY + X-Xss-Protection: "0" + body: "" + status_message: No Content + proto_major: 0 + proto_minor: 0 + timestamp: 2025-04-11T09:59:55.001186565Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1744365595 +curl: | + curl --request DELETE \ + --url http://localhost:9966/petclinic/api/pettypes/1 \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Accept: application/json, text/plain, */*' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Host: localhost:9966' \ + --header 'Connection: keep-alive' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Origin: http://localhost:4200' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-3.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-3.yaml index 55227fe2..bcfcd8ff 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-3.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-3.yaml @@ -1,79 +1,72 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-3 spec: metadata: {} req: - method: POST + method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes + url: http://localhost:9966/petclinic/api/owners header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Content-Length: "24" - Content-Type: application/json Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Cat"}' - body_type: "" - timestamp: 2024-02-12T16:54:26.826941684+05:30 - host: "" + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: "" + timestamp: 2025-04-11T09:59:07.635986162Z resp: - status_code: 201 + status_code: 200 header: Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:26 GMT + Date: Fri, 11 Apr 2025 09:59:07 GMT Expires: "0" Keep-Alive: timeout=60 - Location: /api/pettypes/1 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '{"name":"Cat","id":1}' - body_type: "" - status_message: "" + body: '[{"firstName":"firstname","lastName":"lastname","address":"banglore","city":"banglore","telephone":"123456","id":1,"pets":[]}]' + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:28.97927723+05:30 + timestamp: 2025-04-11T09:59:09.737129027Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737068 -curl: |- - curl --request POST \ - --url http://localhost:9966/petclinic/api/pettypes \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ + created: 1744365549 +curl: | + curl --request GET \ + --url http://localhost:9966/petclinic/api/owners \ --header 'Sec-Fetch-Mode: cors' \ - --header 'Sec-Fetch-Dest: empty' \ - --header 'Referer: http://localhost:4200/' \ - --header 'Host: localhost:9966' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ --header 'Origin: http://localhost:4200' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ - --header 'Content-Type: application/json' \ - --header 'Sec-Fetch-Site: same-site' \ + --header 'Referer: http://localhost:4200/' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Accept-Language: en-US,en;q=0.9' \ --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Accept: application/json, text/plain, */*' \ --header 'Connection: keep-alive' \ - --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Host: localhost:9966' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --data '{"id":null,"name":"Cat"}' +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-4.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-4.yaml index 871f49f7..a1240918 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-4.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-4.yaml @@ -1,79 +1,74 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-4 spec: metadata: {} req: - method: POST + method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes + url: http://localhost:9966/petclinic/api/owners?lastName=lastname + url_params: + lastName: lastname header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive - Content-Length: "24" - Content-Type: application/json Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Dog"}' - body_type: "" - timestamp: 2024-02-12T16:54:33.686615323+05:30 - host: "" + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: "" + timestamp: 2025-04-11T09:59:11.779423169Z resp: - status_code: 201 + status_code: 200 header: Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:33 GMT + Date: Fri, 11 Apr 2025 09:59:11 GMT Expires: "0" Keep-Alive: timeout=60 - Location: /api/pettypes/2 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '{"name":"Dog","id":2}' - body_type: "" - status_message: "" + body: '[{"firstName":"firstname","lastName":"lastname","address":"banglore","city":"banglore","telephone":"123456","id":1,"pets":[]}]' + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:35.764932377+05:30 + timestamp: 2025-04-11T09:59:13.919701223Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737075 -curl: |- - curl --request POST \ - --url http://localhost:9966/petclinic/api/pettypes \ - --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Content-Type: application/json' \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ - --header 'Accept-Encoding: gzip, deflate, br' \ + created: 1744365553 +curl: | + curl --request GET \ + --url http://localhost:9966/petclinic/api/owners?lastName=lastname \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'Origin: http://localhost:4200' \ --header 'Referer: http://localhost:4200/' \ - --header 'Sec-Fetch-Mode: cors' \ --header 'Host: localhost:9966' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --data '{"id":null,"name":"Dog"}' + --header 'Accept: application/json, text/plain, */*' \ + --header 'Origin: http://localhost:4200' \ + --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/135.0.0.0 Safari/537.36' \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Accept-Language: en-US,en;q=0.9' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-5.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-5.yaml index 3a9d18f6..82f493e8 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-5.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-5.yaml @@ -1,44 +1,40 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-5 spec: metadata: {} req: - method: OPTIONS + method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners + url: http://localhost:9966/petclinic/api/specialties header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br + Accept: application/json, text/plain, */* + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 - Access-Control-Request-Headers: content-type - Access-Control-Request-Method: POST Connection: keep-alive Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' + Sec-Ch-Ua-Mobile: ?0 + Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2024-02-12T16:54:48.102990237+05:30 - host: "" + timestamp: 2025-04-11T09:59:14.050537772Z resp: - status_code: 200 + status_code: 404 header: - Access-Control-Allow-Headers: content-type - Access-Control-Allow-Methods: POST Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type - Access-Control-Max-Age: "1800" - Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:48 GMT + Date: Fri, 11 Apr 2025 09:59:14 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -47,31 +43,30 @@ spec: X-Frame-Options: DENY X-Xss-Protection: "0" body: "" - body_type: "" - status_message: "" + status_message: Not Found proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:48.20324542+05:30 + timestamp: 2025-04-11T09:59:16.160808726Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] - header.Access-Control-Max-Age: [] header.Date: [] - created: 1707737088 + created: 1744365556 curl: | - curl --request OPTIONS \ - --url http://localhost:9966/petclinic/api/owners \ + curl --request GET \ + --url http://localhost:9966/petclinic/api/specialties \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Origin: http://localhost:4200' \ --header 'Host: localhost:9966' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Sec-Fetch-Dest: empty' \ --header 'Referer: http://localhost:4200/' \ - --header 'Origin: http://localhost:4200' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Accept: */*' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ --header 'Connection: keep-alive' \ - --header 'Access-Control-Request-Method: POST' \ + --header 'Accept: application/json, text/plain, */*' \ --header 'Sec-Fetch-Site: same-site' \ --header 'Sec-Fetch-Mode: cors' \ - --header 'Access-Control-Request-Headers: content-type' \ + --header 'Accept-Language: en-US,en;q=0.9' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-6.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-6.yaml index 2203b12c..12c0973d 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-6.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-6.yaml @@ -1,80 +1,74 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-6 spec: metadata: {} req: - method: POST + method: OPTIONS proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners + url: http://localhost:9966/petclinic/api/vets header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept: '*/*' + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 + Access-Control-Request-Headers: content-type + Access-Control-Request-Method: POST Connection: keep-alive - Content-Length: "138" - Content-Type: application/json Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678"}' - body_type: "" - timestamp: 2024-02-12T16:54:48.120284304+05:30 - host: "" + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: "" + timestamp: 2025-04-11T09:59:18.588518253Z resp: - status_code: 201 + status_code: 200 header: + Access-Control-Allow-Headers: content-type + Access-Control-Allow-Methods: POST Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type + Access-Control-Max-Age: "1800" + Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:48 GMT + Content-Length: "0" + Date: Fri, 11 Apr 2025 09:59:18 GMT Expires: "0" Keep-Alive: timeout=60 - Location: /api/owners/1 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}' - body_type: "" - status_message: "" + body: "" + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:48.313252372+05:30 + timestamp: 2025-04-11T09:59:18.613494068Z objects: [] assertions: noise: - body.city: [] - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737088 -curl: |- - curl --request POST \ - --url http://localhost:9966/petclinic/api/owners \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Accept-Language: en-US,en;q=0.9' \ + created: 1744365558 +curl: | + curl --request OPTIONS \ + --url http://localhost:9966/petclinic/api/vets \ --header 'Referer: http://localhost:4200/' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Host: localhost:9966' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Sec-Fetch-Mode: cors' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ --header 'Origin: http://localhost:4200' \ - --header 'Connection: keep-alive' \ --header 'Sec-Fetch-Dest: empty' \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Content-Type: application/json' \ - --data '{"id":null,"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678"}' + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Accept: */*' \ + --header 'Access-Control-Request-Headers: content-type' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Host: localhost:9966' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Connection: keep-alive' \ + --header 'Sec-Fetch-Mode: cors' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Access-Control-Request-Method: POST' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-7.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-7.yaml index 3ced1a14..f9115043 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-7.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-7.yaml @@ -1,75 +1,77 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-7 spec: metadata: {} req: - method: GET + method: POST proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners + url: http://localhost:9966/petclinic/api/vets header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive + Content-Length: "74" + Content-Type: application/json Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 2024-02-12T16:54:48.182128885+05:30 - host: "" + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 + body: '{"id":null,"firstName":"firstname","lastName":"lastname","specialties":[]}' + timestamp: 2025-04-11T09:59:18.595511703Z resp: - status_code: 200 + status_code: 201 header: Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:48 GMT + Date: Fri, 11 Apr 2025 09:59:18 GMT Expires: "0" Keep-Alive: timeout=60 + Location: /api/vets/1 Pragma: no-cache Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" + body: '{"firstName":"firstname","lastName":"lastname","specialties":[],"id":1}' + status_message: Created proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:50.234674212+05:30 + timestamp: 2025-04-11T09:59:18.715560864Z objects: [] assertions: noise: - body.city: [] - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737090 -curl: | - curl --request GET \ - --url http://localhost:9966/petclinic/api/owners \ - --header 'Origin: http://localhost:4200' \ - --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Referer: http://localhost:4200/' \ - --header 'Accept-Encoding: gzip, deflate, br' \ + created: 1744365558 +curl: |- + curl --request POST \ + --url http://localhost:9966/petclinic/api/vets \ --header 'Sec-Fetch-Mode: cors' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ - --header 'Sec-Fetch-Dest: empty' \ --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/121.0.0.0 Safari/537.36' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Accept: application/json, text/plain, */*' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Origin: http://localhost:4200' \ --header 'Sec-Fetch-Site: same-site' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ --header 'Host: localhost:9966' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Accept: application/json, text/plain, */*' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Content-Type: application/json' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --data "{\"id\":null,\"firstName\":\"firstname\",\"lastName\":\"lastname\",\"specialties\":[]}" +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-8.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-8.yaml index 7c7beb55..466f6b3b 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-8.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-8.yaml @@ -1,3 +1,4 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-8 @@ -7,35 +8,33 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/specialties + url: http://localhost:9966/petclinic/api/vets header: Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 Connection: keep-alive Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' Sec-Ch-Ua-Mobile: ?0 Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2024-02-12T16:54:55.7971436+05:30 - host: "" + timestamp: 2025-04-11T09:59:18.651590794Z resp: - status_code: 404 + status_code: 200 header: Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:55 GMT + Content-Type: application/json + Date: Fri, 11 Apr 2025 09:59:18 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -43,32 +42,31 @@ spec: X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" + body: '[{"firstName":"firstname","lastName":"lastname","specialties":[],"id":1}]' + status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:54:57.919287332+05:30 + timestamp: 2025-04-11T09:59:20.044098945Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] header.Date: [] - created: 1707737097 + created: 1744365560 curl: | curl --request GET \ - --url http://localhost:9966/petclinic/api/specialties \ - --header 'Origin: http://localhost:4200' \ + --url http://localhost:9966/petclinic/api/vets \ --header 'Accept: application/json, text/plain, */*' \ - --header 'Sec-Fetch-Dest: empty' \ --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Ch-Ua: "Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Accept-Language: en-US,en;q=0.9' \ --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/121.0.0.0 Safari/537.36' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Origin: http://localhost:4200' \ --header 'Referer: http://localhost:4200/' \ - --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Sec-Fetch-Site: same-site' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Sec-Fetch-Dest: empty' \ --header 'Host: localhost:9966' \ --header 'Sec-Fetch-Mode: cors' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-9.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-9.yaml index 821ee705..7e24654e 100755 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-9.yaml +++ b/spring-petclinic/spring-petclinic-rest/keploy/test-set-0/tests/test-9.yaml @@ -1,44 +1,40 @@ +# Generated by Keploy (0.11.22) version: api.keploy.io/v1beta1 kind: Http name: test-9 spec: metadata: {} req: - method: OPTIONS + method: GET proto_major: 1 proto_minor: 1 - url: http://localhost:9966/petclinic/api/vets + url: http://localhost:9966/petclinic/api/pettypes header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br + Accept: application/json, text/plain, */* + Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9 - Access-Control-Request-Headers: content-type - Access-Control-Request-Method: POST Connection: keep-alive Host: localhost:9966 Origin: http://localhost:4200 Referer: http://localhost:4200/ + Sec-Ch-Ua: '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' + Sec-Ch-Ua-Mobile: ?0 + Sec-Ch-Ua-Platform: '"macOS"' Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 body: "" - body_type: "" - timestamp: 2024-02-12T16:55:00.520581279+05:30 - host: "" + timestamp: 2025-04-11T09:59:20.00346954Z resp: - status_code: 200 + status_code: 404 header: - Access-Control-Allow-Headers: content-type - Access-Control-Allow-Methods: POST Access-Control-Allow-Origin: '*' Access-Control-Expose-Headers: errors, content-type - Access-Control-Max-Age: "1800" - Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH Cache-Control: no-cache, no-store, max-age=0, must-revalidate Connection: keep-alive Content-Length: "0" - Date: Mon, 12 Feb 2024 11:25:00 GMT + Date: Fri, 11 Apr 2025 09:59:20 GMT Expires: "0" Keep-Alive: timeout=60 Pragma: no-cache @@ -47,31 +43,30 @@ spec: X-Frame-Options: DENY X-Xss-Protection: "0" body: "" - body_type: "" - status_message: "" + status_message: Not Found proto_major: 0 proto_minor: 0 - timestamp: 2024-02-12T16:55:00.556908826+05:30 + timestamp: 2025-04-11T09:59:22.082057982Z objects: [] assertions: noise: - header.Access-Control-Expose-Headers: [] - header.Access-Control-Max-Age: [] header.Date: [] - created: 1707737100 + created: 1744365562 curl: | - curl --request OPTIONS \ - --url http://localhost:9966/petclinic/api/vets \ - --header 'Host: localhost:9966' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Access-Control-Request-Headers: content-type' \ - --header 'Accept: */*' \ - --header 'Sec-Fetch-Dest: empty' \ + curl --request GET \ + --url http://localhost:9966/petclinic/api/pettypes \ + --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \ + --header 'Accept: application/json, text/plain, */*' \ --header 'Origin: http://localhost:4200' \ - --header 'Referer: http://localhost:4200/' \ - --header 'Access-Control-Request-Method: POST' \ - --header 'Connection: keep-alive' \ + --header 'Sec-Ch-Ua-Mobile: ?0' \ + --header 'Sec-Fetch-Dest: empty' \ + --header 'Sec-Ch-Ua-Platform: "macOS"' \ + --header 'Accept-Encoding: gzip, deflate, br, zstd' \ --header 'Sec-Fetch-Site: same-site' \ + --header 'Referer: http://localhost:4200/' \ + --header 'Sec-Ch-Ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \ + --header 'Host: localhost:9966' \ --header 'Accept-Language: en-US,en;q=0.9' \ + --header 'Connection: keep-alive' \ --header 'Sec-Fetch-Mode: cors' \ +respType: json diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/mocks.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/mocks.yaml deleted file mode 100755 index 4c761585..00000000 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/mocks.yaml +++ /dev/null @@ -1,5161 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.771125504Z - restimestampmock: 2023-12-09T06:32:23.7726654Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:23.786112006Z - restimestampmock: 2023-12-09T06:32:23.786169418Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 48, 45, 58, 41, 61, 96, 35, 64, 113, 110, 85, 36, 62, 95, 67, 70, 40, 54, 97, 63, 67, 63, 85, 45, 106, 99, 122, 53, 109, 43, 114, 48, 88, 112, 49, 90, 53, 114, 50, 74, 100, 105, 67, 79, 111, 55, 83, 57, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:23.79221618Z - restimestampmock: 2023-12-09T06:32:23.792234803Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 80, 77, 69, 47, 65, 98, 114, 89, 112, 116, 43, 109, 70, 76, 73, 53, 101, 70, 52, 83, 110, 119, 113, 101, 122, 47, 108, 57, 119, 90, 83, 47, 55, 111, 79, 100, 69, 57, 88, 102, 90, 80, 81, 61]} - backend_key_data: - process_id: 136 - secret_key: 520318139 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.816159712Z - restimestampmock: 2023-12-09T06:32:23.816201792Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.828364102Z - restimestampmock: 2023-12-09T06:32:23.828382017Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.829145903Z - restimestampmock: 2023-12-09T06:32:23.829165318Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - max_rows: 1 - parse: - - name: "" - query: "" - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", "n", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.835570339Z - restimestampmock: 2023-12-09T06:32:23.835582962Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: SHOW TRANSACTION ISOLATION LEVEL - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAAuAAF0cmFuc2FjdGlvbl9pc29sYXRpb24AAAAAAAAAAAAAGf///////wAARAAAABgAAQAAAA5yZWFkIGNvbW1pdHRlZEMAAAAJU0hPVwBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 72 - - 79 - - 87 - data_row: [{row_values: [read committed]}, {row_values: [read committed]}, {row_values: [read committed]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 114, 97, 110, 115, 97, 99, 116, 105, 111, 110, 95, 105, 115, 111, 108, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.836227527Z - restimestampmock: 2023-12-09T06:32:23.836244358Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select string_agg(word, ',') from pg_catalog.pg_get_keywords() where word <> ALL ('{a,abs,absolute,action,ada,add,admin,after,all,allocate,alter,always,and,any,are,array,as,asc,asensitive,assertion,assignment,asymmetric,at,atomic,attribute,attributes,authorization,avg,before,begin,bernoulli,between,bigint,binary,blob,boolean,both,breadth,by,c,call,called,cardinality,cascade,cascaded,case,cast,catalog,catalog_name,ceil,ceiling,chain,char,char_length,character,character_length,character_set_catalog,character_set_name,character_set_schema,characteristics,characters,check,checked,class_origin,clob,close,coalesce,cobol,code_units,collate,collation,collation_catalog,collation_name,collation_schema,collect,column,column_name,command_function,command_function_code,commit,committed,condition,condition_number,connect,connection_name,constraint,constraint_catalog,constraint_name,constraint_schema,constraints,constructors,contains,continue,convert,corr,corresponding,count,covar_pop,covar_samp,create,cross,cube,cume_dist,current,current_collation,current_date,current_default_transform_group,current_path,current_role,current_time,current_timestamp,current_transform_group_for_type,current_user,cursor,cursor_name,cycle,data,date,datetime_interval_code,datetime_interval_precision,day,deallocate,dec,decimal,declare,default,defaults,deferrable,deferred,defined,definer,degree,delete,dense_rank,depth,deref,derived,desc,describe,descriptor,deterministic,diagnostics,disconnect,dispatch,distinct,domain,double,drop,dynamic,dynamic_function,dynamic_function_code,each,element,else,end,end-exec,equals,escape,every,except,exception,exclude,excluding,exec,execute,exists,exp,external,extract,false,fetch,filter,final,first,float,floor,following,for,foreign,fortran,found,free,from,full,function,fusion,g,general,get,global,go,goto,grant,granted,group,grouping,having,hierarchy,hold,hour,identity,immediate,implementation,in,including,increment,indicator,initially,inner,inout,input,insensitive,insert,instance,instantiable,int,integer,intersect,intersection,interval,into,invoker,is,isolation,join,k,key,key_member,key_type,language,large,last,lateral,leading,left,length,level,like,ln,local,localtime,localtimestamp,locator,lower,m,map,match,matched,max,maxvalue,member,merge,message_length,message_octet_length,message_text,method,min,minute,minvalue,mod,modifies,module,month,more,multiset,mumps,name,names,national,natural,nchar,nclob,nesting,new,next,no,none,normalize,normalized,not,"null",nullable,nullif,nulls,number,numeric,object,octet_length,octets,of,old,on,only,open,option,options,or,order,ordering,ordinality,others,out,outer,output,over,overlaps,overlay,overriding,pad,parameter,parameter_mode,parameter_name,parameter_ordinal_position,parameter_specific_catalog,parameter_specific_name,parameter_specific_schema,partial,partition,pascal,path,percent_rank,percentile_cont,percentile_disc,placing,pli,position,power,preceding,precision,prepare,preserve,primary,prior,privileges,procedure,public,range,rank,read,reads,real,recursive,ref,references,referencing,regr_avgx,regr_avgy,regr_count,regr_intercept,regr_r2,regr_slope,regr_sxx,regr_sxy,regr_syy,relative,release,repeatable,restart,result,return,returned_cardinality,returned_length,returned_octet_length,returned_sqlstate,returns,revoke,right,role,rollback,rollup,routine,routine_catalog,routine_name,routine_schema,row,row_count,row_number,rows,savepoint,scale,schema,schema_name,scope_catalog,scope_name,scope_schema,scroll,search,second,section,security,select,self,sensitive,sequence,serializable,server_name,session,session_user,set,sets,similar,simple,size,smallint,some,source,space,specific,specific_name,specifictype,sql,sqlexception,sqlstate,sqlwarning,sqrt,start,state,statement,static,stddev_pop,stddev_samp,structure,style,subclass_origin,submultiset,substring,sum,symmetric,system,system_user,table,table_name,tablesample,temporary,then,ties,time,timestamp,timezone_hour,timezone_minute,to,top_level_count,trailing,transaction,transaction_active,transactions_committed,transactions_rolled_back,transform,transforms,translate,translation,treat,trigger,trigger_catalog,trigger_name,trigger_schema,trim,true,type,uescape,unbounded,uncommitted,under,union,unique,unknown,unnamed,unnest,update,upper,usage,user,user_defined_type_catalog,user_defined_type_code,user_defined_type_name,user_defined_type_schema,using,value,values,var_pop,var_samp,varchar,varying,view,when,whenever,where,width_bucket,window,with,within,without,work,write,year,zone}'::text[]) - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAAjAAFzdHJpbmdfYWdnAAAAAAAAAAAAABn///////8AAEQAAAWgAAEAAAWWYWJvcnQsYWNjZXNzLGFnZ3JlZ2F0ZSxhbHNvLGFuYWx5c2UsYW5hbHl6ZSxhdHRhY2gsYmFja3dhcmQsYml0LGNhY2hlLGNoZWNrcG9pbnQsY2xhc3MsY2x1c3Rlcixjb2x1bW5zLGNvbW1lbnQsY29tbWVudHMsY29tcHJlc3Npb24sY29uY3VycmVudGx5LGNvbmZpZ3VyYXRpb24sY29uZmxpY3QsY29ubmVjdGlvbixjb250ZW50LGNvbnZlcnNpb24sY29weSxjb3N0LGNzdixjdXJyZW50X2NhdGFsb2csY3VycmVudF9zY2hlbWEsZGF0YWJhc2UsZGVsaW1pdGVyLGRlbGltaXRlcnMsZGVwZW5kcyxkZXRhY2gsZGljdGlvbmFyeSxkaXNhYmxlLGRpc2NhcmQsZG8sZG9jdW1lbnQsZW5hYmxlLGVuY29kaW5nLGVuY3J5cHRlZCxlbnVtLGV2ZW50LGV4Y2x1c2l2ZSxleHBsYWluLGV4cHJlc3Npb24sZXh0ZW5zaW9uLGZhbWlseSxmaW5hbGl6ZSxmb3JjZSxmb3J3YXJkLGZyZWV6ZSxmdW5jdGlvbnMsZ2VuZXJhdGVkLGdyZWF0ZXN0LGdyb3VwcyxoYW5kbGVyLGhlYWRlcixpZixpbGlrZSxpbW11dGFibGUsaW1wbGljaXQsaW1wb3J0LGluY2x1ZGUsaW5kZXgsaW5kZXhlcyxpbmhlcml0LGluaGVyaXRzLGlubGluZSxpbnN0ZWFkLGlzbnVsbCxsYWJlbCxsZWFrcHJvb2YsbGVhc3QsbGltaXQsbGlzdGVuLGxvYWQsbG9jYXRpb24sbG9jayxsb2NrZWQsbG9nZ2VkLG1hcHBpbmcsbWF0ZXJpYWxpemVkLG1vZGUsbW92ZSxuZmMsbmZkLG5ma2MsbmZrZCxub3RoaW5nLG5vdGlmeSxub3RudWxsLG5vd2FpdCxvZmYsb2Zmc2V0LG9pZHMsb3BlcmF0b3Isb3duZWQsb3duZXIscGFyYWxsZWwscGFyc2VyLHBhc3NpbmcscGFzc3dvcmQscGxhbnMscG9saWN5LHByZXBhcmVkLHByb2NlZHVyYWwscHJvY2VkdXJlcyxwcm9ncmFtLHB1YmxpY2F0aW9uLHF1b3RlLHJlYXNzaWduLHJlY2hlY2sscmVmcmVzaCxyZWluZGV4LHJlbmFtZSxyZXBsYWNlLHJlcGxpY2EscmVzZXQscmVzdHJpY3QscmV0dXJuaW5nLHJvdXRpbmVzLHJ1bGUsc2NoZW1hcyxzZXF1ZW5jZXMsc2VydmVyLHNldG9mLHNoYXJlLHNob3csc2tpcCxzbmFwc2hvdCxzdGFibGUsc3RhbmRhbG9uZSxzdGF0aXN0aWNzLHN0ZGluLHN0ZG91dCxzdG9yYWdlLHN0b3JlZCxzdHJpY3Qsc3RyaXAsc3Vic2NyaXB0aW9uLHN1cHBvcnQsc3lzaWQsdGFibGVzLHRhYmxlc3BhY2UsdGVtcCx0ZW1wbGF0ZSx0ZXh0LHRydW5jYXRlLHRydXN0ZWQsdHlwZXMsdW5lbmNyeXB0ZWQsdW5saXN0ZW4sdW5sb2dnZWQsdW50aWwsdmFjdXVtLHZhbGlkLHZhbGlkYXRlLHZhbGlkYXRvcix2YXJpYWRpYyx2ZXJib3NlLHZlcnNpb24sdmlld3Msdm9sYXRpbGUsd2hpdGVzcGFjZSx3cmFwcGVyLHhtbCx4bWxhdHRyaWJ1dGVzLHhtbGNvbmNhdCx4bWxlbGVtZW50LHhtbGV4aXN0cyx4bWxmb3Jlc3QseG1sbmFtZXNwYWNlcyx4bWxwYXJzZSx4bWxwaSx4bWxyb290LHhtbHNlcmlhbGl6ZSx4bWx0YWJsZSx5ZXNDAAAADVNFTEVDVCAxAFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ['abort,access,aggregate,also,analyse,analyze,attach,backward,bit,cache,checkpoint,class,cluster,columns,comment,comments,compression,concurrently,configuration,conflict,connection,content,conversion,copy,cost,csv,current_catalog,current_schema,database,delimiter,delimiters,depends,detach,dictionary,disable,discard,do,document,enable,encoding,encrypted,enum,event,exclusive,explain,expression,extension,family,finalize,force,forward,freeze,functions,generated,greatest,groups,handler,header,if,ilike,immutable,implicit,import,include,index,indexes,inherit,inherits,inline,instead,isnull,label,leakproof,least,limit,listen,load,location,lock,locked,logged,mapping,materialized,mode,move,nfc,nfd,nfkc,nfkd,nothing,notify,notnull,nowait,off,offset,oids,operator,owned,owner,parallel,parser,passing,password,plans,policy,prepared,procedural,procedures,program,publication,quote,reassign,recheck,refresh,reindex,rename,replace,replica,reset,restrict,returning,routines,rule,schemas,sequences,server,setof,share,show,skip,snapshot,stable,standalone,statistics,stdin,stdout,storage,stored,strict,strip,subscription,support,sysid,tables,tablespace,temp,template,text,truncate,trusted,types,unencrypted,unlisten,unlogged,until,vacuum,valid,validate,validator,variadic,verbose,version,views,volatile,whitespace,wrapper,xml,xmlattributes,xmlconcat,xmlelement,xmlexists,xmlforest,xmlnamespaces,xmlparse,xmlpi,xmlroot,xmlserialize,xmltable,yes']}, {row_values: ['abort,access,aggregate,also,analyse,analyze,attach,backward,bit,cache,checkpoint,class,cluster,columns,comment,comments,compression,concurrently,configuration,conflict,connection,content,conversion,copy,cost,csv,current_catalog,current_schema,database,delimiter,delimiters,depends,detach,dictionary,disable,discard,do,document,enable,encoding,encrypted,enum,event,exclusive,explain,expression,extension,family,finalize,force,forward,freeze,functions,generated,greatest,groups,handler,header,if,ilike,immutable,implicit,import,include,index,indexes,inherit,inherits,inline,instead,isnull,label,leakproof,least,limit,listen,load,location,lock,locked,logged,mapping,materialized,mode,move,nfc,nfd,nfkc,nfkd,nothing,notify,notnull,nowait,off,offset,oids,operator,owned,owner,parallel,parser,passing,password,plans,policy,prepared,procedural,procedures,program,publication,quote,reassign,recheck,refresh,reindex,rename,replace,replica,reset,restrict,returning,routines,rule,schemas,sequences,server,setof,share,show,skip,snapshot,stable,standalone,statistics,stdin,stdout,storage,stored,strict,strip,subscription,support,sysid,tables,tablespace,temp,template,text,truncate,trusted,types,unencrypted,unlisten,unlogged,until,vacuum,valid,validate,validator,variadic,verbose,version,views,volatile,whitespace,wrapper,xml,xmlattributes,xmlconcat,xmlelement,xmlexists,xmlforest,xmlnamespaces,xmlparse,xmlpi,xmlroot,xmlserialize,xmltable,yes']}, {row_values: ['abort,access,aggregate,also,analyse,analyze,attach,backward,bit,cache,checkpoint,class,cluster,columns,comment,comments,compression,concurrently,configuration,conflict,connection,content,conversion,copy,cost,csv,current_catalog,current_schema,database,delimiter,delimiters,depends,detach,dictionary,disable,discard,do,document,enable,encoding,encrypted,enum,event,exclusive,explain,expression,extension,family,finalize,force,forward,freeze,functions,generated,greatest,groups,handler,header,if,ilike,immutable,implicit,import,include,index,indexes,inherit,inherits,inline,instead,isnull,label,leakproof,least,limit,listen,load,location,lock,locked,logged,mapping,materialized,mode,move,nfc,nfd,nfkc,nfkd,nothing,notify,notnull,nowait,off,offset,oids,operator,owned,owner,parallel,parser,passing,password,plans,policy,prepared,procedural,procedures,program,publication,quote,reassign,recheck,refresh,reindex,rename,replace,replica,reset,restrict,returning,routines,rule,schemas,sequences,server,setof,share,show,skip,snapshot,stable,standalone,statistics,stdin,stdout,storage,stored,strict,strip,subscription,support,sysid,tables,tablespace,temp,template,text,truncate,trusted,types,unencrypted,unlisten,unlogged,until,vacuum,valid,validate,validator,variadic,verbose,version,views,volatile,whitespace,wrapper,xml,xmlattributes,xmlconcat,xmlelement,xmlexists,xmlforest,xmlnamespaces,xmlparse,xmlpi,xmlroot,xmlserialize,xmltable,yes']}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [115, 116, 114, 105, 110, 103, 95, 97, 103, 103], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.851269565Z - restimestampmock: 2023-12-09T06:32:23.851307062Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select current_schema() - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAAnAAFjdXJyZW50X3NjaGVtYQAAAAAAAAAAAAATAED/////AABEAAAAEAABAAAABnB1YmxpY0MAAAANU0VMRUNUIDEAWgAAAAVJ - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: [public]}, {row_values: [public]}, {row_values: [public]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [99, 117, 114, 114, 101, 110, 116, 95, 115, 99, 104, 101, 109, 97], table_oid: 0, table_attribute_number: 0, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.858026011Z - restimestampmock: 2023-12-09T06:32:23.858055633Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.941846892Z - restimestampmock: 2023-12-09T06:32:23.942536452Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:23.943979566Z - restimestampmock: 2023-12-09T06:32:23.944036769Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 76, 60, 115, 125, 58, 73, 117, 120, 85, 35, 51, 126, 42, 61, 82, 33, 41, 102, 125, 52, 40, 107, 46, 106, 82, 85, 90, 88, 79, 121, 98, 118, 88, 55, 67, 101, 71, 51, 80, 115, 105, 97, 48, 83, 76, 50, 82, 105, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:23.944543679Z - restimestampmock: 2023-12-09T06:32:23.944558678Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 67, 53, 119, 113, 72, 88, 81, 85, 88, 71, 48, 69, 105, 114, 83, 97, 87, 84, 89, 87, 83, 120, 105, 90, 76, 116, 51, 110, 104, 54, 118, 50, 117, 121, 75, 70, 77, 101, 75, 81, 53, 85, 115, 61]} - backend_key_data: - process_id: 137 - secret_key: 2060526429 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.956701824Z - restimestampmock: 2023-12-09T06:32:23.956744778Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.957715311Z - restimestampmock: 2023-12-09T06:32:23.957728268Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.970442693Z - restimestampmock: 2023-12-09T06:32:23.971161084Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:23.972681941Z - restimestampmock: 2023-12-09T06:32:23.972697356Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 40, 35, 52, 126, 95, 68, 102, 78, 113, 118, 63, 99, 96, 102, 43, 63, 114, 108, 69, 78, 97, 73, 33, 70, 49, 114, 120, 78, 57, 66, 68, 119, 76, 85, 82, 114, 51, 114, 118, 102, 69, 67, 77, 122, 52, 54, 57, 66, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:23.973284509Z - restimestampmock: 2023-12-09T06:32:23.973293341Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 90, 119, 105, 122, 70, 85, 82, 101, 84, 84, 97, 118, 103, 97, 102, 71, 71, 49, 67, 98, 57, 102, 68, 108, 90, 113, 118, 87, 53, 121, 67, 97, 76, 119, 86, 97, 114, 87, 98, 51, 69, 49, 48, 61]} - backend_key_data: - process_id: 138 - secret_key: 443359134 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.986915639Z - restimestampmock: 2023-12-09T06:32:23.986948136Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.989355159Z - restimestampmock: 2023-12-09T06:32:23.989369949Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.001534426Z - restimestampmock: 2023-12-09T06:32:24.002280814Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:24.003818044Z - restimestampmock: 2023-12-09T06:32:24.003831001Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 105, 118, 105, 117, 111, 42, 33, 43, 43, 39, 123, 37, 102, 113, 38, 109, 85, 72, 100, 115, 46, 52, 40, 111, 113, 49, 74, 100, 87, 43, 50, 111, 117, 66, 73, 51, 75, 111, 80, 87, 119, 52, 86, 67, 118, 77, 56, 78, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:24.004614968Z - restimestampmock: 2023-12-09T06:32:24.004624884Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 51, 89, 75, 114, 73, 83, 79, 74, 114, 99, 118, 118, 111, 75, 52, 57, 53, 119, 118, 52, 111, 102, 121, 105, 121, 43, 49, 70, 54, 100, 74, 49, 53, 98, 114, 100, 49, 84, 102, 66, 51, 53, 89, 61]} - backend_key_data: - process_id: 139 - secret_key: 1872493743 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.015985437Z - restimestampmock: 2023-12-09T06:32:24.01604014Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.017655446Z - restimestampmock: 2023-12-09T06:32:24.017667819Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.030025319Z - restimestampmock: 2023-12-09T06:32:24.031409147Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:24.033311051Z - restimestampmock: 2023-12-09T06:32:24.033331632Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 39, 105, 86, 112, 111, 113, 113, 118, 117, 40, 85, 114, 77, 105, 115, 94, 50, 75, 47, 78, 49, 87, 120, 120, 85, 108, 47, 74, 68, 47, 69, 78, 71, 109, 102, 67, 112, 75, 50, 117, 55, 75, 100, 55, 85, 43, 113, 43, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:24.033838084Z - restimestampmock: 2023-12-09T06:32:24.033859791Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 72, 55, 78, 119, 66, 53, 83, 83, 107, 82, 80, 69, 104, 121, 76, 51, 100, 74, 106, 112, 56, 67, 112, 75, 105, 79, 76, 67, 75, 111, 86, 100, 121, 104, 105, 112, 47, 81, 55, 109, 77, 75, 65, 61]} - backend_key_data: - process_id: 140 - secret_key: 3129465085 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.045982771Z - restimestampmock: 2023-12-09T06:32:24.046022851Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.047243277Z - restimestampmock: 2023-12-09T06:32:24.047264775Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.05971135Z - restimestampmock: 2023-12-09T06:32:24.061433521Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:24.063719221Z - restimestampmock: 2023-12-09T06:32:24.063734137Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 80, 126, 90, 69, 117, 33, 100, 106, 116, 59, 113, 117, 42, 36, 94, 48, 46, 59, 118, 49, 78, 40, 120, 54, 65, 83, 55, 79, 69, 48, 52, 70, 50, 73, 90, 122, 105, 49, 115, 71, 88, 102, 77, 87, 70, 107, 114, 87, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:24.064302041Z - restimestampmock: 2023-12-09T06:32:24.064311541Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 48, 75, 100, 98, 122, 55, 77, 107, 84, 86, 114, 73, 88, 98, 49, 109, 81, 77, 47, 86, 106, 69, 52, 100, 120, 78, 51, 83, 52, 48, 109, 57, 90, 48, 56, 97, 90, 75, 81, 85, 120, 89, 107, 61]} - backend_key_data: - process_id: 141 - secret_key: 993988222 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.076767948Z - restimestampmock: 2023-12-09T06:32:24.076806653Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.078640354Z - restimestampmock: 2023-12-09T06:32:24.078651353Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.090538523Z - restimestampmock: 2023-12-09T06:32:24.093446915Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:24.095233204Z - restimestampmock: 2023-12-09T06:32:24.095248078Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 68, 103, 41, 75, 118, 43, 85, 116, 108, 82, 90, 122, 80, 85, 85, 33, 46, 51, 63, 93, 37, 65, 38, 104, 112, 113, 51, 116, 88, 56, 101, 43, 116, 71, 72, 81, 106, 49, 104, 103, 118, 99, 76, 89, 103, 76, 88, 68, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:24.095848146Z - restimestampmock: 2023-12-09T06:32:24.095857937Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 116, 111, 55, 67, 75, 121, 43, 121, 55, 105, 79, 118, 104, 116, 80, 80, 87, 71, 80, 79, 106, 89, 57, 113, 101, 121, 88, 104, 110, 70, 56, 121, 66, 108, 90, 113, 85, 100, 54, 102, 114, 70, 81, 61]} - backend_key_data: - process_id: 142 - secret_key: 953107123 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.108905414Z - restimestampmock: 2023-12-09T06:32:24.108999946Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.113609303Z - restimestampmock: 2023-12-09T06:32:24.113623843Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.126769435Z - restimestampmock: 2023-12-09T06:32:24.128079645Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:24.129907931Z - restimestampmock: 2023-12-09T06:32:24.129923054Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 71, 112, 42, 77, 114, 58, 107, 77, 95, 49, 103, 42, 71, 76, 97, 117, 111, 52, 113, 116, 63, 60, 35, 117, 54, 109, 47, 43, 47, 72, 72, 99, 84, 107, 83, 115, 113, 106, 67, 53, 43, 53, 76, 56, 90, 56, 89, 106, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:24.130535705Z - restimestampmock: 2023-12-09T06:32:24.130546079Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 115, 55, 48, 75, 101, 111, 79, 70, 111, 76, 102, 86, 67, 122, 65, 102, 71, 51, 107, 55, 103, 116, 97, 105, 86, 107, 83, 87, 56, 71, 74, 53, 100, 49, 118, 78, 121, 109, 107, 116, 78, 111, 81, 61]} - backend_key_data: - process_id: 143 - secret_key: 1311255259 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.148110545Z - restimestampmock: 2023-12-09T06:32:24.14818833Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.150056403Z - restimestampmock: 2023-12-09T06:32:24.150071235Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.162793784Z - restimestampmock: 2023-12-09T06:32:24.163548046Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:24.165432243Z - restimestampmock: 2023-12-09T06:32:24.165448784Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 38, 61, 64, 97, 72, 110, 117, 88, 41, 109, 114, 89, 123, 102, 116, 126, 52, 124, 54, 122, 63, 43, 71, 59, 54, 112, 87, 79, 85, 103, 109, 48, 104, 43, 111, 73, 82, 121, 82, 97, 75, 55, 112, 100, 51, 88, 121, 67, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:24.166146301Z - restimestampmock: 2023-12-09T06:32:24.166157592Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 113, 52, 48, 102, 99, 74, 50, 66, 71, 120, 100, 121, 121, 101, 84, 100, 105, 86, 103, 122, 54, 66, 49, 67, 112, 100, 90, 76, 110, 99, 69, 105, 103, 78, 75, 87, 100, 72, 54, 114, 56, 103, 77, 61]} - backend_key_data: - process_id: 144 - secret_key: 2757008633 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.183825299Z - restimestampmock: 2023-12-09T06:32:24.183866003Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.184705965Z - restimestampmock: 2023-12-09T06:32:24.184716423Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - length: 8 - payload: AAAACATSFi8= - ssl_request: - is_ssl: true - auth_type: 0 - postgresresponses: - - payload: Tg== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.198480165Z - restimestampmock: 2023-12-09T06:32:24.198788261Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - identifier: StartupRequest - payload: AAAAdAADAAB1c2VyAHBldGNsaW5pYwBkYXRhYmFzZQBwZXRjbGluaWMAY2xpZW50X2VuY29kaW5nAFVURjgARGF0ZVN0eWxlAElTTwBUaW1lWm9uZQBFdGMvVVRDAGV4dHJhX2Zsb2F0X2RpZ2l0cwAyAAA= - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl: - auth_mechanisms: - - SCRAM-SHA-256 - msg_type: 82 - auth_type: 10 - reqtimestampmock: 2023-12-09T06:32:24.200321324Z - restimestampmock: 2023-12-09T06:32:24.20033774Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - password_message: - password: SCRAM-SHA-256 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_continue: {data: [114, 61, 50, 71, 109, 77, 92, 109, 85, 111, 59, 96, 81, 33, 43, 53, 96, 90, 102, 48, 113, 109, 33, 105, 73, 35, 99, 122, 79, 116, 50, 121, 70, 52, 73, 81, 102, 81, 71, 84, 85, 116, 72, 106, 56, 47, 68, 99, 74, 104, 44, 115, 61, 121, 70, 108, 72, 88, 74, 56, 111, 118, 99, 101, 117, 76, 116, 86, 112, 53, 48, 65, 54, 47, 65, 61, 61, 44, 105, 61, 52, 48, 57, 54]} - msg_type: 82 - auth_type: 11 - reqtimestampmock: 2023-12-09T06:32:24.202548989Z - restimestampmock: 2023-12-09T06:32:24.202567112Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [p] - identifier: ClientRequest - length: 8 - msg_type: 112 - auth_type: 0 - postgresresponses: - - header: [R, R, S, S, S, S, S, S, S, S, S, S, S, S, S, K, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - authentication_sasl_final: {data: [118, 61, 43, 81, 108, 89, 82, 111, 76, 100, 72, 113, 75, 55, 71, 90, 107, 76, 79, 66, 54, 119, 97, 57, 83, 57, 118, 90, 74, 49, 57, 119, 49, 111, 79, 56, 54, 101, 87, 79, 52, 110, 116, 71, 56, 61]} - backend_key_data: - process_id: 145 - secret_key: 3364992848 - parameter_status: - - name: application_name - value: "" - - name: client_encoding - value: UTF8 - - name: DateStyle - value: ISO, MDY - - name: default_transaction_read_only - value: "off" - - name: in_hot_standby - value: "off" - - name: integer_datetimes - value: "on" - - name: IntervalStyle - value: postgres - - name: is_superuser - value: "on" - - name: server_encoding - value: UTF8 - - name: server_version - value: 15.2 (Debian 15.2-1.pgdg110+1) - - name: session_authorization - value: petclinic - - name: standard_conforming_strings - value: "on" - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - - name: TimeZone - value: Etc/UTC - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.213424879Z - restimestampmock: 2023-12-09T06:32:24.213467833Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET extra_float_digits = 3 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.214394204Z - restimestampmock: 2023-12-09T06:32:24.214411661Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select current_schema() - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAAnAAFjdXJyZW50X3NjaGVtYQAAAAAAAAAAAAATAED/////AABEAAAAEAABAAAABnB1YmxpY0MAAAANU0VMRUNUIDEAWgAAAAVJ - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: [public]}, {row_values: [public]}, {row_values: [public]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [99, 117, 114, 114, 101, 110, 116, 95, 115, 99, 104, 101, 109, 97], table_oid: 0, table_attribute_number: 0, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.858840351Z - restimestampmock: 2023-12-09T06:32:23.858855724Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select * from information_schema.sequences - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, D, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAGOAAxzZXF1ZW5jZV9jYXRhbG9nAAAANDUAAQAAABMAQP////8AAHNlcXVlbmNlX3NjaGVtYQAAADQ1AAIAAAATAED/////AABzZXF1ZW5jZV9uYW1lAAAANDUAAwAAABMAQP////8AAGRhdGFfdHlwZQAAADQ1AAQAAAQT////////AABudW1lcmljX3ByZWNpc2lvbgAAADQ1AAUAAAAXAAT/////AABudW1lcmljX3ByZWNpc2lvbl9yYWRpeAAAADQ1AAYAAAAXAAT/////AABudW1lcmljX3NjYWxlAAAANDUABwAAABcABP////8AAHN0YXJ0X3ZhbHVlAAAANDUACAAABBP///////8AAG1pbmltdW1fdmFsdWUAAAA0NQAJAAAEE////////wAAbWF4aW11bV92YWx1ZQAAADQ1AAoAAAQT////////AABpbmNyZW1lbnQAAAA0NQALAAAEE////////wAAY3ljbGVfb3B0aW9uAAAANDUADAAABBP//wAAAAcAAEQAAABsAAwAAAAJcGV0Y2xpbmljAAAABnB1YmxpYwAAAA1vd25lcnNfaWRfc2VxAAAAB2ludGVnZXIAAAACMzIAAAABMgAAAAEwAAAAATEAAAABMQAAAAoyMTQ3NDgzNjQ3AAAAATEAAAACTk9EAAAAagAMAAAACXBldGNsaW5pYwAAAAZwdWJsaWMAAAALcGV0c19pZF9zZXEAAAAHaW50ZWdlcgAAAAIzMgAAAAEyAAAAATAAAAABMQAAAAExAAAACjIxNDc0ODM2NDcAAAABMQAAAAJOT0QAAABrAAwAAAAJcGV0Y2xpbmljAAAABnB1YmxpYwAAAAxyb2xlc19pZF9zZXEAAAAHaW50ZWdlcgAAAAIzMgAAAAEyAAAAATAAAAABMQAAAAExAAAACjIxNDc0ODM2NDcAAAABMQAAAAJOT0QAAABxAAwAAAAJcGV0Y2xpbmljAAAABnB1YmxpYwAAABJzcGVjaWFsdGllc19pZF9zZXEAAAAHaW50ZWdlcgAAAAIzMgAAAAEyAAAAATAAAAABMQAAAAExAAAACjIxNDc0ODM2NDcAAAABMQAAAAJOT0QAAABrAAwAAAAJcGV0Y2xpbmljAAAABnB1YmxpYwAAAAx0eXBlc19pZF9zZXEAAAAHaW50ZWdlcgAAAAIzMgAAAAEyAAAAATAAAAABMQAAAAExAAAACjIxNDc0ODM2NDcAAAABMQAAAAJOT0QAAABqAAwAAAAJcGV0Y2xpbmljAAAABnB1YmxpYwAAAAt2ZXRzX2lkX3NlcQAAAAdpbnRlZ2VyAAAAAjMyAAAAATIAAAABMAAAAAExAAAAATEAAAAKMjE0NzQ4MzY0NwAAAAExAAAAAk5PRAAAAGwADAAAAAlwZXRjbGluaWMAAAAGcHVibGljAAAADXZpc2l0c19pZF9zZXEAAAAHaW50ZWdlcgAAAAIzMgAAAAEyAAAAATAAAAABMQAAAAExAAAACjIxNDc0ODM2NDcAAAABMQAAAAJOT0MAAAANU0VMRUNUIDcAWgAAAAVJ - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 55 - data_row: [{row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, roles_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, roles_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, specialties_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, roles_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, specialties_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, types_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, roles_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, specialties_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, types_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, vets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, roles_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, specialties_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, types_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, vets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, visits_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, roles_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, specialties_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, types_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, vets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, visits_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}, {row_values: [petclinic, public, owners_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, pets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, roles_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, specialties_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, types_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, vets_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO", petclinic, public, visits_id_seq, integer, "32", "2", "0", "1", "1", "2147483647", "1", "NO"]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [115, 101, 113, 117, 101, 110, 99, 101, 95, 99, 97, 116, 97, 108, 111, 103], table_oid: 13365, table_attribute_number: 1, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [115, 101, 113, 117, 101, 110, 99, 101, 95, 115, 99, 104, 101, 109, 97], table_oid: 13365, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [115, 101, 113, 117, 101, 110, 99, 101, 95, 110, 97, 109, 101], table_oid: 13365, table_attribute_number: 3, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [100, 97, 116, 97, 95, 116, 121, 112, 101], table_oid: 13365, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [110, 117, 109, 101, 114, 105, 99, 95, 112, 114, 101, 99, 105, 115, 105, 111, 110], table_oid: 13365, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 117, 109, 101, 114, 105, 99, 95, 112, 114, 101, 99, 105, 115, 105, 111, 110, 95, 114, 97, 100, 105, 120], table_oid: 13365, table_attribute_number: 6, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 117, 109, 101, 114, 105, 99, 95, 115, 99, 97, 108, 101], table_oid: 13365, table_attribute_number: 7, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [115, 116, 97, 114, 116, 95, 118, 97, 108, 117, 101], table_oid: 13365, table_attribute_number: 8, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [109, 105, 110, 105, 109, 117, 109, 95, 118, 97, 108, 117, 101], table_oid: 13365, table_attribute_number: 9, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [109, 97, 120, 105, 109, 117, 109, 95, 118, 97, 108, 117, 101], table_oid: 13365, table_attribute_number: 10, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [105, 110, 99, 114, 101, 109, 101, 110, 116], table_oid: 13365, table_attribute_number: 11, data_type_oid: 1043, data_type_size: -1, type_modifier: -1, format: 0}, {name: [99, 121, 99, 108, 101, 95, 111, 112, 116, 105, 111, 110], table_oid: 13365, table_attribute_number: 12, data_type_oid: 1043, data_type_size: -1, type_modifier: 7, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.282297043Z - restimestampmock: 2023-12-09T06:32:24.282378452Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''%'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, D, D, D, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAE1AAp0YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AAB0YWJsZV90eXBlAAAAAAAAAAAAABn///////8AAHJlbWFya3MAAAAKMQAEAAAAGf///////wAAdHlwZV9jYXQAAAAAAAAAAAAAGf///////wAAdHlwZV9zY2hlbQAAAAAAAAAAAAAZ////////AAB0eXBlX25hbWUAAAAAAAAAAAAAGf///////wAAc2VsZl9yZWZlcmVuY2luZ19jb2xfbmFtZQAAAAAAAAAAAAAZ////////AAByZWZfZ2VuZXJhdGlvbgAAAAAAAAAAAAAZ////////AABEAAAAPwAK/////wAAAAZwdWJsaWMAAAAGb3duZXJzAAAABVRBQkxF/////wAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAD0ACv////8AAAAGcHVibGljAAAABHBldHMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAPgAK/////wAAAAZwdWJsaWMAAAAFcm9sZXMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAK/////wAAAAZwdWJsaWMAAAALc3BlY2lhbHRpZXMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAPgAK/////wAAAAZwdWJsaWMAAAAFdHlwZXMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAPgAK/////wAAAAZwdWJsaWMAAAAFdXNlcnMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABEAAAASAAK/////wAAAAZwdWJsaWMAAAAPdmV0X3NwZWNpYWx0aWVzAAAABVRBQkxF/////wAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAD0ACv////8AAAAGcHVibGljAAAABHZldHMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAPwAK/////wAAAAZwdWJsaWMAAAAGdmlzaXRzAAAABVRBQkxF/////wAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAA1TRUxFQ1QgOQBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 57 - data_row: [{row_values: ["", public, owners, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", "", "", public, types, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", "", "", public, types, TABLE, "", "", "", "", "", "", "", public, users, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", "", "", public, types, TABLE, "", "", "", "", "", "", "", public, users, TABLE, "", "", "", "", "", "", "", public, vet_specialties, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", "", "", public, types, TABLE, "", "", "", "", "", "", "", public, users, TABLE, "", "", "", "", "", "", "", public, vet_specialties, TABLE, "", "", "", "", "", "", "", public, vets, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", "", "", public, types, TABLE, "", "", "", "", "", "", "", public, users, TABLE, "", "", "", "", "", "", "", public, vet_specialties, TABLE, "", "", "", "", "", "", "", public, vets, TABLE, "", "", "", "", "", "", "", public, visits, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", "", "", public, types, TABLE, "", "", "", "", "", "", "", public, users, TABLE, "", "", "", "", "", "", "", public, vet_specialties, TABLE, "", "", "", "", "", "", "", public, vets, TABLE, "", "", "", "", "", "", "", public, visits, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", "", "", public, pets, TABLE, "", "", "", "", "", "", "", public, roles, TABLE, "", "", "", "", "", "", "", public, specialties, TABLE, "", "", "", "", "", "", "", public, types, TABLE, "", "", "", "", "", "", "", public, users, TABLE, "", "", "", "", "", "", "", public, vet_specialties, TABLE, "", "", "", "", "", "", "", public, vets, TABLE, "", "", "", "", "", "", "", public, visits, TABLE, "", "", "", "", "", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.28987212Z - restimestampmock: 2023-12-09T06:32:24.289992108Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT * FROM (SELECT n.nspname,c.relname,a.attname,a.atttypid,a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull) AS attnotnull,a.atttypmod,a.attlen,t.typtypmod,row_number() OVER (PARTITION BY a.attrelid ORDER BY a.attnum) AS attnum, nullif(a.attidentity, '''') as attidentity,nullif(a.attgenerated, '''') as attgenerated,pg_catalog.pg_get_expr(def.adbin, def.adrelid) AS adsrc,dsc.description,t.typbasetype,t.typtype FROM pg_catalog.pg_namespace n JOIN pg_catalog.pg_class c ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (a.attrelid=c.oid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef def ON (a.attrelid=def.adrelid AND a.attnum = def.adnum) LEFT JOIN pg_catalog.pg_description dsc ON (c.oid=dsc.objoid AND a.attnum = dsc.objsubid) LEFT JOIN pg_catalog.pg_class dc ON (dc.oid=dsc.classoid AND dc.relname=''pg_class'') LEFT JOIN pg_catalog.pg_namespace dn ON (dc.relnamespace=dn.oid AND dn.nspname=''pg_catalog'') WHERE c.relkind in (''r'',''p'',''v'',''f'',''m'') and a.attnum > 0 AND NOT a.attisdropped AND n.nspname LIKE ''public'') c WHERE true AND attname LIKE ''%'' ORDER BY nspname,c.relname,attnum ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAGhAA9uc3BuYW1lAAAACjcAAgAAABMAQP////8AAHJlbG5hbWUAAAAE6wACAAAAEwBA/////wAAYXR0bmFtZQAAAAThAAIAAAATAED/////AABhdHR0eXBpZAAAAAThAAMAAAAaAAT/////AABhdHRub3RudWxsAAAAAAAAAAAAABAAAf////8AAGF0dHR5cG1vZAAAAAThAAkAAAAXAAT/////AABhdHRsZW4AAAAE4QAFAAAAFQAC/////wAAdHlwdHlwbW9kAAAABN8AGwAAABcABP////8AAGF0dG51bQAAAAAAAAAAAAAUAAj/////AABhdHRpZGVudGl0eQAAAAAAAAAAAAASAAH/////AABhdHRnZW5lcmF0ZWQAAAAAAAAAAAAAEgAB/////wAAYWRzcmMAAAAAAAAAAAAAGf///////wAAZGVzY3JpcHRpb24AAAAKMQAEAAAAGf///////wAAdHlwYmFzZXR5cGUAAAAE3wAaAAAAGgAE/////wAAdHlwdHlwZQAAAATfAAcAAAASAAH/////AABEAAAAfQAPAAAABnB1YmxpYwAAAAZvd25lcnMAAAACaWQAAAACMjMAAAABdAAAAAItMQAAAAE0AAAAAi0xAAAAATH//////////wAAACJuZXh0dmFsKCdvd25lcnNfaWRfc2VxJzo6cmVnY2xhc3Mp/////wAAAAEwAAAAAWJEAAAAZwAPAAAABnB1YmxpYwAAAAZvd25lcnMAAAAKZmlyc3RfbmFtZQAAAAQxMDQzAAAAAWYAAAADMjU5AAAAAi0xAAAAAi0xAAAAATL/////////////////////AAAAATAAAAABYkQAAABmAA8AAAAGcHVibGljAAAABm93bmVycwAAAAlsYXN0X25hbWUAAAAEMTA0MwAAAAFmAAAAAzI1OQAAAAItMQAAAAItMQAAAAEz/////////////////////wAAAAEwAAAAAWJEAAAAZAAPAAAABnB1YmxpYwAAAAZvd25lcnMAAAAHYWRkcmVzcwAAAAQxMDQzAAAAAWYAAAADMjU5AAAAAi0xAAAAAi0xAAAAATT/////////////////////AAAAATAAAAABYkQAAABhAA8AAAAGcHVibGljAAAABm93bmVycwAAAARjaXR5AAAABDEwNDMAAAABZgAAAAMyNTkAAAACLTEAAAACLTEAAAABNf////////////////////8AAAABMAAAAAFiRAAAAGYADwAAAAZwdWJsaWMAAAAGb3duZXJzAAAACXRlbGVwaG9uZQAAAAQxMDQzAAAAAWYAAAADMjU5AAAAAi0xAAAAAi0xAAAAATb/////////////////////AAAAATAAAAABYkQAAAB5AA8AAAAGcHVibGljAAAABHBldHMAAAACaWQAAAACMjMAAAABdAAAAAItMQAAAAE0AAAAAi0xAAAAATH//////////wAAACBuZXh0dmFsKCdwZXRzX2lkX3NlcSc6OnJlZ2NsYXNzKf////8AAAABMAAAAAFiRAAAAF8ADwAAAAZwdWJsaWMAAAAEcGV0cwAAAARuYW1lAAAABDEwNDMAAAABZgAAAAMyNTkAAAACLTEAAAACLTEAAAABMv////////////////////8AAAABMAAAAAFiRAAAAGMADwAAAAZwdWJsaWMAAAAEcGV0cwAAAApiaXJ0aF9kYXRlAAAABDEwODIAAAABZgAAAAItMQAAAAE0AAAAAi0xAAAAATP/////////////////////AAAAATAAAAABYkQAAABfAA8AAAAGcHVibGljAAAABHBldHMAAAAIb3duZXJfaWQAAAACMjMAAAABZgAAAAItMQAAAAE0AAAAAi0xAAAAATT/////////////////////AAAAATAAAAABYkQAAABeAA8AAAAGcHVibGljAAAABHBldHMAAAAHdHlwZV9pZAAAAAIyMwAAAAFmAAAAAi0xAAAAATQAAAACLTEAAAABNf////////////////////8AAAABMAAAAAFiRAAAAHsADwAAAAZwdWJsaWMAAAAFcm9sZXMAAAACaWQAAAACMjMAAAABdAAAAAItMQAAAAE0AAAAAi0xAAAAATH//////////wAAACFuZXh0dmFsKCdyb2xlc19pZF9zZXEnOjpyZWdjbGFzcyn/////AAAAATAAAAABYkQAAABgAA8AAAAGcHVibGljAAAABXJvbGVzAAAABHJvbGUAAAAEMTA0MwAAAAFmAAAAAzI1OQAAAAItMQAAAAItMQAAAAEy/////////////////////wAAAAEwAAAAAWJEAAAAZAAPAAAABnB1YmxpYwAAAAVyb2xlcwAAAAh1c2VybmFtZQAAAAQxMDQzAAAAAWYAAAADMjU5AAAAAi0xAAAAAi0xAAAAATP/////////////////////AAAAATAAAAABYkQAAACHAA8AAAAGcHVibGljAAAAC3NwZWNpYWx0aWVzAAAAAmlkAAAAAjIzAAAAAXQAAAACLTEAAAABNAAAAAItMQAAAAEx//////////8AAAAnbmV4dHZhbCgnc3BlY2lhbHRpZXNfaWRfc2VxJzo6cmVnY2xhc3Mp/////wAAAAEwAAAAAWJEAAAAZgAPAAAABnB1YmxpYwAAAAtzcGVjaWFsdGllcwAAAARuYW1lAAAABDEwNDMAAAABZgAAAAMyNTkAAAACLTEAAAACLTEAAAABMv////////////////////8AAAABMAAAAAFiRAAAAHsADwAAAAZwdWJsaWMAAAAFdHlwZXMAAAACaWQAAAACMjMAAAABdAAAAAItMQAAAAE0AAAAAi0xAAAAATH//////////wAAACFuZXh0dmFsKCd0eXBlc19pZF9zZXEnOjpyZWdjbGFzcyn/////AAAAATAAAAABYkQAAABgAA8AAAAGcHVibGljAAAABXR5cGVzAAAABG5hbWUAAAAEMTA0MwAAAAFmAAAAAzI1OQAAAAItMQAAAAItMQAAAAEy/////////////////////wAAAAEwAAAAAWJEAAAAZAAPAAAABnB1YmxpYwAAAAV1c2VycwAAAAh1c2VybmFtZQAAAAQxMDQzAAAAAXQAAAADMjU5AAAAAi0xAAAAAi0xAAAAATH/////////////////////AAAAATAAAAABYkQAAABfAA8AAAAGcHVibGljAAAABXVzZXJzAAAAB2VuYWJsZWQAAAACMTYAAAABZgAAAAItMQAAAAExAAAAAi0xAAAAATL/////////////////////AAAAATAAAAABYkQAAABkAA8AAAAGcHVibGljAAAABXVzZXJzAAAACHBhc3N3b3JkAAAABDEwNDMAAAABZgAAAAMyNTkAAAACLTEAAAACLTEAAAABM/////////////////////8AAAABMAAAAAFiRAAAAGgADwAAAAZwdWJsaWMAAAAPdmV0X3NwZWNpYWx0aWVzAAAABnZldF9pZAAAAAIyMwAAAAF0AAAAAi0xAAAAATQAAAACLTEAAAABMf////////////////////8AAAABMAAAAAFiRAAAAG4ADwAAAAZwdWJsaWMAAAAPdmV0X3NwZWNpYWx0aWVzAAAADHNwZWNpYWx0eV9pZAAAAAIyMwAAAAF0AAAAAi0xAAAAATQAAAACLTEAAAABMv////////////////////8AAAABMAAAAAFiRAAAAHkADwAAAAZwdWJsaWMAAAAEdmV0cwAAAAJpZAAAAAIyMwAAAAF0AAAAAi0xAAAAATQAAAACLTEAAAABMf//////////AAAAIG5leHR2YWwoJ3ZldHNfaWRfc2VxJzo6cmVnY2xhc3Mp/////wAAAAEwAAAAAWJEAAAAZQAPAAAABnB1YmxpYwAAAAR2ZXRzAAAACmZpcnN0X25hbWUAAAAEMTA0MwAAAAFmAAAAAzI1OQAAAAItMQAAAAItMQAAAAEy/////////////////////wAAAAEwAAAAAWJEAAAAZAAPAAAABnB1YmxpYwAAAAR2ZXRzAAAACWxhc3RfbmFtZQAAAAQxMDQzAAAAAWYAAAADMjU5AAAAAi0xAAAAAi0xAAAAATP/////////////////////AAAAATAAAAABYkQAAAB9AA8AAAAGcHVibGljAAAABnZpc2l0cwAAAAJpZAAAAAIyMwAAAAF0AAAAAi0xAAAAATQAAAACLTEAAAABMf//////////AAAAIm5leHR2YWwoJ3Zpc2l0c19pZF9zZXEnOjpyZWdjbGFzcyn/////AAAAATAAAAABYkQAAABlAA8AAAAGcHVibGljAAAABnZpc2l0cwAAAAp2aXNpdF9kYXRlAAAABDEwODIAAAABZgAAAAItMQAAAAE0AAAAAi0xAAAAATL/////////////////////AAAAATAAAAABYkQAAABoAA8AAAAGcHVibGljAAAABnZpc2l0cwAAAAtkZXNjcmlwdGlvbgAAAAQxMDQzAAAAAWYAAAADMjU5AAAAAi0xAAAAAi0xAAAAATP/////////////////////AAAAATAAAAABYkQAAABfAA8AAAAGcHVibGljAAAABnZpc2l0cwAAAAZwZXRfaWQAAAACMjMAAAABZgAAAAItMQAAAAE0AAAAAi0xAAAAATT/////////////////////AAAAATAAAAABYkMAAAAOU0VMRUNUIDMwAFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 51 - - 48 - data_row: [{row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, vets, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, vets, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''visits_id_seq''::regclass)', "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, vets, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''visits_id_seq''::regclass)', "", "0", b, public, visits, visit_date, "1082", f, "-1", "4", "-1", "2", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, vets, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''visits_id_seq''::regclass)', "", "0", b, public, visits, visit_date, "1082", f, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, visits, description, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, vets, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''visits_id_seq''::regclass)', "", "0", b, public, visits, visit_date, "1082", f, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, visits, description, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, pet_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, vets, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''visits_id_seq''::regclass)', "", "0", b, public, visits, visit_date, "1082", f, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, visits, description, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, pet_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b]}, {row_values: [public, owners, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''owners_id_seq''::regclass)', "", "0", b, public, owners, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, owners, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, owners, address, "1043", f, "259", "-1", "-1", "4", "", "", "", "", "0", b, public, owners, city, "1043", f, "259", "-1", "-1", "5", "", "", "", "", "0", b, public, owners, telephone, "1043", f, "259", "-1", "-1", "6", "", "", "", "", "0", b, public, pets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''pets_id_seq''::regclass)', "", "0", b, public, pets, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, pets, birth_date, "1082", f, "-1", "4", "-1", "3", "", "", "", "", "0", b, public, pets, owner_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b, public, pets, type_id, "23", f, "-1", "4", "-1", "5", "", "", "", "", "0", b, public, roles, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''roles_id_seq''::regclass)', "", "0", b, public, roles, role, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, roles, username, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, specialties, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''specialties_id_seq''::regclass)', "", "0", b, public, specialties, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, types, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''types_id_seq''::regclass)', "", "0", b, public, types, name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, users, username, "1043", t, "259", "-1", "-1", "1", "", "", "", "", "0", b, public, users, enabled, "16", f, "-1", "1", "-1", "2", "", "", "", "", "0", b, public, users, password, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, vet_specialties, vet_id, "23", t, "-1", "4", "-1", "1", "", "", "", "", "0", b, public, vet_specialties, specialty_id, "23", t, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, vets, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''vets_id_seq''::regclass)', "", "0", b, public, vets, first_name, "1043", f, "259", "-1", "-1", "2", "", "", "", "", "0", b, public, vets, last_name, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, id, "23", t, "-1", "4", "-1", "1", "", "", 'nextval(''visits_id_seq''::regclass)', "", "0", b, public, visits, visit_date, "1082", f, "-1", "4", "-1", "2", "", "", "", "", "0", b, public, visits, description, "1043", f, "259", "-1", "-1", "3", "", "", "", "", "0", b, public, visits, pet_id, "23", f, "-1", "4", "-1", "4", "", "", "", "", "0", b]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [97, 116, 116, 116, 121, 112, 105, 100], table_oid: 1249, table_attribute_number: 3, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 111, 116, 110, 117, 108, 108], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [97, 116, 116, 116, 121, 112, 109, 111, 100], table_oid: 1249, table_attribute_number: 9, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 108, 101, 110], table_oid: 1249, table_attribute_number: 5, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [116, 121, 112, 116, 121, 112, 109, 111, 100], table_oid: 1247, table_attribute_number: 27, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 20, data_type_size: 8, type_modifier: -1, format: 0}, {name: [97, 116, 116, 105, 100, 101, 110, 116, 105, 116, 121], table_oid: 0, table_attribute_number: 0, data_type_oid: 18, data_type_size: 1, type_modifier: -1, format: 0}, {name: [97, 116, 116, 103, 101, 110, 101, 114, 97, 116, 101, 100], table_oid: 0, table_attribute_number: 0, data_type_oid: 18, data_type_size: 1, type_modifier: -1, format: 0}, {name: [97, 100, 115, 114, 99], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 98, 97, 115, 101, 116, 121, 112, 101], table_oid: 1247, table_attribute_number: 26, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [116, 121, 112, 116, 121, 112, 101], table_oid: 1247, table_attribute_number: 7, data_type_oid: 18, data_type_size: 1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.296463539Z - restimestampmock: 2023-12-09T06:32:24.298435853Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT tmp.TABLE_CAT, tmp.TABLE_SCHEM, tmp.TABLE_NAME, tmp.NON_UNIQUE, tmp.INDEX_QUALIFIER, tmp.INDEX_NAME, tmp.TYPE, tmp.ORDINAL_POSITION, trim(both ''"'' from pg_catalog.pg_get_indexdef(tmp.CI_OID, tmp.ORDINAL_POSITION, false)) AS COLUMN_NAME, CASE tmp.AM_NAME WHEN ''btree'' THEN CASE tmp.I_INDOPTION[tmp.ORDINAL_POSITION - 1] & 1::smallint WHEN 1 THEN ''D'' ELSE ''A'' END ELSE NULL END AS ASC_OR_DESC, tmp.CARDINALITY, tmp.PAGES, tmp.FILTER_CONDITION FROM (SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, ct.relname AS TABLE_NAME, NOT i.indisunique AS NON_UNIQUE, NULL AS INDEX_QUALIFIER, ci.relname AS INDEX_NAME, CASE i.indisclustered WHEN true THEN 1 ELSE CASE am.amname WHEN ''hash'' THEN 2 ELSE 3 END END AS TYPE, (information_schema._pg_expandarray(i.indkey)).n AS ORDINAL_POSITION, ci.reltuples AS CARDINALITY, ci.relpages AS PAGES, pg_catalog.pg_get_expr(i.indpred, i.indrelid) AS FILTER_CONDITION, ci.oid AS CI_OID, i.indoption AS I_INDOPTION, am.amname AS AM_NAME FROM pg_catalog.pg_class ct JOIN pg_catalog.pg_namespace n ON (ct.relnamespace = n.oid) JOIN pg_catalog.pg_index i ON (ct.oid = i.indrelid) JOIN pg_catalog.pg_class ci ON (ci.oid = i.indexrelid) JOIN pg_catalog.pg_am am ON (ci.relam = am.oid) WHERE true AND n.nspname = ''public'' AND ct.relname = ''roles'') AS tmp ORDER BY NON_UNIQUE, TYPE, INDEX_NAME, ORDINAL_POSITION ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAGIAA10YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AABub25fdW5pcXVlAAAAAAAAAAAAABAAAf////8AAGluZGV4X3F1YWxpZmllcgAAAAAAAAAAAAAZ////////AABpbmRleF9uYW1lAAAABOsAAgAAABMAQP////8AAHR5cGUAAAAAAAAAAAAAFwAE/////wAAb3JkaW5hbF9wb3NpdGlvbgAAAAAAAAAAAAAXAAT/////AABjb2x1bW5fbmFtZQAAAAAAAAAAAAAZ////////AABhc2Nfb3JfZGVzYwAAAAAAAAAAAAAZ////////AABjYXJkaW5hbGl0eQAAAATrAAsAAAK8AAT/////AABwYWdlcwAAAATrAAoAAAAXAAT/////AABmaWx0ZXJfY29uZGl0aW9uAAAAAAAAAAAAABn///////8AAEQAAABXAA3/////AAAABnB1YmxpYwAAAAVyb2xlcwAAAAFm/////wAAAApyb2xlc19wa2V5AAAAATMAAAABMQAAAAJpZAAAAAFBAAAAATAAAAABMf////9EAAAAbgAN/////wAAAAZwdWJsaWMAAAAFcm9sZXMAAAABZv////8AAAAbdWtnYnVqbzlkMDZ4YmF4NTBodDFsYWtmNnYwAAAAATMAAAABMQAAAAh1c2VybmFtZQAAAAFBAAAAATAAAAABMf////9EAAAAagAN/////wAAAAZwdWJsaWMAAAAFcm9sZXMAAAABZv////8AAAAbdWtnYnVqbzlkMDZ4YmF4NTBodDFsYWtmNnYwAAAAATMAAAABMgAAAARyb2xlAAAAAUEAAAABMAAAAAEx/////0MAAAANU0VMRUNUIDMAWgAAAAVJ - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 51 - data_row: [{row_values: ["", public, roles, f, "", roles_pkey, "3", "1", id, A, "0", "1", ""]}, {row_values: ["", public, roles, f, "", roles_pkey, "3", "1", id, A, "0", "1", "", "", public, roles, f, "", ukgbujo9d06xbax50ht1lakf6v0, "3", "1", username, A, "0", "1", ""]}, {row_values: ["", public, roles, f, "", roles_pkey, "3", "1", id, A, "0", "1", "", "", public, roles, f, "", ukgbujo9d06xbax50ht1lakf6v0, "3", "1", username, A, "0", "1", "", "", public, roles, f, "", ukgbujo9d06xbax50ht1lakf6v0, "3", "2", role, A, "0", "1", ""]}, {row_values: ["", public, roles, f, "", roles_pkey, "3", "1", id, A, "0", "1", "", "", public, roles, f, "", ukgbujo9d06xbax50ht1lakf6v0, "3", "1", username, A, "0", "1", "", "", public, roles, f, "", ukgbujo9d06xbax50ht1lakf6v0, "3", "2", role, A, "0", "1", ""]}, {row_values: ["", public, roles, f, "", roles_pkey, "3", "1", id, A, "0", "1", "", "", public, roles, f, "", ukgbujo9d06xbax50ht1lakf6v0, "3", "1", username, A, "0", "1", "", "", public, roles, f, "", ukgbujo9d06xbax50ht1lakf6v0, "3", "2", role, A, "0", "1", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [110, 111, 110, 95, 117, 110, 105, 113, 117, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [105, 110, 100, 101, 120, 95, 113, 117, 97, 108, 105, 102, 105, 101, 114], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [105, 110, 100, 101, 120, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [111, 114, 100, 105, 110, 97, 108, 95, 112, 111, 115, 105, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [97, 115, 99, 95, 111, 114, 95, 100, 101, 115, 99], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [99, 97, 114, 100, 105, 110, 97, 108, 105, 116, 121], table_oid: 1259, table_attribute_number: 11, data_type_oid: 700, data_type_size: 4, type_modifier: -1, format: 0}, {name: [112, 97, 103, 101, 115], table_oid: 1259, table_attribute_number: 10, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 105, 108, 116, 101, 114, 95, 99, 111, 110, 100, 105, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.32668806Z - restimestampmock: 2023-12-09T06:32:24.326779177Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: SELECT setting FROM pg_catalog.pg_settings WHERE name='max_index_keys' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAAgAAFzZXR0aW5nAAAAL0gAAgAAABn///////8AAEQAAAAMAAEAAAACMzJDAAAADVNFTEVDVCAxAFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["32"]}, {row_values: ["32"]}, {row_values: ["32"]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [115, 101, 116, 116, 105, 110, 103], table_oid: 12104, table_attribute_number: 2, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.339667043Z - restimestampmock: 2023-12-09T06:32:24.339695041Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: SELECT NULL::text AS PKTABLE_CAT, pkn.nspname AS PKTABLE_SCHEM, pkc.relname AS PKTABLE_NAME, pka.attname AS PKCOLUMN_NAME, NULL::text AS FKTABLE_CAT, fkn.nspname AS FKTABLE_SCHEM, fkc.relname AS FKTABLE_NAME, fka.attname AS FKCOLUMN_NAME, pos.n AS KEY_SEQ, CASE con.confupdtype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS UPDATE_RULE, CASE con.confdeltype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS DELETE_RULE, con.conname AS FK_NAME, pkic.relname AS PK_NAME, CASE WHEN con.condeferrable AND con.condeferred THEN 5 WHEN con.condeferrable THEN 6 ELSE 7 END AS DEFERRABILITY FROM pg_catalog.pg_namespace pkn, pg_catalog.pg_class pkc, pg_catalog.pg_attribute pka, pg_catalog.pg_namespace fkn, pg_catalog.pg_class fkc, pg_catalog.pg_attribute fka, pg_catalog.pg_constraint con, pg_catalog.generate_series(1, 32) pos(n), pg_catalog.pg_class pkic WHERE pkn.oid = pkc.relnamespace AND pkc.oid = pka.attrelid AND pka.attnum = con.confkey[pos.n] AND con.confrelid = pkc.oid AND fkn.oid = fkc.relnamespace AND fkc.oid = fka.attrelid AND fka.attnum = con.conkey[pos.n] AND con.conrelid = fkc.oid AND con.contype = 'f' AND (pkic.relkind = 'i' OR pkic.relkind = 'I') AND pkic.oid = con.conindid AND fkn.nspname = 'public' AND fkc.relname = 'pets' ORDER BY pkn.nspname,pkc.relname, con.conname,pos.n - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAGqAA5wa3RhYmxlX2NhdAAAAAAAAAAAAAAZ////////AABwa3RhYmxlX3NjaGVtAAAACjcAAgAAABMAQP////8AAHBrdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AABwa2NvbHVtbl9uYW1lAAAABOEAAgAAABMAQP////8AAGZrdGFibGVfY2F0AAAAAAAAAAAAABn///////8AAGZrdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAZmt0YWJsZV9uYW1lAAAABOsAAgAAABMAQP////8AAGZrY29sdW1uX25hbWUAAAAE4QACAAAAEwBA/////wAAa2V5X3NlcQAAAAAAAAAAAAAXAAT/////AAB1cGRhdGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABkZWxldGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABma19uYW1lAAAACi4AAgAAABMAQP////8AAHBrX25hbWUAAAAE6wACAAAAEwBA/////wAAZGVmZXJyYWJpbGl0eQAAAAAAAAAAAAAXAAT/////AABEAAAAiAAO/////wAAAAZwdWJsaWMAAAAGb3duZXJzAAAAAmlk/////wAAAAZwdWJsaWMAAAAEcGV0cwAAAAhvd25lcl9pZAAAAAExAAAAATMAAAABMwAAABtmazZ0ZWc0a2NqY25qaGR1Z3VmdDU2d2Nmb2EAAAALb3duZXJzX3BrZXkAAAABN0QAAACFAA7/////AAAABnB1YmxpYwAAAAV0eXBlcwAAAAJpZP////8AAAAGcHVibGljAAAABHBldHMAAAAHdHlwZV9pZAAAAAExAAAAATMAAAABMwAAABtma3RtbWgxdHE4cGFoNXZ4ZjhrdXFxcGxvNHAAAAAKdHlwZXNfcGtleQAAAAE3QwAAAA1TRUxFQ1QgMgBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 50 - data_row: [{row_values: ["", public, owners, id, "", public, pets, owner_id, "1", "3", "3", fk6teg4kcjcnjhduguft56wcfoa, owners_pkey, "7"]}, {row_values: ["", public, owners, id, "", public, pets, owner_id, "1", "3", "3", fk6teg4kcjcnjhduguft56wcfoa, owners_pkey, "7", "", public, types, id, "", public, pets, type_id, "1", "3", "3", fktmmh1tq8pah5vxf8kuqqplo4p, types_pkey, "7"]}, {row_values: ["", public, owners, id, "", public, pets, owner_id, "1", "3", "3", fk6teg4kcjcnjhduguft56wcfoa, owners_pkey, "7", "", public, types, id, "", public, pets, type_id, "1", "3", "3", fktmmh1tq8pah5vxf8kuqqplo4p, types_pkey, "7"]}, {row_values: ["", public, owners, id, "", public, pets, owner_id, "1", "3", "3", fk6teg4kcjcnjhduguft56wcfoa, owners_pkey, "7", "", public, types, id, "", public, pets, type_id, "1", "3", "3", fktmmh1tq8pah5vxf8kuqqplo4p, types_pkey, "7"]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [112, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [107, 101, 121, 95, 115, 101, 113], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [117, 112, 100, 97, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 108, 101, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 107, 95, 110, 97, 109, 101], table_oid: 2606, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [100, 101, 102, 101, 114, 114, 97, 98, 105, 108, 105, 116, 121], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.346414031Z - restimestampmock: 2023-12-09T06:32:24.346460027Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''owners'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAE1AAp0YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AAB0YWJsZV90eXBlAAAAAAAAAAAAABn///////8AAHJlbWFya3MAAAAKMQAEAAAAGf///////wAAdHlwZV9jYXQAAAAAAAAAAAAAGf///////wAAdHlwZV9zY2hlbQAAAAAAAAAAAAAZ////////AAB0eXBlX25hbWUAAAAAAAAAAAAAGf///////wAAc2VsZl9yZWZlcmVuY2luZ19jb2xfbmFtZQAAAAAAAAAAAAAZ////////AAByZWZfZ2VuZXJhdGlvbgAAAAAAAAAAAAAZ////////AABEAAAAPwAK/////wAAAAZwdWJsaWMAAAAGb3duZXJzAAAABVRBQkxF/////wAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAA1TRUxFQ1QgMQBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, owners, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, owners, TABLE, "", "", "", "", "", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.348888923Z - restimestampmock: 2023-12-09T06:32:24.34891242Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select * from "public"."owners" where 1=0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.355024552Z - restimestampmock: 2023-12-09T06:32:24.355041675Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT c.oid, a.attnum, a.attname, c.relname, n.nspname, a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull), a.attidentity != '''' OR pg_catalog.pg_get_expr(d.adbin, d.adrelid) LIKE ''%nextval(%'' FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (c.oid = a.attrelid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef d ON (d.adrelid = a.attrelid AND d.adnum = a.attnum) JOIN (SELECT 16390 AS oid , 1 AS attnum UNION ALL SELECT 16390, 2 UNION ALL SELECT 16390, 3 UNION ALL SELECT 16390, 4 UNION ALL SELECT 16390, 5 UNION ALL SELECT 16390, 6) vals ON (c.oid = vals.oid AND a.attnum = vals.attnum) ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAC5AAdvaWQAAAAE6wABAAAAGgAE/////wAAYXR0bnVtAAAABOEABgAAABUAAv////8AAGF0dG5hbWUAAAAE4QACAAAAEwBA/////wAAcmVsbmFtZQAAAATrAAIAAAATAED/////AABuc3BuYW1lAAAACjcAAgAAABMAQP////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAEQAAAA+AAcAAAAFMTYzOTAAAAABNgAAAAl0ZWxlcGhvbmUAAAAGb3duZXJzAAAABnB1YmxpYwAAAAFm/////0QAAAA5AAcAAAAFMTYzOTAAAAABNQAAAARjaXR5AAAABm93bmVycwAAAAZwdWJsaWMAAAABZv////9EAAAAPAAHAAAABTE2MzkwAAAAATQAAAAHYWRkcmVzcwAAAAZvd25lcnMAAAAGcHVibGljAAAAAWb/////RAAAAD4ABwAAAAUxNjM5MAAAAAEzAAAACWxhc3RfbmFtZQAAAAZvd25lcnMAAAAGcHVibGljAAAAAWb/////RAAAAD8ABwAAAAUxNjM5MAAAAAEyAAAACmZpcnN0X25hbWUAAAAGb3duZXJzAAAABnB1YmxpYwAAAAFm/////0QAAAA4AAcAAAAFMTYzOTAAAAABMQAAAAJpZAAAAAZvd25lcnMAAAAGcHVibGljAAAAAXQAAAABdEMAAAANU0VMRUNUIDYAWgAAAAVJ - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 54 - data_row: [{row_values: ["16390", "6", telephone, owners, public, f, ""]}, {row_values: ["16390", "6", telephone, owners, public, f, "", "16390", "5", city, owners, public, f, ""]}, {row_values: ["16390", "6", telephone, owners, public, f, "", "16390", "5", city, owners, public, f, "", "16390", "4", address, owners, public, f, ""]}, {row_values: ["16390", "6", telephone, owners, public, f, "", "16390", "5", city, owners, public, f, "", "16390", "4", address, owners, public, f, "", "16390", "3", last_name, owners, public, f, ""]}, {row_values: ["16390", "6", telephone, owners, public, f, "", "16390", "5", city, owners, public, f, "", "16390", "4", address, owners, public, f, "", "16390", "3", last_name, owners, public, f, "", "16390", "2", first_name, owners, public, f, ""]}, {row_values: ["16390", "6", telephone, owners, public, f, "", "16390", "5", city, owners, public, f, "", "16390", "4", address, owners, public, f, "", "16390", "3", last_name, owners, public, f, "", "16390", "2", first_name, owners, public, f, "", "16390", "1", id, owners, public, t, t]}, {row_values: ["16390", "6", telephone, owners, public, f, "", "16390", "5", city, owners, public, f, "", "16390", "4", address, owners, public, f, "", "16390", "3", last_name, owners, public, f, "", "16390", "2", first_name, owners, public, f, "", "16390", "1", id, owners, public, t, t]}, {row_values: ["16390", "6", telephone, owners, public, f, "", "16390", "5", city, owners, public, f, "", "16390", "4", address, owners, public, f, "", "16390", "3", last_name, owners, public, f, "", "16390", "2", first_name, owners, public, f, "", "16390", "1", id, owners, public, t, t]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [111, 105, 100], table_oid: 1259, table_attribute_number: 1, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 1249, table_attribute_number: 6, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.357805747Z - restimestampmock: 2023-12-09T06:32:24.35785366Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''types'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAE1AAp0YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AAB0YWJsZV90eXBlAAAAAAAAAAAAABn///////8AAHJlbWFya3MAAAAKMQAEAAAAGf///////wAAdHlwZV9jYXQAAAAAAAAAAAAAGf///////wAAdHlwZV9zY2hlbQAAAAAAAAAAAAAZ////////AAB0eXBlX25hbWUAAAAAAAAAAAAAGf///////wAAc2VsZl9yZWZlcmVuY2luZ19jb2xfbmFtZQAAAAAAAAAAAAAZ////////AAByZWZfZ2VuZXJhdGlvbgAAAAAAAAAAAAAZ////////AABEAAAAPgAK/////wAAAAZwdWJsaWMAAAAFdHlwZXMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABDAAAADVNFTEVDVCAxAFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, types, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, types, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, types, TABLE, "", "", "", "", "", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.359391348Z - restimestampmock: 2023-12-09T06:32:24.359428511Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select * from "public"."types" where 1=0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.360545155Z - restimestampmock: 2023-12-09T06:32:24.360557696Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT c.oid, a.attnum, a.attname, c.relname, n.nspname, a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull), a.attidentity != '''' OR pg_catalog.pg_get_expr(d.adbin, d.adrelid) LIKE ''%nextval(%'' FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (c.oid = a.attrelid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef d ON (d.adrelid = a.attrelid AND d.adnum = a.attnum) JOIN (SELECT 16422 AS oid , 1 AS attnum UNION ALL SELECT 16422, 2) vals ON (c.oid = vals.oid AND a.attnum = vals.attnum) ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAC5AAdvaWQAAAAE6wABAAAAGgAE/////wAAYXR0bnVtAAAABOEABgAAABUAAv////8AAGF0dG5hbWUAAAAE4QACAAAAEwBA/////wAAcmVsbmFtZQAAAATrAAIAAAATAED/////AABuc3BuYW1lAAAACjcAAgAAABMAQP////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAEQAAAA3AAcAAAAFMTY0MjIAAAABMQAAAAJpZAAAAAV0eXBlcwAAAAZwdWJsaWMAAAABdAAAAAF0RAAAADgABwAAAAUxNjQyMgAAAAEyAAAABG5hbWUAAAAFdHlwZXMAAAAGcHVibGljAAAAAWb/////QwAAAA1TRUxFQ1QgMgBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 50 - data_row: [{row_values: ["16422", "1", id, types, public, t, t]}, {row_values: ["16422", "1", id, types, public, t, t, "16422", "2", name, types, public, f, ""]}, {row_values: ["16422", "1", id, types, public, t, t, "16422", "2", name, types, public, f, ""]}, {row_values: ["16422", "1", id, types, public, t, t, "16422", "2", name, types, public, f, ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [111, 105, 100], table_oid: 1259, table_attribute_number: 1, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 1249, table_attribute_number: 6, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.361723044Z - restimestampmock: 2023-12-09T06:32:24.361754875Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: SELECT NULL::text AS PKTABLE_CAT, pkn.nspname AS PKTABLE_SCHEM, pkc.relname AS PKTABLE_NAME, pka.attname AS PKCOLUMN_NAME, NULL::text AS FKTABLE_CAT, fkn.nspname AS FKTABLE_SCHEM, fkc.relname AS FKTABLE_NAME, fka.attname AS FKCOLUMN_NAME, pos.n AS KEY_SEQ, CASE con.confupdtype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS UPDATE_RULE, CASE con.confdeltype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS DELETE_RULE, con.conname AS FK_NAME, pkic.relname AS PK_NAME, CASE WHEN con.condeferrable AND con.condeferred THEN 5 WHEN con.condeferrable THEN 6 ELSE 7 END AS DEFERRABILITY FROM pg_catalog.pg_namespace pkn, pg_catalog.pg_class pkc, pg_catalog.pg_attribute pka, pg_catalog.pg_namespace fkn, pg_catalog.pg_class fkc, pg_catalog.pg_attribute fka, pg_catalog.pg_constraint con, pg_catalog.generate_series(1, 32) pos(n), pg_catalog.pg_class pkic WHERE pkn.oid = pkc.relnamespace AND pkc.oid = pka.attrelid AND pka.attnum = con.confkey[pos.n] AND con.confrelid = pkc.oid AND fkn.oid = fkc.relnamespace AND fkc.oid = fka.attrelid AND fka.attnum = con.conkey[pos.n] AND con.conrelid = fkc.oid AND con.contype = 'f' AND (pkic.relkind = 'i' OR pkic.relkind = 'I') AND pkic.oid = con.conindid AND fkn.nspname = 'public' AND fkc.relname = 'roles' ORDER BY pkn.nspname,pkc.relname, con.conname,pos.n - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAGqAA5wa3RhYmxlX2NhdAAAAAAAAAAAAAAZ////////AABwa3RhYmxlX3NjaGVtAAAACjcAAgAAABMAQP////8AAHBrdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AABwa2NvbHVtbl9uYW1lAAAABOEAAgAAABMAQP////8AAGZrdGFibGVfY2F0AAAAAAAAAAAAABn///////8AAGZrdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAZmt0YWJsZV9uYW1lAAAABOsAAgAAABMAQP////8AAGZrY29sdW1uX25hbWUAAAAE4QACAAAAEwBA/////wAAa2V5X3NlcQAAAAAAAAAAAAAXAAT/////AAB1cGRhdGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABkZWxldGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABma19uYW1lAAAACi4AAgAAABMAQP////8AAHBrX25hbWUAAAAE6wACAAAAEwBA/////wAAZGVmZXJyYWJpbGl0eQAAAAAAAAAAAAAXAAT/////AABEAAAAjQAO/////wAAAAZwdWJsaWMAAAAFdXNlcnMAAAAIdXNlcm5hbWX/////AAAABnB1YmxpYwAAAAVyb2xlcwAAAAh1c2VybmFtZQAAAAExAAAAATMAAAABMwAAABtma3FteWtnMm1hYndrazF2aHBjNDUyNmc0NGsAAAAKdXNlcnNfcGtleQAAAAE3QwAAAA1TRUxFQ1QgMQBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, users, username, "", public, roles, username, "1", "3", "3", fkqmykg2mabwkk1vhpc4526g44k, users_pkey, "7"]}, {row_values: ["", public, users, username, "", public, roles, username, "1", "3", "3", fkqmykg2mabwkk1vhpc4526g44k, users_pkey, "7"]}, {row_values: ["", public, users, username, "", public, roles, username, "1", "3", "3", fkqmykg2mabwkk1vhpc4526g44k, users_pkey, "7"]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [112, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [107, 101, 121, 95, 115, 101, 113], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [117, 112, 100, 97, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 108, 101, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 107, 95, 110, 97, 109, 101], table_oid: 2606, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [100, 101, 102, 101, 114, 114, 97, 98, 105, 108, 105, 116, 121], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.366388645Z - restimestampmock: 2023-12-09T06:32:24.366418809Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''users'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAE1AAp0YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AAB0YWJsZV90eXBlAAAAAAAAAAAAABn///////8AAHJlbWFya3MAAAAKMQAEAAAAGf///////wAAdHlwZV9jYXQAAAAAAAAAAAAAGf///////wAAdHlwZV9zY2hlbQAAAAAAAAAAAAAZ////////AAB0eXBlX25hbWUAAAAAAAAAAAAAGf///////wAAc2VsZl9yZWZlcmVuY2luZ19jb2xfbmFtZQAAAAAAAAAAAAAZ////////AAByZWZfZ2VuZXJhdGlvbgAAAAAAAAAAAAAZ////////AABEAAAAPgAK/////wAAAAZwdWJsaWMAAAAFdXNlcnMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABDAAAADVNFTEVDVCAxAFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, users, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, users, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, users, TABLE, "", "", "", "", "", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.367784847Z - restimestampmock: 2023-12-09T06:32:24.367823927Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select * from "public"."users" where 1=0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [117, 115, 101, 114, 110, 97, 109, 101], table_oid: 16428, table_attribute_number: 1, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [101, 110, 97, 98, 108, 101, 100], table_oid: 16428, table_attribute_number: 2, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [112, 97, 115, 115, 119, 111, 114, 100], table_oid: 16428, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.368828665Z - restimestampmock: 2023-12-09T06:32:24.368842039Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT c.oid, a.attnum, a.attname, c.relname, n.nspname, a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull), a.attidentity != '''' OR pg_catalog.pg_get_expr(d.adbin, d.adrelid) LIKE ''%nextval(%'' FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (c.oid = a.attrelid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef d ON (d.adrelid = a.attrelid AND d.adnum = a.attnum) JOIN (SELECT 16428 AS oid , 1 AS attnum UNION ALL SELECT 16428, 2 UNION ALL SELECT 16428, 3) vals ON (c.oid = vals.oid AND a.attnum = vals.attnum) ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAC5AAdvaWQAAAAE6wABAAAAGgAE/////wAAYXR0bnVtAAAABOEABgAAABUAAv////8AAGF0dG5hbWUAAAAE4QACAAAAEwBA/////wAAcmVsbmFtZQAAAATrAAIAAAATAED/////AABuc3BuYW1lAAAACjcAAgAAABMAQP////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAEQAAAA8AAcAAAAFMTY0MjgAAAABMwAAAAhwYXNzd29yZAAAAAV1c2VycwAAAAZwdWJsaWMAAAABZv////9EAAAAOwAHAAAABTE2NDI4AAAAATIAAAAHZW5hYmxlZAAAAAV1c2VycwAAAAZwdWJsaWMAAAABZv////9EAAAAPAAHAAAABTE2NDI4AAAAATEAAAAIdXNlcm5hbWUAAAAFdXNlcnMAAAAGcHVibGljAAAAAXT/////QwAAAA1TRUxFQ1QgMwBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 51 - data_row: [{row_values: ["16428", "3", password, users, public, f, ""]}, {row_values: ["16428", "3", password, users, public, f, "", "16428", "2", enabled, users, public, f, ""]}, {row_values: ["16428", "3", password, users, public, f, "", "16428", "2", enabled, users, public, f, "", "16428", "1", username, users, public, t, ""]}, {row_values: ["16428", "3", password, users, public, f, "", "16428", "2", enabled, users, public, f, "", "16428", "1", username, users, public, t, ""]}, {row_values: ["16428", "3", password, users, public, f, "", "16428", "2", enabled, users, public, f, "", "16428", "1", username, users, public, t, ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [111, 105, 100], table_oid: 1259, table_attribute_number: 1, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 1249, table_attribute_number: 6, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.370016261Z - restimestampmock: 2023-12-09T06:32:24.37004655Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: SELECT NULL::text AS PKTABLE_CAT, pkn.nspname AS PKTABLE_SCHEM, pkc.relname AS PKTABLE_NAME, pka.attname AS PKCOLUMN_NAME, NULL::text AS FKTABLE_CAT, fkn.nspname AS FKTABLE_SCHEM, fkc.relname AS FKTABLE_NAME, fka.attname AS FKCOLUMN_NAME, pos.n AS KEY_SEQ, CASE con.confupdtype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS UPDATE_RULE, CASE con.confdeltype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS DELETE_RULE, con.conname AS FK_NAME, pkic.relname AS PK_NAME, CASE WHEN con.condeferrable AND con.condeferred THEN 5 WHEN con.condeferrable THEN 6 ELSE 7 END AS DEFERRABILITY FROM pg_catalog.pg_namespace pkn, pg_catalog.pg_class pkc, pg_catalog.pg_attribute pka, pg_catalog.pg_namespace fkn, pg_catalog.pg_class fkc, pg_catalog.pg_attribute fka, pg_catalog.pg_constraint con, pg_catalog.generate_series(1, 32) pos(n), pg_catalog.pg_class pkic WHERE pkn.oid = pkc.relnamespace AND pkc.oid = pka.attrelid AND pka.attnum = con.confkey[pos.n] AND con.confrelid = pkc.oid AND fkn.oid = fkc.relnamespace AND fkc.oid = fka.attrelid AND fka.attnum = con.conkey[pos.n] AND con.conrelid = fkc.oid AND con.contype = 'f' AND (pkic.relkind = 'i' OR pkic.relkind = 'I') AND pkic.oid = con.conindid AND fkn.nspname = 'public' AND fkc.relname = 'vet_specialties' ORDER BY pkn.nspname,pkc.relname, con.conname,pos.n - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAGqAA5wa3RhYmxlX2NhdAAAAAAAAAAAAAAZ////////AABwa3RhYmxlX3NjaGVtAAAACjcAAgAAABMAQP////8AAHBrdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AABwa2NvbHVtbl9uYW1lAAAABOEAAgAAABMAQP////8AAGZrdGFibGVfY2F0AAAAAAAAAAAAABn///////8AAGZrdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAZmt0YWJsZV9uYW1lAAAABOsAAgAAABMAQP////8AAGZrY29sdW1uX25hbWUAAAAE4QACAAAAEwBA/////wAAa2V5X3NlcQAAAAAAAAAAAAAXAAT/////AAB1cGRhdGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABkZWxldGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABma19uYW1lAAAACi4AAgAAABMAQP////8AAHBrX25hbWUAAAAE6wACAAAAEwBA/////wAAZGVmZXJyYWJpbGl0eQAAAAAAAAAAAAAXAAT/////AABEAAAAoQAO/////wAAAAZwdWJsaWMAAAALc3BlY2lhbHRpZXMAAAACaWT/////AAAABnB1YmxpYwAAAA92ZXRfc3BlY2lhbHRpZXMAAAAMc3BlY2lhbHR5X2lkAAAAATEAAAABMwAAAAEzAAAAG2ZrMzV1aWJveXJwZm4xYm5kcnI1am9yY2owbQAAABBzcGVjaWFsdGllc19wa2V5AAAAATdEAAAAjQAO/////wAAAAZwdWJsaWMAAAAEdmV0cwAAAAJpZP////8AAAAGcHVibGljAAAAD3ZldF9zcGVjaWFsdGllcwAAAAZ2ZXRfaWQAAAABMQAAAAEzAAAAATMAAAAbZmtieTFjMGZiYWEwYnlhaWZpNjN2dDE4c3g5AAAACXZldHNfcGtleQAAAAE3QwAAAA1TRUxFQ1QgMgBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 50 - data_row: [{row_values: ["", public, specialties, id, "", public, vet_specialties, specialty_id, "1", "3", "3", fk35uiboyrpfn1bndrr5jorcj0m, specialties_pkey, "7"]}, {row_values: ["", public, specialties, id, "", public, vet_specialties, specialty_id, "1", "3", "3", fk35uiboyrpfn1bndrr5jorcj0m, specialties_pkey, "7", "", public, vets, id, "", public, vet_specialties, vet_id, "1", "3", "3", fkby1c0fbaa0byaifi63vt18sx9, vets_pkey, "7"]}, {row_values: ["", public, specialties, id, "", public, vet_specialties, specialty_id, "1", "3", "3", fk35uiboyrpfn1bndrr5jorcj0m, specialties_pkey, "7", "", public, vets, id, "", public, vet_specialties, vet_id, "1", "3", "3", fkby1c0fbaa0byaifi63vt18sx9, vets_pkey, "7"]}, {row_values: ["", public, specialties, id, "", public, vet_specialties, specialty_id, "1", "3", "3", fk35uiboyrpfn1bndrr5jorcj0m, specialties_pkey, "7", "", public, vets, id, "", public, vet_specialties, vet_id, "1", "3", "3", fkby1c0fbaa0byaifi63vt18sx9, vets_pkey, "7"]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [112, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [107, 101, 121, 95, 115, 101, 113], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [117, 112, 100, 97, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 108, 101, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 107, 95, 110, 97, 109, 101], table_oid: 2606, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [100, 101, 102, 101, 114, 114, 97, 98, 105, 108, 105, 116, 121], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.373976096Z - restimestampmock: 2023-12-09T06:32:24.374012842Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''specialties'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAE1AAp0YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AAB0YWJsZV90eXBlAAAAAAAAAAAAABn///////8AAHJlbWFya3MAAAAKMQAEAAAAGf///////wAAdHlwZV9jYXQAAAAAAAAAAAAAGf///////wAAdHlwZV9zY2hlbQAAAAAAAAAAAAAZ////////AAB0eXBlX25hbWUAAAAAAAAAAAAAGf///////wAAc2VsZl9yZWZlcmVuY2luZ19jb2xfbmFtZQAAAAAAAAAAAAAZ////////AAByZWZfZ2VuZXJhdGlvbgAAAAAAAAAAAAAZ////////AABEAAAARAAK/////wAAAAZwdWJsaWMAAAALc3BlY2lhbHRpZXMAAAAFVEFCTEX/////AAAAAAAAAAAAAAAAAAAAAAAAAABDAAAADVNFTEVDVCAxAFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, specialties, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, specialties, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, specialties, TABLE, "", "", "", "", "", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.375517825Z - restimestampmock: 2023-12-09T06:32:24.37555728Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select * from "public"."specialties" where 1=0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [105, 100], table_oid: 16415, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16415, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.376541479Z - restimestampmock: 2023-12-09T06:32:24.376553811Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT c.oid, a.attnum, a.attname, c.relname, n.nspname, a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull), a.attidentity != '''' OR pg_catalog.pg_get_expr(d.adbin, d.adrelid) LIKE ''%nextval(%'' FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (c.oid = a.attrelid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef d ON (d.adrelid = a.attrelid AND d.adnum = a.attnum) JOIN (SELECT 16415 AS oid , 1 AS attnum UNION ALL SELECT 16415, 2) vals ON (c.oid = vals.oid AND a.attnum = vals.attnum) ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAC5AAdvaWQAAAAE6wABAAAAGgAE/////wAAYXR0bnVtAAAABOEABgAAABUAAv////8AAGF0dG5hbWUAAAAE4QACAAAAEwBA/////wAAcmVsbmFtZQAAAATrAAIAAAATAED/////AABuc3BuYW1lAAAACjcAAgAAABMAQP////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAEQAAAA9AAcAAAAFMTY0MTUAAAABMQAAAAJpZAAAAAtzcGVjaWFsdGllcwAAAAZwdWJsaWMAAAABdAAAAAF0RAAAAD4ABwAAAAUxNjQxNQAAAAEyAAAABG5hbWUAAAALc3BlY2lhbHRpZXMAAAAGcHVibGljAAAAAWb/////QwAAAA1TRUxFQ1QgMgBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 50 - data_row: [{row_values: ["16415", "1", id, specialties, public, t, t]}, {row_values: ["16415", "1", id, specialties, public, t, t, "16415", "2", name, specialties, public, f, ""]}, {row_values: ["16415", "1", id, specialties, public, t, t, "16415", "2", name, specialties, public, f, ""]}, {row_values: ["16415", "1", id, specialties, public, t, t, "16415", "2", name, specialties, public, f, ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [111, 105, 100], table_oid: 1259, table_attribute_number: 1, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 1249, table_attribute_number: 6, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.377683079Z - restimestampmock: 2023-12-09T06:32:24.377709535Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''vets'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAE1AAp0YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AAB0YWJsZV90eXBlAAAAAAAAAAAAABn///////8AAHJlbWFya3MAAAAKMQAEAAAAGf///////wAAdHlwZV9jYXQAAAAAAAAAAAAAGf///////wAAdHlwZV9zY2hlbQAAAAAAAAAAAAAZ////////AAB0eXBlX25hbWUAAAAAAAAAAAAAGf///////wAAc2VsZl9yZWZlcmVuY2luZ19jb2xfbmFtZQAAAAAAAAAAAAAZ////////AAByZWZfZ2VuZXJhdGlvbgAAAAAAAAAAAAAZ////////AABEAAAAPQAK/////wAAAAZwdWJsaWMAAAAEdmV0cwAAAAVUQUJMRf////8AAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAANU0VMRUNUIDEAWgAAAAVJ - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, vets, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, vets, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, vets, TABLE, "", "", "", "", "", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.378780267Z - restimestampmock: 2023-12-09T06:32:24.378808306Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select * from "public"."vets" where 1=0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [105, 100], table_oid: 16441, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16441, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16441, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.37975655Z - restimestampmock: 2023-12-09T06:32:24.379768757Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT c.oid, a.attnum, a.attname, c.relname, n.nspname, a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull), a.attidentity != '''' OR pg_catalog.pg_get_expr(d.adbin, d.adrelid) LIKE ''%nextval(%'' FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (c.oid = a.attrelid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef d ON (d.adrelid = a.attrelid AND d.adnum = a.attnum) JOIN (SELECT 16441 AS oid , 1 AS attnum UNION ALL SELECT 16441, 2 UNION ALL SELECT 16441, 3) vals ON (c.oid = vals.oid AND a.attnum = vals.attnum) ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAC5AAdvaWQAAAAE6wABAAAAGgAE/////wAAYXR0bnVtAAAABOEABgAAABUAAv////8AAGF0dG5hbWUAAAAE4QACAAAAEwBA/////wAAcmVsbmFtZQAAAATrAAIAAAATAED/////AABuc3BuYW1lAAAACjcAAgAAABMAQP////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAEQAAAA8AAcAAAAFMTY0NDEAAAABMwAAAAlsYXN0X25hbWUAAAAEdmV0cwAAAAZwdWJsaWMAAAABZv////9EAAAAPQAHAAAABTE2NDQxAAAAATIAAAAKZmlyc3RfbmFtZQAAAAR2ZXRzAAAABnB1YmxpYwAAAAFm/////0QAAAA2AAcAAAAFMTY0NDEAAAABMQAAAAJpZAAAAAR2ZXRzAAAABnB1YmxpYwAAAAF0AAAAAXRDAAAADVNFTEVDVCAzAFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 51 - data_row: [{row_values: ["16441", "3", last_name, vets, public, f, ""]}, {row_values: ["16441", "3", last_name, vets, public, f, "", "16441", "2", first_name, vets, public, f, ""]}, {row_values: ["16441", "3", last_name, vets, public, f, "", "16441", "2", first_name, vets, public, f, "", "16441", "1", id, vets, public, t, t]}, {row_values: ["16441", "3", last_name, vets, public, f, "", "16441", "2", first_name, vets, public, f, "", "16441", "1", id, vets, public, t, t]}, {row_values: ["16441", "3", last_name, vets, public, f, "", "16441", "2", first_name, vets, public, f, "", "16441", "1", id, vets, public, t, t]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [111, 105, 100], table_oid: 1259, table_attribute_number: 1, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 1249, table_attribute_number: 6, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.380849322Z - restimestampmock: 2023-12-09T06:32:24.380898734Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: SELECT NULL::text AS PKTABLE_CAT, pkn.nspname AS PKTABLE_SCHEM, pkc.relname AS PKTABLE_NAME, pka.attname AS PKCOLUMN_NAME, NULL::text AS FKTABLE_CAT, fkn.nspname AS FKTABLE_SCHEM, fkc.relname AS FKTABLE_NAME, fka.attname AS FKCOLUMN_NAME, pos.n AS KEY_SEQ, CASE con.confupdtype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS UPDATE_RULE, CASE con.confdeltype WHEN 'c' THEN 0 WHEN 'n' THEN 2 WHEN 'd' THEN 4 WHEN 'r' THEN 1 WHEN 'p' THEN 1 WHEN 'a' THEN 3 ELSE NULL END AS DELETE_RULE, con.conname AS FK_NAME, pkic.relname AS PK_NAME, CASE WHEN con.condeferrable AND con.condeferred THEN 5 WHEN con.condeferrable THEN 6 ELSE 7 END AS DEFERRABILITY FROM pg_catalog.pg_namespace pkn, pg_catalog.pg_class pkc, pg_catalog.pg_attribute pka, pg_catalog.pg_namespace fkn, pg_catalog.pg_class fkc, pg_catalog.pg_attribute fka, pg_catalog.pg_constraint con, pg_catalog.generate_series(1, 32) pos(n), pg_catalog.pg_class pkic WHERE pkn.oid = pkc.relnamespace AND pkc.oid = pka.attrelid AND pka.attnum = con.confkey[pos.n] AND con.confrelid = pkc.oid AND fkn.oid = fkc.relnamespace AND fkc.oid = fka.attrelid AND fka.attnum = con.conkey[pos.n] AND con.conrelid = fkc.oid AND con.contype = 'f' AND (pkic.relkind = 'i' OR pkic.relkind = 'I') AND pkic.oid = con.conindid AND fkn.nspname = 'public' AND fkc.relname = 'visits' ORDER BY pkn.nspname,pkc.relname, con.conname,pos.n - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAGqAA5wa3RhYmxlX2NhdAAAAAAAAAAAAAAZ////////AABwa3RhYmxlX3NjaGVtAAAACjcAAgAAABMAQP////8AAHBrdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AABwa2NvbHVtbl9uYW1lAAAABOEAAgAAABMAQP////8AAGZrdGFibGVfY2F0AAAAAAAAAAAAABn///////8AAGZrdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAZmt0YWJsZV9uYW1lAAAABOsAAgAAABMAQP////8AAGZrY29sdW1uX25hbWUAAAAE4QACAAAAEwBA/////wAAa2V5X3NlcQAAAAAAAAAAAAAXAAT/////AAB1cGRhdGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABkZWxldGVfcnVsZQAAAAAAAAAAAAAXAAT/////AABma19uYW1lAAAACi4AAgAAABMAQP////8AAHBrX25hbWUAAAAE6wACAAAAEwBA/////wAAZGVmZXJyYWJpbGl0eQAAAAAAAAAAAAAXAAT/////AABEAAAAhAAO/////wAAAAZwdWJsaWMAAAAEcGV0cwAAAAJpZP////8AAAAGcHVibGljAAAABnZpc2l0cwAAAAZwZXRfaWQAAAABMQAAAAEzAAAAATMAAAAbZms2amNpZmhscXFsc2ZzZXU2N3V0bG91YXV5AAAACXBldHNfcGtleQAAAAE3QwAAAA1TRUxFQ1QgMQBaAAAABUk= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, pets, id, "", public, visits, pet_id, "1", "3", "3", fk6jcifhlqqlsfseu67utlouauy, pets_pkey, "7"]}, {row_values: ["", public, pets, id, "", public, visits, pet_id, "1", "3", "3", fk6jcifhlqqlsfseu67utlouauy, pets_pkey, "7"]}, {row_values: ["", public, pets, id, "", public, visits, pet_id, "1", "3", "3", fk6jcifhlqqlsfseu67utlouauy, pets_pkey, "7"]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [112, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [102, 107, 99, 111, 108, 117, 109, 110, 95, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [107, 101, 121, 95, 115, 101, 113], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [117, 112, 100, 97, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 108, 101, 116, 101, 95, 114, 117, 108, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [102, 107, 95, 110, 97, 109, 101], table_oid: 2606, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [112, 107, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [100, 101, 102, 101, 114, 114, 97, 98, 105, 108, 105, 116, 121], table_oid: 0, table_attribute_number: 0, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.384651463Z - restimestampmock: 2023-12-09T06:32:24.384713332Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname ~ ''^pg_'' OR n.nspname = ''information_schema'' WHEN true THEN CASE WHEN n.nspname = ''pg_catalog'' OR n.nspname = ''information_schema'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TABLE'' WHEN ''v'' THEN ''SYSTEM VIEW'' WHEN ''i'' THEN ''SYSTEM INDEX'' ELSE NULL END WHEN n.nspname = ''pg_toast'' THEN CASE c.relkind WHEN ''r'' THEN ''SYSTEM TOAST TABLE'' WHEN ''i'' THEN ''SYSTEM TOAST INDEX'' ELSE NULL END ELSE CASE c.relkind WHEN ''r'' THEN ''TEMPORARY TABLE'' WHEN ''p'' THEN ''TEMPORARY TABLE'' WHEN ''i'' THEN ''TEMPORARY INDEX'' WHEN ''S'' THEN ''TEMPORARY SEQUENCE'' WHEN ''v'' THEN ''TEMPORARY VIEW'' ELSE NULL END END WHEN false THEN CASE c.relkind WHEN ''r'' THEN ''TABLE'' WHEN ''p'' THEN ''PARTITIONED TABLE'' WHEN ''i'' THEN ''INDEX'' WHEN ''P'' then ''PARTITIONED INDEX'' WHEN ''S'' THEN ''SEQUENCE'' WHEN ''v'' THEN ''VIEW'' WHEN ''c'' THEN ''TYPE'' WHEN ''f'' THEN ''FOREIGN TABLE'' WHEN ''m'' THEN ''MATERIALIZED VIEW'' ELSE NULL END ELSE NULL END AS TABLE_TYPE, d.description AS REMARKS, '''' as TYPE_CAT, '''' as TYPE_SCHEM, '''' as TYPE_NAME, '''' AS SELF_REFERENCING_COL_NAME, '''' AS REF_GENERATION FROM pg_catalog.pg_namespace n, pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_description d ON (c.oid = d.objoid AND d.objsubid = 0 and d.classoid = ''pg_class''::regclass) WHERE c.relnamespace = n.oid AND n.nspname LIKE ''public'' AND c.relname LIKE ''pets'' AND (false OR ( c.relkind = ''r'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''v'' AND n.nspname <> ''pg_catalog'' AND n.nspname <> ''information_schema'' ) OR ( c.relkind = ''m'' ) OR ( c.relkind = ''p'' AND n.nspname !~ ''^pg_'' AND n.nspname <> ''information_schema'' ) ) ORDER BY TABLE_TYPE,TABLE_SCHEM,TABLE_NAME ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAE1AAp0YWJsZV9jYXQAAAAAAAAAAAAAGf///////wAAdGFibGVfc2NoZW0AAAAKNwACAAAAEwBA/////wAAdGFibGVfbmFtZQAAAATrAAIAAAATAED/////AAB0YWJsZV90eXBlAAAAAAAAAAAAABn///////8AAHJlbWFya3MAAAAKMQAEAAAAGf///////wAAdHlwZV9jYXQAAAAAAAAAAAAAGf///////wAAdHlwZV9zY2hlbQAAAAAAAAAAAAAZ////////AAB0eXBlX25hbWUAAAAAAAAAAAAAGf///////wAAc2VsZl9yZWZlcmVuY2luZ19jb2xfbmFtZQAAAAAAAAAAAAAZ////////AAByZWZfZ2VuZXJhdGlvbgAAAAAAAAAAAAAZ////////AABEAAAAPQAK/////wAAAAZwdWJsaWMAAAAEcGV0cwAAAAVUQUJMRf////8AAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAANU0VMRUNUIDEAWgAAAAVJ - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["", public, pets, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, pets, TABLE, "", "", "", "", "", ""]}, {row_values: ["", public, pets, TABLE, "", "", "", "", "", ""]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [116, 97, 98, 108, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 115, 99, 104, 101, 109], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [116, 97, 98, 108, 101, 95, 116, 121, 112, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 109, 97, 114, 107, 115], table_oid: 2609, table_attribute_number: 4, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 99, 97, 116], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 115, 99, 104, 101, 109], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [115, 101, 108, 102, 95, 114, 101, 102, 101, 114, 101, 110, 99, 105, 110, 103, 95, 99, 111, 108, 95, 110, 97, 109, 101], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}, {name: [114, 101, 102, 95, 103, 101, 110, 101, 114, 97, 116, 105, 111, 110], table_oid: 0, table_attribute_number: 0, data_type_oid: 25, data_type_size: -1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.387955401Z - restimestampmock: 2023-12-09T06:32:24.387999272Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select * from "public"."pets" where 1=0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [116, 121, 112, 101, 95, 105, 100], table_oid: 16399, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.389035466Z - restimestampmock: 2023-12-09T06:32:24.389050673Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: 'SELECT c.oid, a.attnum, a.attname, c.relname, n.nspname, a.attnotnull OR (t.typtype = ''d'' AND t.typnotnull), a.attidentity != '''' OR pg_catalog.pg_get_expr(d.adbin, d.adrelid) LIKE ''%nextval(%'' FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON (c.relnamespace = n.oid) JOIN pg_catalog.pg_attribute a ON (c.oid = a.attrelid) JOIN pg_catalog.pg_type t ON (a.atttypid = t.oid) LEFT JOIN pg_catalog.pg_attrdef d ON (d.adrelid = a.attrelid AND d.adnum = a.attnum) JOIN (SELECT 16399 AS oid , 1 AS attnum UNION ALL SELECT 16399, 2 UNION ALL SELECT 16399, 3 UNION ALL SELECT 16399, 4 UNION ALL SELECT 16399, 5) vals ON (c.oid = vals.oid AND a.attnum = vals.attnum) ' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, D, D, D, D, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABFQAAAC5AAdvaWQAAAAE6wABAAAAGgAE/////wAAYXR0bnVtAAAABOEABgAAABUAAv////8AAGF0dG5hbWUAAAAE4QACAAAAEwBA/////wAAcmVsbmFtZQAAAATrAAIAAAATAED/////AABuc3BuYW1lAAAACjcAAgAAABMAQP////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAD9jb2x1bW4/AAAAAAAAAAAAABAAAf////8AAEQAAAA6AAcAAAAFMTYzOTkAAAABNQAAAAd0eXBlX2lkAAAABHBldHMAAAAGcHVibGljAAAAAWb/////RAAAADsABwAAAAUxNjM5OQAAAAE0AAAACG93bmVyX2lkAAAABHBldHMAAAAGcHVibGljAAAAAWb/////RAAAAD0ABwAAAAUxNjM5OQAAAAEzAAAACmJpcnRoX2RhdGUAAAAEcGV0cwAAAAZwdWJsaWMAAAABZv////9EAAAANwAHAAAABTE2Mzk5AAAAATIAAAAEbmFtZQAAAARwZXRzAAAABnB1YmxpYwAAAAFm/////0QAAAA2AAcAAAAFMTYzOTkAAAABMQAAAAJpZAAAAARwZXRzAAAABnB1YmxpYwAAAAF0AAAAAXRDAAAADVNFTEVDVCA1AFoAAAAFSQ== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 53 - data_row: [{row_values: ["16399", "5", type_id, pets, public, f, ""]}, {row_values: ["16399", "5", type_id, pets, public, f, "", "16399", "4", owner_id, pets, public, f, ""]}, {row_values: ["16399", "5", type_id, pets, public, f, "", "16399", "4", owner_id, pets, public, f, "", "16399", "3", birth_date, pets, public, f, ""]}, {row_values: ["16399", "5", type_id, pets, public, f, "", "16399", "4", owner_id, pets, public, f, "", "16399", "3", birth_date, pets, public, f, "", "16399", "2", name, pets, public, f, ""]}, {row_values: ["16399", "5", type_id, pets, public, f, "", "16399", "4", owner_id, pets, public, f, "", "16399", "3", birth_date, pets, public, f, "", "16399", "2", name, pets, public, f, "", "16399", "1", id, pets, public, t, t]}, {row_values: ["16399", "5", type_id, pets, public, f, "", "16399", "4", owner_id, pets, public, f, "", "16399", "3", birth_date, pets, public, f, "", "16399", "2", name, pets, public, f, "", "16399", "1", id, pets, public, t, t]}, {row_values: ["16399", "5", type_id, pets, public, f, "", "16399", "4", owner_id, pets, public, f, "", "16399", "3", birth_date, pets, public, f, "", "16399", "2", name, pets, public, f, "", "16399", "1", id, pets, public, t, t]}] - ready_for_query: - txstatus: 73 - row_description: {fields: [{name: [111, 105, 100], table_oid: 1259, table_attribute_number: 1, data_type_oid: 26, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 117, 109], table_oid: 1249, table_attribute_number: 6, data_type_oid: 21, data_type_size: 2, type_modifier: -1, format: 0}, {name: [97, 116, 116, 110, 97, 109, 101], table_oid: 1249, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [114, 101, 108, 110, 97, 109, 101], table_oid: 1259, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [110, 115, 112, 110, 97, 109, 101], table_oid: 2615, table_attribute_number: 2, data_type_oid: 19, data_type_size: 64, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}, {name: [63, 99, 111, 108, 117, 109, 110, 63], table_oid: 0, table_attribute_number: 0, data_type_oid: 16, data_type_size: 1, type_modifier: -1, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.390563571Z - restimestampmock: 2023-12-09T06:32:24.390602484Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - max_rows: 1 - parse: - - name: "" - query: "" - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", "n", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:33.299153848Z - restimestampmock: 2023-12-09T06:32:33.299211426Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,o1_0.telephone from owners o1_0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAChAAZpZAAAAEAGAAEAAAAXAAT/////AABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAZmlyc3RfbmFtZQAAAEAGAAIAAAQT//8AAAEDAABsYXN0X25hbWUAAABABgADAAAEE///AAABAwAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABbAAYAAAABMQAAAB4xNHRoIE1haW4gU3RyZWV0LCBSb3lhbCBTdHJlZXQAAAAPTG9uZG9uLCBFbmdsYW5kAAAABEpvaG4AAAADRG9lAAAACDEyMzQ1Njc4QwAAAA1TRUxFQ1QgMQBaAAAABVQ= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}] - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:33.337667116Z - restimestampmock: 2023-12-09T06:32:33.33772786Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - parameter_format_codes: [1] - parameters: [[0, 0, 0, 1]] - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,t1_0.id,t1_0.name,v1_0.pet_id,v1_0.id,v1_0.visit_date,v1_0.description from pets p1_0 left join types t1_0 on t1_0.id=p1_0.type_id left join visits v1_0 on p1_0.id=v1_0.pet_id where p1_0.owner_id=$1 - parameter_oids: - - 23 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [112, 101, 116, 95, 105, 100], table_oid: 16450, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16450, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [118, 105, 115, 105, 116, 95, 100, 97, 116, 101], table_oid: 16450, table_attribute_number: 2, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110], table_oid: 16450, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:33.352144119Z - restimestampmock: 2023-12-09T06:32:33.35217295Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - parse: - - name: S_1 - query: COMMIT - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:33.356299017Z - restimestampmock: 2023-12-09T06:32:33.356318307Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - max_rows: 1 - parse: - - name: "" - query: "" - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", "n", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:39.202280115Z - restimestampmock: 2023-12-09T06:32:39.203011004Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,o1_0.telephone from owners o1_0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAChAAZpZAAAAEAGAAEAAAAXAAT/////AABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAZmlyc3RfbmFtZQAAAEAGAAIAAAQT//8AAAEDAABsYXN0X25hbWUAAABABgADAAAEE///AAABAwAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABbAAYAAAABMQAAAB4xNHRoIE1haW4gU3RyZWV0LCBSb3lhbCBTdHJlZXQAAAAPTG9uZG9uLCBFbmdsYW5kAAAABEpvaG4AAAADRG9lAAAACDEyMzQ1Njc4QwAAAA1TRUxFQ1QgMQBaAAAABVQ= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "12345678"]}] - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:39.204109441Z - restimestampmock: 2023-12-09T06:32:39.204163811Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - parameter_format_codes: [1] - parameters: [[0, 0, 0, 1]] - describe: - object_type: 80 - name: "" - execute: - - {} - parse: - - name: "" - query: select p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,t1_0.id,t1_0.name,v1_0.pet_id,v1_0.id,v1_0.visit_date,v1_0.description from pets p1_0 left join types t1_0 on t1_0.id=p1_0.type_id left join visits v1_0 on p1_0.id=v1_0.pet_id where p1_0.owner_id=$1 - parameter_oids: - - 23 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [112, 101, 116, 95, 105, 100], table_oid: 16450, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16450, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [118, 105, 115, 105, 116, 95, 100, 97, 116, 101], table_oid: 16450, table_attribute_number: 2, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110], table_oid: 16450, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:39.205838152Z - restimestampmock: 2023-12-09T06:32:39.205868441Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:39.206995126Z - restimestampmock: 2023-12-09T06:32:39.207007166Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - describe: - object_type: 80 - name: "" - execute: - - max_rows: 1 - parse: - - name: "" - query: "" - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", "n", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:43.690124682Z - restimestampmock: 2023-12-09T06:32:43.690148347Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - parameter_format_codes: [0] - parameters: [[74, 111, 104, 110, 32, 68, 111, 101, 37]] - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select distinct o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,p1_0.type_id,o1_0.telephone from owners o1_0 left join pets p1_0 on o1_0.id=p1_0.owner_id where o1_0.last_name like $1 escape '' - parameter_oids: - - 1043 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 121, 112, 101, 95, 105, 100], table_oid: 16399, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:43.705034765Z - restimestampmock: 2023-12-09T06:32:43.705075302Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:43.706719396Z - restimestampmock: 2023-12-09T06:32:43.706732561Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_2 - describe: - object_type: 80 - name: "" - execute: - - max_rows: 1 - parse: - - name: S_2 - query: "" - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", "n", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:51.562749365Z - restimestampmock: 2023-12-09T06:32:51.562772696Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - parameter_format_codes: [0] - parameters: [[74, 111, 104, 110, 37]] - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select distinct o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,p1_0.type_id,o1_0.telephone from owners o1_0 left join pets p1_0 on o1_0.id=p1_0.owner_id where o1_0.last_name like $1 escape '' - parameter_oids: - - 1043 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 48 - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 121, 112, 101, 95, 105, 100], table_oid: 16399, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:51.56488162Z - restimestampmock: 2023-12-09T06:32:51.565067269Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:51.566336523Z - restimestampmock: 2023-12-09T06:32:51.566356271Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_2 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:58.447109524Z - restimestampmock: 2023-12-09T06:32:58.447127814Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - parameter_format_codes: [0] - parameters: [[68, 111, 101, 37]] - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select distinct o1_0.id,o1_0.address,o1_0.city,o1_0.first_name,o1_0.last_name,p1_0.owner_id,p1_0.id,p1_0.birth_date,p1_0.name,p1_0.type_id,o1_0.telephone from owners o1_0 left join pets p1_0 on o1_0.id=p1_0.owner_id where o1_0.last_name like $1 escape '' - parameter_oids: - - 1043 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAEfAAtpZAAAAEAGAAEAAAAXAAT/////AABhZGRyZXNzAAAAQAYABAAABBP//wAAAQMAAGNpdHkAAABABgAFAAAEE///AAABAwAAZmlyc3RfbmFtZQAAAEAGAAIAAAQT//8AAAEDAABsYXN0X25hbWUAAABABgADAAAEE///AAABAwAAb3duZXJfaWQAAABADwAEAAAAFwAE/////wAAaWQAAABADwABAAAAFwAE/////wAAYmlydGhfZGF0ZQAAAEAPAAMAAAQ6AAT/////AABuYW1lAAAAQA8AAgAABBP//wAAAQMAAHR5cGVfaWQAAABADwAFAAAAFwAE/////wAAdGVsZXBob25lAAAAQAYABgAABBP//wAAAQMAAEQAAABvAAsAAAABMQAAAB4xNHRoIE1haW4gU3RyZWV0LCBSb3lhbCBTdHJlZXQAAAAPTG9uZG9uLCBFbmdsYW5kAAAABEpvaG4AAAADRG9l//////////////////////////8AAAAIMTIzNDU2NzhDAAAADVNFTEVDVCAxAFoAAAAFVA== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "", "", "", "", "", "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "", "", "", "", "", "12345678"]}, {row_values: ["1", '14th Main Street, Royal Street', 'London, England', John, Doe, "", "", "", "", "", "12345678"]}] - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16390, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [97, 100, 100, 114, 101, 115, 115], table_oid: 16390, table_attribute_number: 4, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [99, 105, 116, 121], table_oid: 16390, table_attribute_number: 5, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [102, 105, 114, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [108, 97, 115, 116, 95, 110, 97, 109, 101], table_oid: 16390, table_attribute_number: 3, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [111, 119, 110, 101, 114, 95, 105, 100], table_oid: 16399, table_attribute_number: 4, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [105, 100], table_oid: 16399, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [98, 105, 114, 116, 104, 95, 100, 97, 116, 101], table_oid: 16399, table_attribute_number: 3, data_type_oid: 1082, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16399, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}, {name: [116, 121, 112, 101, 95, 105, 100], table_oid: 16399, table_attribute_number: 5, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [116, 101, 108, 101, 112, 104, 111, 110, 101], table_oid: 16390, table_attribute_number: 6, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:58.448809611Z - restimestampmock: 2023-12-09T06:32:58.448845649Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:58.466869969Z - restimestampmock: 2023-12-09T06:32:58.466950877Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_2 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:33:50.370948288Z - restimestampmock: 2023-12-09T06:33:50.370965082Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - {} - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN READ ONLY - parameter_oids: [] - - name: "" - query: select p1_0.id,p1_0.name from types p1_0 - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAAyAAJpZAAAAEAmAAEAAAAXAAT/////AABuYW1lAAAAQCYAAgAABBP//wAAAQMAAEQAAAATAAIAAAABMQAAAARDYXRzQwAAAA1TRUxFQ1QgMQBaAAAABVQ= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 83 - - 69 - - 76 - - 69 - - 67 - - 84 - - 32 - - 49 - data_row: [{row_values: ["1", Cats]}, {row_values: ["1", Cats]}, {row_values: ["1", Cats]}] - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:33:50.373131539Z - restimestampmock: 2023-12-09T06:33:50.373155249Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:33:50.374520421Z - restimestampmock: 2023-12-09T06:33:50.374534089Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_2 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:34:05.049200342Z - restimestampmock: 2023-12-09T06:34:05.04921976Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - parameter_format_codes: [0] - parameters: [[68, 111, 103, 115]] - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN - parameter_oids: [] - - name: "" - query: insert into types (name) values ($1) RETURNING * - parameter_oids: - - 1043 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAAyAAJpZAAAAEAmAAEAAAAXAAT/////AABuYW1lAAAAQCYAAgAABBP//wAAAQMAAEQAAAATAAIAAAABMgAAAAREb2dzQwAAAA9JTlNFUlQgMCAxAFoAAAAFVA== - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 73 - - 78 - - 83 - - 69 - - 82 - - 84 - - 32 - - 48 - - 32 - - 49 - data_row: [{row_values: ["2", Dogs]}, {row_values: ["2", Dogs]}, {row_values: ["2", Dogs]}] - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:34:05.062696165Z - restimestampmock: 2023-12-09T06:34:05.062719417Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:34:05.069233642Z - restimestampmock: 2023-12-09T06:34:05.069252935Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_2 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", I, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:34:22.69809524Z - restimestampmock: 2023-12-09T06:34:22.698125284Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, P, B, D, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - - parameter_format_codes: [0] - parameters: [[70, 114, 111, 103, 115]] - describe: - object_type: 80 - name: "" - execute: - - {} - - {} - parse: - - name: "" - query: BEGIN - parameter_oids: [] - - name: "" - query: insert into types (name) values ($1) RETURNING * - parameter_oids: - - 1043 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, "1", "2", T, D, C, Z] - identifier: ServerResponse - length: 8 - payload: MQAAAAQyAAAABEMAAAAKQkVHSU4AMQAAAAQyAAAABFQAAAAyAAJpZAAAAEAmAAEAAAAXAAT/////AABuYW1lAAAAQCYAAgAABBP//wAAAQMAAEQAAAAUAAIAAAABMwAAAAVGcm9nc0MAAAAPSU5TRVJUIDAgMQBaAAAABVQ= - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 66 - - 69 - - 71 - - 73 - - 78 - - command_tag: - - 73 - - 78 - - 83 - - 69 - - 82 - - 84 - - 32 - - 48 - - 32 - - 49 - data_row: [{row_values: ["3", Frogs]}, {row_values: ["3", Frogs]}, {row_values: ["3", Frogs]}] - ready_for_query: - txstatus: 84 - row_description: {fields: [{name: [105, 100], table_oid: 16422, table_attribute_number: 1, data_type_oid: 23, data_type_size: 4, type_modifier: -1, format: 0}, {name: [110, 97, 109, 101], table_oid: 16422, table_attribute_number: 2, data_type_oid: 1043, data_type_size: -1, type_modifier: 259, format: 0}]} - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:34:22.700633431Z - restimestampmock: 2023-12-09T06:34:22.700679976Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.079153681Z - restimestampmock: 2023-12-09T06:32:24.079165513Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.214935861Z - restimestampmock: 2023-12-09T06:32:24.214957943Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.150612226Z - restimestampmock: 2023-12-09T06:32:24.150628433Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.11429353Z - restimestampmock: 2023-12-09T06:32:24.114304612Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.047638906Z - restimestampmock: 2023-12-09T06:32:24.047649322Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.989753246Z - restimestampmock: 2023-12-09T06:32:23.989764078Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.018472702Z - restimestampmock: 2023-12-09T06:32:24.018486284Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [B, E, S] - identifier: ClientRequest - length: 8 - bind: - - prepared_statement: S_1 - execute: - - max_rows: 1 - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["2", C, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 67 - - 79 - - 77 - - 77 - - 73 - - 84 - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:34:22.703127494Z - restimestampmock: 2023-12-09T06:34:22.703166539Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:23.958130897Z - restimestampmock: 2023-12-09T06:32:23.958145312Z ---- -version: api.keploy.io/v1beta1 -kind: Postgres -name: mocks -spec: - metadata: {} - postgresrequests: - - header: [P, B, E, S] - identifier: ClientRequest - length: 8 - bind: - - {} - execute: - - max_rows: 1 - parse: - - name: "" - query: SET application_name = 'PostgreSQL JDBC Driver' - parameter_oids: [] - msg_type: 83 - auth_type: 0 - postgresresponses: - - header: ["1", "2", C, S, Z] - identifier: ServerResponse - length: 8 - authentication_md5_password: - salt: - - 0 - - 0 - - 0 - - 0 - command_complete: - - command_tag: - - 83 - - 69 - - 84 - parameter_status: - - name: application_name - value: PostgreSQL JDBC Driver - - name: application_name - value: PostgreSQL JDBC Driver - ready_for_query: - txstatus: 73 - msg_type: 90 - auth_type: 0 - reqtimestampmock: 2023-12-09T06:32:24.185282036Z - restimestampmock: 2023-12-09T06:32:24.185292743Z diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-5.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-5.yaml deleted file mode 100755 index 8fb9af53..00000000 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-5.yaml +++ /dev/null @@ -1,76 +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:9967/petclinic/api/owners?lastName=Doe - url_params: - lastName: Doe - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 2023-12-09T06:32:58.443950826Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:58 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 2023-12-09T06:33:00.470180411Z - objects: [] - assertions: - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - created: 1702103580 -curl: | - curl --request GET \ - --url http://localhost:9967/petclinic/api/owners?lastName=Doe \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Origin: http://localhost:59555' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ - --header 'Sec-Fetch-Dest: empty' \ - --header 'Host: localhost:9967' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Fetch-Mode: cors' \ - --header 'Referer: http://localhost:59555/' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Accept-Language: en-US,en;q=0.9' \ diff --git a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-8.yaml b/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-8.yaml deleted file mode 100755 index 8385ac29..00000000 --- a/spring-petclinic/spring-petclinic-rest/keploy/test-set-1/tests/test-8.yaml +++ /dev/null @@ -1,78 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-8 -spec: - metadata: {} - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "26" - Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Frogs"}' - body_type: "" - timestamp: 2023-12-09T06:34:22.693938344Z - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:34:22 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/pettypes/3 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"name":"Frogs","id":3}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 2023-12-09T06:34:24.70622838Z - objects: [] - assertions: - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - created: 1702103664 -curl: |- - curl --request POST \ - --url http://localhost:9967/petclinic/api/pettypes \ - --header 'Connection: keep-alive' \ - --header 'Sec-Fetch-Mode: cors' \ - --header 'Sec-Fetch-Site: same-site' \ - --header 'Accept-Language: en-US,en;q=0.9' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' \ - --header 'Content-Type: application/json' \ - --header 'Accept: application/json, text/plain, */*' \ - --header 'Referer: http://localhost:59555/' \ - --header 'Sec-Ch-Ua: "Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' \ - --header 'Host: localhost:9967' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Origin: http://localhost:59555' \ - --header 'Sec-Fetch-Dest: empty' \ - --header 'Accept-Encoding: gzip, deflate, br' \ - --data '{"id":null,"name":"Frogs"}' diff --git a/spring-petclinic/spring-petclinic-rest/keploy/testReports/report-1.yaml b/spring-petclinic/spring-petclinic-rest/keploy/testReports/report-1.yaml deleted file mode 100755 index 6f578b02..00000000 --- a/spring-petclinic/spring-petclinic-rest/keploy/testReports/report-1.yaml +++ /dev/null @@ -1,2247 +0,0 @@ -version: api.keploy.io/v1beta1 -name: report-1 -status: PASSED -success: 11 -failure: 0 -total: 11 -tests: - - kind: Http - name: report-1 - status: PASSED - started: 1702107870 - completed: 1702107871 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 404 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Sat, 09 Dec 2023 06:29:56 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 404 - actual: 404 - headers_result: - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:29:56 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - 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=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - 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: report-1 - status: PASSED - started: 1702107871 - completed: 1702107871 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-2 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "24" - Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Dog"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:30:06 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/pettypes/1 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"name":"Dog","id":1}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:30:06 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Location - value: - - /api/pettypes/1 - actual: - key: Location - value: - - /api/pettypes/1 - body_result: - - normal: true - type: JSON - expected: '{"name":"Dog","id":1}' - actual: '{"name":"Dog","id":1}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107871 - completed: 1702107871 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-3 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "138" - Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"id":null,"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:31:00 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/owners/1 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:31:00 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - 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=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Location - value: - - /api/owners/1 - actual: - key: Location - value: - - /api/owners/1 - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - body_result: - - normal: true - type: JSON - expected: '{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}' - actual: '{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107871 - completed: 1702107871 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:31:00 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:31:00 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - body_result: - - normal: true - type: JSON - expected: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - actual: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107871 - completed: 1702107871 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/specialties - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 404 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Sat, 09 Dec 2023 06:31:07 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 404 - actual: 404 - headers_result: - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - 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: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:31:07 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - 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: report-1 - status: PASSED - started: 1702107871 - completed: 1702107871 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-6 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/specialties - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "23" - Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"name":"veterinanian"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:31:50 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/specialties/1 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"id":1,"name":"veterinanian"}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:31:50 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - 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: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Location - value: - - /api/specialties/1 - actual: - key: Location - value: - - /api/specialties/1 - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - body_result: - - normal: true - type: JSON - expected: '{"id":1,"name":"veterinanian"}' - actual: '{"id":1,"name":"veterinanian"}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107871 - completed: 1702107871 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:31:53 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"name":"Dog","id":1}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - 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: Date - value: - - Sat, 09 Dec 2023 06:31:53 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - body_result: - - normal: true - type: JSON - expected: '[{"name":"Dog","id":1}]' - actual: '[{"name":"Dog","id":1}]' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107871 - completed: 1702107872 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-8 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes/1 - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:31:58 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"name":"Dog","id":1}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:31:58 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - body_result: - - normal: true - type: JSON - expected: '{"name":"Dog","id":1}' - actual: '{"name":"Dog","id":1}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107872 - completed: 1702107872 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-9 - req: - method: OPTIONS - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes/1 - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Access-Control-Request-Headers: content-type - Access-Control-Request-Method: PUT - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Headers: content-type - Access-Control-Allow-Methods: PUT - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Access-Control-Max-Age: "1800" - Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Sat, 09 Dec 2023 06:32:02 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Access-Control-Max-Age: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:02 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Access-Control-Max-Age - value: - - "1800" - actual: - key: Access-Control-Max-Age - value: - - "1800" - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Access-Control-Allow-Headers - value: - - content-type - actual: - key: Access-Control-Allow-Headers - value: - - content-type - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Methods - value: - - PUT - actual: - key: Access-Control-Allow-Methods - value: - - PUT - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - actual: - key: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107872 - completed: 1702107872 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-10 - req: - method: PUT - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes/1 - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "22" - Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"id":1,"name":"Cats"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 204 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:02 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 204 - actual: 204 - headers_result: - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:02 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - 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: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1702107872 - completed: 1702107872 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-11 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:02 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"name":"Cats","id":1}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:02 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:31 GMT - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - body_result: - - normal: true - type: JSON - expected: '[{"name":"Cats","id":1}]' - actual: '[{"name":"Cats","id":1}]' - dep_result: [] -test_set: test-set-0 diff --git a/spring-petclinic/spring-petclinic-rest/keploy/testReports/report-2.yaml b/spring-petclinic/spring-petclinic-rest/keploy/testReports/report-2.yaml deleted file mode 100755 index 44149527..00000000 --- a/spring-petclinic/spring-petclinic-rest/keploy/testReports/report-2.yaml +++ /dev/null @@ -1,1601 +0,0 @@ -version: api.keploy.io/v1beta1 -name: report-2 -status: PASSED -success: 8 -failure: 0 -total: 8 -tests: - - kind: Http - name: report-2 - status: PASSED - started: 1702107892 - completed: 1702107892 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:33 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:33 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - 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-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - body_result: - - normal: true - type: JSON - expected: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - actual: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - dep_result: [] - - kind: Http - name: report-2 - status: PASSED - started: 1702107892 - completed: 1702107892 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-2 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:39 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - 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=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:39 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - 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: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - body_result: - - normal: true - type: JSON - expected: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - actual: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - dep_result: [] - - kind: Http - name: report-2 - status: PASSED - started: 1702107892 - completed: 1702107892 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-3 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners?lastName=John%20Doe - url_params: - lastName: John Doe - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 404 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Sat, 09 Dec 2023 06:32:43 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 404 - actual: 404 - headers_result: - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:43 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-2 - status: PASSED - started: 1702107892 - completed: 1702107893 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners?lastName=John - url_params: - lastName: John - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 404 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Sat, 09 Dec 2023 06:32:51 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 404 - actual: 404 - headers_result: - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:51 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-2 - status: PASSED - started: 1702107893 - completed: 1702107893 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/owners?lastName=Doe - url_params: - lastName: Doe - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:32:58 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:32:58 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - - 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-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: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - body_result: - - normal: true - type: JSON - expected: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - actual: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - dep_result: [] - - kind: Http - name: report-2 - status: PASSED - started: 1702107893 - completed: 1702107893 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-6 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:33:50 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"name":"Cats","id":1}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - 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: Date - value: - - Sat, 09 Dec 2023 06:33:50 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - body_result: - - normal: true - type: JSON - expected: '[{"name":"Cats","id":1}]' - actual: '[{"name":"Cats","id":1}]' - dep_result: [] - - kind: Http - name: report-2 - status: PASSED - started: 1702107893 - completed: 1702107893 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-7 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "25" - Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Dogs"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:34:05 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/pettypes/2 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"name":"Dogs","id":2}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Location - value: - - /api/pettypes/2 - actual: - key: Location - value: - - /api/pettypes/2 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:34:05 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - body_result: - - normal: true - type: JSON - expected: '{"name":"Dogs","id":2}' - actual: '{"name":"Dogs","id":2}' - dep_result: [] - - kind: Http - name: report-2 - status: PASSED - started: 1702107893 - completed: 1702107893 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-1 - mock_path: "" - test_case_id: test-8 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9967/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "26" - Content-Type: application/json - Host: localhost:9967 - Origin: http://localhost:59555 - Referer: http://localhost:59555/ - Sec-Ch-Ua: '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Frogs"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Sat, 09 Dec 2023 06:34:22 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/pettypes/3 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"name":"Frogs","id":3}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - 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: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - 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: Location - value: - - /api/pettypes/3 - actual: - key: Location - value: - - /api/pettypes/3 - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Date - value: - - Sat, 09 Dec 2023 06:34:22 GMT - actual: - key: Date - value: - - Sat, 09 Dec 2023 07:44:52 GMT - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - body_result: - - normal: true - type: JSON - expected: '{"name":"Frogs","id":3}' - actual: '{"name":"Frogs","id":3}' - dep_result: [] -test_set: test-set-1 diff --git a/spring-petclinic/spring-petclinic-rest/keploy/testReports/test-run-1/report-1.yaml b/spring-petclinic/spring-petclinic-rest/keploy/testReports/test-run-1/report-1.yaml deleted file mode 100755 index a5a119ae..00000000 --- a/spring-petclinic/spring-petclinic-rest/keploy/testReports/test-run-1/report-1.yaml +++ /dev/null @@ -1,2773 +0,0 @@ -version: api.keploy.io/v1beta1 -name: report-1 -status: PASSED -success: 13 -failure: 0 -total: 13 -tests: - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 404 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:21 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 404 - actual: 404 - headers_result: - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - 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: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - 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: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:24:21 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 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: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-2 - req: - method: OPTIONS - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Access-Control-Request-Headers: content-type - Access-Control-Request-Method: POST - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 200 - header: - Access-Control-Allow-Headers: content-type - Access-Control-Allow-Methods: POST - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Access-Control-Max-Age: "1800" - Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:26 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Access-Control-Max-Age: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Access-Control-Allow-Headers - value: - - content-type - actual: - key: Access-Control-Allow-Headers - value: - - content-type - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:24:26 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - 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: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Access-Control-Max-Age - value: - - "1800" - actual: - key: Access-Control-Max-Age - value: - - "1800" - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - 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: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - actual: - key: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Access-Control-Allow-Methods - value: - - POST - actual: - key: Access-Control-Allow-Methods - value: - - POST - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-3 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "24" - Content-Type: application/json - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Cat"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:26 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/pettypes/1 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"name":"Cat","id":1}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Location - value: - - /api/pettypes/1 - actual: - key: Location - value: - - /api/pettypes/1 - - 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: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:24:26 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - 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 - body_result: - - normal: true - type: JSON - expected: '{"name":"Cat","id":1}' - actual: '{"name":"Cat","id":1}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-4 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/pettypes - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "24" - Content-Type: application/json - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"name":"Dog"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:33 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/pettypes/2 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"name":"Dog","id":2}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Location - value: - - /api/pettypes/2 - actual: - key: Location - value: - - /api/pettypes/2 - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:24:33 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - body_result: - - normal: true - type: JSON - expected: '{"name":"Dog","id":2}' - actual: '{"name":"Dog","id":2}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-5 - req: - method: OPTIONS - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Access-Control-Request-Headers: content-type - Access-Control-Request-Method: POST - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 200 - header: - Access-Control-Allow-Headers: content-type - Access-Control-Allow-Methods: POST - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Access-Control-Max-Age: "1800" - Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:48 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Access-Control-Max-Age: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Headers - value: - - content-type - actual: - key: Access-Control-Allow-Headers - value: - - content-type - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - actual: - key: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:24:48 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - 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: Access-Control-Max-Age - value: - - "1800" - actual: - key: Access-Control-Max-Age - value: - - "1800" - - normal: true - expected: - key: Access-Control-Allow-Methods - value: - - POST - actual: - key: Access-Control-Allow-Methods - value: - - POST - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-6 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "138" - Content-Type: application/json - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:48 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/owners/1 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:24:48 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Location - value: - - /api/owners/1 - actual: - key: Location - value: - - /api/owners/1 - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - body_result: - - normal: true - type: JSON - expected: '{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}' - actual: '{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:24:48 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - 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: Date - value: - - Mon, 12 Feb 2024 11:24:48 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - body_result: - - normal: true - type: JSON - expected: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - actual: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-8 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/specialties - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 404 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:24:55 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 404 - actual: 404 - headers_result: - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "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 - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:24:55 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - 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: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-9 - req: - method: OPTIONS - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/vets - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Access-Control-Request-Headers: content-type - Access-Control-Request-Method: POST - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 200 - header: - Access-Control-Allow-Headers: content-type - Access-Control-Allow-Methods: POST - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Access-Control-Max-Age: "1800" - Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PATCH - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:25:00 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Access-Control-Max-Age: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:25:00 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Headers - value: - - content-type - actual: - key: Access-Control-Allow-Headers - value: - - content-type - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - actual: - key: Allow - value: - - GET - - ' HEAD' - - ' POST' - - ' PUT' - - ' DELETE' - - ' OPTIONS' - - ' TRACE' - - ' PATCH' - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - 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: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Methods - value: - - POST - actual: - key: Access-Control-Allow-Methods - value: - - POST - - normal: true - expected: - key: Access-Control-Max-Age - value: - - "1800" - actual: - key: Access-Control-Max-Age - value: - - "1800" - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-10 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/vets - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "70" - Content-Type: application/json - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"firstName":"Alice ","lastName":"Hopkins","specialties":[]}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 400 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Content-Length: "0" - Date: Mon, 12 Feb 2024 11:25:00 GMT - Errors: '[{"objectName":"vetDto","fieldName":"firstName","fieldValue":"Alice ","errorMessage":"must match \"^[a-zA-Z]*$\""}]' - Expires: "0" - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: "" - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 400 - actual: 400 - headers_result: - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Errors - value: - - '[{"objectName":"vetDto"' - - '"fieldName":"firstName"' - - '"fieldValue":"Alice "' - - '"errorMessage":"must match \"^[a-zA-Z]*$\""}]' - actual: - key: Errors - value: - - '[{"objectName":"vetDto"' - - '"fieldName":"firstName"' - - '"fieldValue":"Alice "' - - '"errorMessage":"must match \"^[a-zA-Z]*$\""}]' - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Content-Length - value: - - "0" - actual: - key: Content-Length - value: - - "0" - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:25:00 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737196 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-11 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Content-Length: "155" - Content-Type: application/json - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: '{"id":null,"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030"}' - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 201 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:25:50 GMT - Expires: "0" - Keep-Alive: timeout=60 - Location: /api/owners/2 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.telephone: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 201 - actual: 201 - headers_result: - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:25:50 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: Location - value: - - /api/owners/2 - actual: - key: Location - value: - - /api/owners/2 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - 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: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - body_result: - - normal: true - type: JSON - expected: '{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}' - actual: '{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737196 - completed: 1707737197 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-12 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:25:50 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]},{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - body.firstName: [] - body.telephone: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - 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: Date - value: - - Mon, 12 Feb 2024 11:25:50 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - body_result: - - normal: true - type: JSON - expected: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]},{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}]' - actual: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]},{"firstName":"Joe","lastName":"Hopkins","address":"24th Main Street, Something Street","city":"Los Angeles, California","telephone":"9090812030","id":2,"pets":[]}]' - dep_result: [] - - kind: Http - name: report-1 - status: PASSED - started: 1707737197 - completed: 1707737197 - test_case_path: /home/pranshu.linux/samples-java/spring-petclinic/spring-petclinic-rest/keploy/test-set-0 - mock_path: "" - test_case_id: test-13 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9966/petclinic/api/owners?lastName=Doe - url_params: - lastName: Doe - header: - Accept: application/json, text/plain, */* - Accept-Encoding: gzip, deflate, br - Accept-Language: en-US,en;q=0.9 - Connection: keep-alive - Host: localhost:9966 - Origin: http://localhost:4200 - Referer: http://localhost:4200/ - Sec-Ch-Ua: '"Not A(Brand";v="99", "Google Chrome";v="121", "Chromium";v="121"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-site - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 - body: "" - body_type: "" - timestamp: 0001-01-01T00:00:00Z - host: "" - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Access-Control-Expose-Headers: errors, content-type - Cache-Control: no-cache, no-store, max-age=0, must-revalidate - Connection: keep-alive - Content-Type: application/json - Date: Mon, 12 Feb 2024 11:25:54 GMT - Expires: "0" - Keep-Alive: timeout=60 - Pragma: no-cache - Vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers - X-Content-Type-Options: nosniff - X-Frame-Options: DENY - X-Xss-Protection: "0" - body: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - body_type: "" - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - noise: - body.city: [] - header.Access-Control-Expose-Headers: [] - header.Date: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Expires - value: - - "0" - actual: - key: Expires - value: - - "0" - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Content-Type - value: - - application/json - actual: - key: Content-Type - value: - - application/json - - normal: true - expected: - key: Date - value: - - Mon, 12 Feb 2024 11:25:54 GMT - actual: - key: Date - value: - - Mon, 12 Feb 2024 11:26:36 GMT - - 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: Keep-Alive - value: - - timeout=60 - actual: - key: Keep-Alive - value: - - timeout=60 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Pragma - value: - - no-cache - actual: - key: Pragma - value: - - no-cache - - normal: true - expected: - key: X-Frame-Options - value: - - DENY - actual: - key: X-Frame-Options - value: - - DENY - - normal: true - expected: - key: Access-Control-Expose-Headers - value: - - errors, content-type - actual: - key: Access-Control-Expose-Headers - value: - - errors, content-type - - normal: true - expected: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - actual: - key: Vary - value: - - Origin - - Access-Control-Request-Method - - Access-Control-Request-Headers - - normal: true - expected: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - actual: - key: Cache-Control - value: - - no-cache - - ' no-store' - - ' max-age=0' - - ' must-revalidate' - body_result: - - normal: true - type: JSON - expected: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - actual: '[{"firstName":"John","lastName":"Doe","address":"14th Main Street, Royal Street","city":"London, England","telephone":"12345678","id":1,"pets":[]}]' - dep_result: [] -test_set: test-set-0 diff --git a/spring-petclinic/spring-petclinic-rest/src/main/resources/application-postgresql.properties b/spring-petclinic/spring-petclinic-rest/src/main/resources/application-postgresql.properties index 8a84cb30..d0bb7039 100644 --- a/spring-petclinic/spring-petclinic-rest/src/main/resources/application-postgresql.properties +++ b/spring-petclinic/spring-petclinic-rest/src/main/resources/application-postgresql.properties @@ -5,7 +5,7 @@ # PostgreSQL config start #---------------------------------------------------------------- -spring.datasource.url=jdbc:postgresql://localhost:5432/petclinic +spring.datasource.url=jdbc:postgresql://mypostgres:5432/petclinic spring.datasource.username=petclinic spring.datasource.password=petclinic spring.datasource.driver-class-name=org.postgresql.Driver