From b50f04bd59a8707be2962ca7553b1f625f58047f Mon Sep 17 00:00:00 2001 From: Stoyan Tzenkov Date: Mon, 28 Jan 2019 09:46:09 +0200 Subject: [PATCH 1/3] NY-6839: Performance testing using ghz. Initial setup. Signed-off-by: Stoyan Tzenkov --- src/main/performance/READ.ME | 52 +++++++++++++++++++ .../addAuthenticationProviderToProfile.json | 12 +++++ .../performance/addContactInfoToAccount.json | 12 +++++ .../completePendingAccountCreation.json | 13 +++++ .../performance/createPendingAccount.json | 12 +++++ src/main/performance/deleteAccount.json | 11 ++++ ...leteAuthenticationProviderFromProfile.json | 12 +++++ .../deleteContactInfoFromAccount.json | 12 +++++ src/main/performance/deleteProfile.json | 11 ++++ .../editContactInfoForAccount.json | 13 +++++ .../performance/getAccountByAccountId.json | 11 ++++ .../getAccountByCreationProvider.json | 12 +++++ .../performance/getAccountByLoginOption.json | 12 +++++ src/main/performance/getAccountByQrCode.json | 11 ++++ .../getAllAccountsByProfileId.json | 11 ++++ .../performance/getProfileByProfileId.json | 11 ++++ src/main/performance/searchByEmail.json | 11 ++++ src/main/performance/searchByPhoneNumber.json | 11 ++++ src/main/performance/searchByQrCode.json | 11 ++++ .../performance/searchBySocialProvider.json | 12 +++++ src/main/performance/searchByUsername.json | 11 ++++ src/main/performance/updateAccount.json | 13 +++++ ...pdateAuthenticationProviderForProfile.json | 13 +++++ .../performance/updateSearchableOption.json | 14 +++++ 24 files changed, 324 insertions(+) create mode 100644 src/main/performance/READ.ME create mode 100644 src/main/performance/addAuthenticationProviderToProfile.json create mode 100644 src/main/performance/addContactInfoToAccount.json create mode 100644 src/main/performance/completePendingAccountCreation.json create mode 100644 src/main/performance/createPendingAccount.json create mode 100644 src/main/performance/deleteAccount.json create mode 100644 src/main/performance/deleteAuthenticationProviderFromProfile.json create mode 100644 src/main/performance/deleteContactInfoFromAccount.json create mode 100644 src/main/performance/deleteProfile.json create mode 100644 src/main/performance/editContactInfoForAccount.json create mode 100644 src/main/performance/getAccountByAccountId.json create mode 100644 src/main/performance/getAccountByCreationProvider.json create mode 100644 src/main/performance/getAccountByLoginOption.json create mode 100644 src/main/performance/getAccountByQrCode.json create mode 100644 src/main/performance/getAllAccountsByProfileId.json create mode 100644 src/main/performance/getProfileByProfileId.json create mode 100644 src/main/performance/searchByEmail.json create mode 100644 src/main/performance/searchByPhoneNumber.json create mode 100644 src/main/performance/searchByQrCode.json create mode 100644 src/main/performance/searchBySocialProvider.json create mode 100644 src/main/performance/searchByUsername.json create mode 100644 src/main/performance/updateAccount.json create mode 100644 src/main/performance/updateAuthenticationProviderForProfile.json create mode 100644 src/main/performance/updateSearchableOption.json diff --git a/src/main/performance/READ.ME b/src/main/performance/READ.ME new file mode 100644 index 0000000..22bd419 --- /dev/null +++ b/src/main/performance/READ.ME @@ -0,0 +1,52 @@ +This file describes one approach of doing performance testing +of gRPC services. It uses a simple command line utility called ghz. + +ghz facilitates load testing and benchmarking of gRPC services. +It is intended to be used for testing and debugging services locally, +and in automated continous intergration environments for performance +regression testing. + +Instructions to install, configure and use ghz can be found using this link: +https://ghz.sh/docs/intro. + +For the purpose of testing the the NYNJA account services a number of +JSON config files are provided. Each file has the of the gRPC/endpoint +to be tested with extension .json. + +For example, updateSearchableOption gRPC/endpoint could be tested using +the config file updateSearchableOption.json. The file ocntains: + +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.updateSearchableOption", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06", + "authenticationType": "PHONE", + "authenticationIdentifier": "448873598834", + "searchOption": 1 + }, + "host": "127.0.0.1:6565" +} + +Configuration options can be found following the above link under +"Options Reference". The ones worth mentioning here are: +- call - the endpoint name - 'package/service/method' +- d - the call data as stringified JSON, i.e the parameters to be send +with the request. + +The way to test an endpoint is to call ghz from the command line like: + + >ghz -config ./updateSearchableOption.json + + +ghz produces some output showing a Summary, Response time histogram and +Latency distribution. + + +To achieve more realistic results it would be beneficial to: +1) runeach test multiple times and get the average results +2) configure each test with data existing in the DB and run it multiple times +3) configure each test with data non-existing in the DB and run it multiple times diff --git a/src/main/performance/addAuthenticationProviderToProfile.json b/src/main/performance/addAuthenticationProviderToProfile.json new file mode 100644 index 0000000..3756fbd --- /dev/null +++ b/src/main/performance/addAuthenticationProviderToProfile.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.addAuthenticationProviderToProfile", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "123e4567-e89b-12d3-a456-426655440011", + "authenticationProvider":{"authenticationType": "PHONE", "authenticationProvider": "448873598834"} + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/addContactInfoToAccount.json b/src/main/performance/addContactInfoToAccount.json new file mode 100644 index 0000000..3af0cb3 --- /dev/null +++ b/src/main/performance/addContactInfoToAccount.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.addContactInfoToAccount", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "accountId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", + "contactInfo":{"type": "PHONE_CONTACT", "value": "448873598834", "label": "The_Label"} + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/completePendingAccountCreation.json b/src/main/performance/completePendingAccountCreation.json new file mode 100644 index 0000000..b375a23 --- /dev/null +++ b/src/main/performance/completePendingAccountCreation.json @@ -0,0 +1,13 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.completePendingAccountCreation", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "accountId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06", + "accountName": "Name of account", + "firstName": "Atanas" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/createPendingAccount.json b/src/main/performance/createPendingAccount.json new file mode 100644 index 0000000..e29cdd9 --- /dev/null +++ b/src/main/performance/createPendingAccount.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.createPendingAccount", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "authenticationType": "EMAIL", + "authenticationProvider": "pepi.toshev@msn.com" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/deleteAccount.json b/src/main/performance/deleteAccount.json new file mode 100644 index 0000000..f4b5ea1 --- /dev/null +++ b/src/main/performance/deleteAccount.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.deleteAccount", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "accountId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/deleteAuthenticationProviderFromProfile.json b/src/main/performance/deleteAuthenticationProviderFromProfile.json new file mode 100644 index 0000000..e0bc804 --- /dev/null +++ b/src/main/performance/deleteAuthenticationProviderFromProfile.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.deleteAuthenticationProviderFromProfile", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", + "authenticationProvider":{"authenticationType": "EMAIL", "authenticationProvider": "bill.gates@msn.com", "searchOption": "SEARCH_ENABLED"} + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/deleteContactInfoFromAccount.json b/src/main/performance/deleteContactInfoFromAccount.json new file mode 100644 index 0000000..8e531e8 --- /dev/null +++ b/src/main/performance/deleteContactInfoFromAccount.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.deleteContactInfoFromAccount", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "accountId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", + "contactInfo":{"type": "PHONE_CONTACT", "value": "448873598834", "label": "The_Label"} + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/deleteProfile.json b/src/main/performance/deleteProfile.json new file mode 100644 index 0000000..51fe2e4 --- /dev/null +++ b/src/main/performance/deleteProfile.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.deleteProfile", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/editContactInfoForAccount.json b/src/main/performance/editContactInfoForAccount.json new file mode 100644 index 0000000..05438c5 --- /dev/null +++ b/src/main/performance/editContactInfoForAccount.json @@ -0,0 +1,13 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.editContactInfoForAccount", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "accountId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", + "oldContactInfo":{"type": "PHONE_CONTACT", "value": "448873598834", "label": "The_Label"}, + "editedContactInfo":{"type": "PHONE_CONTACT", "value": "448873598877", "label": "New_Label"} + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/getAccountByAccountId.json b/src/main/performance/getAccountByAccountId.json new file mode 100644 index 0000000..360677a --- /dev/null +++ b/src/main/performance/getAccountByAccountId.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.getAccountByAccountId", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "accountId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/getAccountByCreationProvider.json b/src/main/performance/getAccountByCreationProvider.json new file mode 100644 index 0000000..db53cdf --- /dev/null +++ b/src/main/performance/getAccountByCreationProvider.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.getAccountByCreationProvider", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "authenticationType": "EMAIL", + "authenticationIdentifier": "pepi.toshev@msn.com" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/getAccountByLoginOption.json b/src/main/performance/getAccountByLoginOption.json new file mode 100644 index 0000000..6d18fc1 --- /dev/null +++ b/src/main/performance/getAccountByLoginOption.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.getAccountByLoginOption", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "authenticationType": "PHONE", + "authenticationIdentifier": "448873598834" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/getAccountByQrCode.json b/src/main/performance/getAccountByQrCode.json new file mode 100644 index 0000000..43d2c2a --- /dev/null +++ b/src/main/performance/getAccountByQrCode.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.getAccountByQrCode", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "qrCode": "qrCoded" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/getAllAccountsByProfileId.json b/src/main/performance/getAllAccountsByProfileId.json new file mode 100644 index 0000000..5f25842 --- /dev/null +++ b/src/main/performance/getAllAccountsByProfileId.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.getAllAccountsByProfileId", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/getProfileByProfileId.json b/src/main/performance/getProfileByProfileId.json new file mode 100644 index 0000000..53053c8 --- /dev/null +++ b/src/main/performance/getProfileByProfileId.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.getProfileByProfileId", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/searchByEmail.json b/src/main/performance/searchByEmail.json new file mode 100644 index 0000000..7c49689 --- /dev/null +++ b/src/main/performance/searchByEmail.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.searchByEmail", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "email": "gogo@yahoo.com" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/searchByPhoneNumber.json b/src/main/performance/searchByPhoneNumber.json new file mode 100644 index 0000000..af51dad --- /dev/null +++ b/src/main/performance/searchByPhoneNumber.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.searchByPhoneNumber", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "phoneNumber": "359888777995" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/searchByQrCode.json b/src/main/performance/searchByQrCode.json new file mode 100644 index 0000000..c24fea7 --- /dev/null +++ b/src/main/performance/searchByQrCode.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.searchByQrCode", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "qrCode": "qrCoded" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/searchBySocialProvider.json b/src/main/performance/searchBySocialProvider.json new file mode 100644 index 0000000..fcb19dd --- /dev/null +++ b/src/main/performance/searchBySocialProvider.json @@ -0,0 +1,12 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.searchBySocialProvider", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "authenticationType": "PHONE", + "authenticationIdentifier": "448873598834" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/searchByUsername.json b/src/main/performance/searchByUsername.json new file mode 100644 index 0000000..8dbf187 --- /dev/null +++ b/src/main/performance/searchByUsername.json @@ -0,0 +1,11 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.getAccountByUsername", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "username": "PetarPetrov" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/updateAccount.json b/src/main/performance/updateAccount.json new file mode 100644 index 0000000..b8de7df --- /dev/null +++ b/src/main/performance/updateAccount.json @@ -0,0 +1,13 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.updateAccount", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "accountId": "0994566e-ac7b-45b2-b6ef-36440e44a15a", + "username": "acctIvanv", + "firstName": "Neda" + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/updateAuthenticationProviderForProfile.json b/src/main/performance/updateAuthenticationProviderForProfile.json new file mode 100644 index 0000000..19a01aa --- /dev/null +++ b/src/main/performance/updateAuthenticationProviderForProfile.json @@ -0,0 +1,13 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.updateAuthenticationProviderForProfile", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", + "oldAuthProvider":{"authenticationType": "PHONE", "authenticationProvider": "448873598834", "searchOption": 1}, + "updatedAuthProvider":{"authenticationType": "PHONE", "authenticationProvider": "448873598877", "searchOption": 1} + }, + "host": "127.0.0.1:6565" +} diff --git a/src/main/performance/updateSearchableOption.json b/src/main/performance/updateSearchableOption.json new file mode 100644 index 0000000..816b32c --- /dev/null +++ b/src/main/performance/updateSearchableOption.json @@ -0,0 +1,14 @@ +{ + "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "call": "account.AccountService.updateSearchableOption", + "insecure": true, + "n": 2000, + "c": 50, + "d": { + "profileId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06", + "authenticationType": "PHONE", + "authenticationIdentifier": "448873598834", + "searchOption": 1 + }, + "host": "127.0.0.1:6565" +} -- GitLab From 33ea8e534b2be1084ebbf0e203916133239bea61 Mon Sep 17 00:00:00 2001 From: Stoyan Tzenkov Date: Fri, 8 Feb 2019 15:00:47 +0200 Subject: [PATCH 2/3] NY-6839: SOme description added. Signed-off-by: Stoyan Tzenkov --- src/main/performance/READ.ME | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/performance/READ.ME b/src/main/performance/READ.ME index 22bd419..27fc452 100644 --- a/src/main/performance/READ.ME +++ b/src/main/performance/READ.ME @@ -17,7 +17,7 @@ For example, updateSearchableOption gRPC/endpoint could be tested using the config file updateSearchableOption.json. The file ocntains: { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.updateSearchableOption", "insecure": true, "n": 2000, @@ -28,7 +28,7 @@ the config file updateSearchableOption.json. The file ocntains: "authenticationIdentifier": "448873598834", "searchOption": 1 }, - "host": "127.0.0.1:6565" + "host": "" } Configuration options can be found following the above link under @@ -36,6 +36,9 @@ Configuration options can be found following the above link under - call - the endpoint name - 'package/service/method' - d - the call data as stringified JSON, i.e the parameters to be send with the request. + is the actual path to the account.proto file + is the address of the account service as IP address:port. +For example to test on your local machine use "127.0.0.1:6565". The way to test an endpoint is to call ghz from the command line like: -- GitLab From b11366e35825d732c5c16230b01f9eff8182df53 Mon Sep 17 00:00:00 2001 From: Stoyan Tzenkov Date: Fri, 8 Feb 2019 16:57:40 +0200 Subject: [PATCH 3/3] NY-6839: Path generalized. Signed-off-by: Stoyan Tzenkov --- src/main/performance/addAuthenticationProviderToProfile.json | 4 ++-- src/main/performance/addContactInfoToAccount.json | 4 ++-- src/main/performance/completePendingAccountCreation.json | 4 ++-- src/main/performance/createPendingAccount.json | 4 ++-- src/main/performance/deleteAccount.json | 4 ++-- .../performance/deleteAuthenticationProviderFromProfile.json | 4 ++-- src/main/performance/deleteContactInfoFromAccount.json | 4 ++-- src/main/performance/deleteProfile.json | 4 ++-- src/main/performance/editContactInfoForAccount.json | 4 ++-- src/main/performance/getAccountByAccountId.json | 2 +- src/main/performance/getAccountByCreationProvider.json | 4 ++-- src/main/performance/getAccountByLoginOption.json | 4 ++-- src/main/performance/getAccountByQrCode.json | 4 ++-- src/main/performance/getAllAccountsByProfileId.json | 4 ++-- src/main/performance/getProfileByProfileId.json | 4 ++-- src/main/performance/searchByEmail.json | 4 ++-- src/main/performance/searchByPhoneNumber.json | 4 ++-- src/main/performance/searchByQrCode.json | 4 ++-- src/main/performance/searchBySocialProvider.json | 4 ++-- src/main/performance/searchByUsername.json | 4 ++-- src/main/performance/updateAccount.json | 4 ++-- .../performance/updateAuthenticationProviderForProfile.json | 4 ++-- src/main/performance/updateSearchableOption.json | 4 ++-- 23 files changed, 45 insertions(+), 45 deletions(-) diff --git a/src/main/performance/addAuthenticationProviderToProfile.json b/src/main/performance/addAuthenticationProviderToProfile.json index 3756fbd..6b0e20c 100644 --- a/src/main/performance/addAuthenticationProviderToProfile.json +++ b/src/main/performance/addAuthenticationProviderToProfile.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.addAuthenticationProviderToProfile", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "profileId": "123e4567-e89b-12d3-a456-426655440011", "authenticationProvider":{"authenticationType": "PHONE", "authenticationProvider": "448873598834"} }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/addContactInfoToAccount.json b/src/main/performance/addContactInfoToAccount.json index 3af0cb3..80543d2 100644 --- a/src/main/performance/addContactInfoToAccount.json +++ b/src/main/performance/addContactInfoToAccount.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.addContactInfoToAccount", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "accountId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", "contactInfo":{"type": "PHONE_CONTACT", "value": "448873598834", "label": "The_Label"} }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/completePendingAccountCreation.json b/src/main/performance/completePendingAccountCreation.json index b375a23..1302b4a 100644 --- a/src/main/performance/completePendingAccountCreation.json +++ b/src/main/performance/completePendingAccountCreation.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.completePendingAccountCreation", "insecure": true, "n": 2000, @@ -9,5 +9,5 @@ "accountName": "Name of account", "firstName": "Atanas" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/createPendingAccount.json b/src/main/performance/createPendingAccount.json index e29cdd9..b0b1a33 100644 --- a/src/main/performance/createPendingAccount.json +++ b/src/main/performance/createPendingAccount.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.createPendingAccount", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "authenticationType": "EMAIL", "authenticationProvider": "pepi.toshev@msn.com" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/deleteAccount.json b/src/main/performance/deleteAccount.json index f4b5ea1..1904039 100644 --- a/src/main/performance/deleteAccount.json +++ b/src/main/performance/deleteAccount.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.deleteAccount", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "accountId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/deleteAuthenticationProviderFromProfile.json b/src/main/performance/deleteAuthenticationProviderFromProfile.json index e0bc804..130b2df 100644 --- a/src/main/performance/deleteAuthenticationProviderFromProfile.json +++ b/src/main/performance/deleteAuthenticationProviderFromProfile.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.deleteAuthenticationProviderFromProfile", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "profileId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", "authenticationProvider":{"authenticationType": "EMAIL", "authenticationProvider": "bill.gates@msn.com", "searchOption": "SEARCH_ENABLED"} }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/deleteContactInfoFromAccount.json b/src/main/performance/deleteContactInfoFromAccount.json index 8e531e8..90a444a 100644 --- a/src/main/performance/deleteContactInfoFromAccount.json +++ b/src/main/performance/deleteContactInfoFromAccount.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.deleteContactInfoFromAccount", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "accountId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35", "contactInfo":{"type": "PHONE_CONTACT", "value": "448873598834", "label": "The_Label"} }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/deleteProfile.json b/src/main/performance/deleteProfile.json index 51fe2e4..f1bf0d0 100644 --- a/src/main/performance/deleteProfile.json +++ b/src/main/performance/deleteProfile.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.deleteProfile", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "profileId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/editContactInfoForAccount.json b/src/main/performance/editContactInfoForAccount.json index 05438c5..bed3095 100644 --- a/src/main/performance/editContactInfoForAccount.json +++ b/src/main/performance/editContactInfoForAccount.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.editContactInfoForAccount", "insecure": true, "n": 2000, @@ -9,5 +9,5 @@ "oldContactInfo":{"type": "PHONE_CONTACT", "value": "448873598834", "label": "The_Label"}, "editedContactInfo":{"type": "PHONE_CONTACT", "value": "448873598877", "label": "New_Label"} }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/getAccountByAccountId.json b/src/main/performance/getAccountByAccountId.json index 360677a..04f0809 100644 --- a/src/main/performance/getAccountByAccountId.json +++ b/src/main/performance/getAccountByAccountId.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.getAccountByAccountId", "insecure": true, "n": 2000, diff --git a/src/main/performance/getAccountByCreationProvider.json b/src/main/performance/getAccountByCreationProvider.json index db53cdf..1609cf6 100644 --- a/src/main/performance/getAccountByCreationProvider.json +++ b/src/main/performance/getAccountByCreationProvider.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.getAccountByCreationProvider", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "authenticationType": "EMAIL", "authenticationIdentifier": "pepi.toshev@msn.com" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/getAccountByLoginOption.json b/src/main/performance/getAccountByLoginOption.json index 6d18fc1..77c6ad1 100644 --- a/src/main/performance/getAccountByLoginOption.json +++ b/src/main/performance/getAccountByLoginOption.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.getAccountByLoginOption", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "authenticationType": "PHONE", "authenticationIdentifier": "448873598834" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/getAccountByQrCode.json b/src/main/performance/getAccountByQrCode.json index 43d2c2a..d516f44 100644 --- a/src/main/performance/getAccountByQrCode.json +++ b/src/main/performance/getAccountByQrCode.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.getAccountByQrCode", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "qrCode": "qrCoded" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/getAllAccountsByProfileId.json b/src/main/performance/getAllAccountsByProfileId.json index 5f25842..b2992ec 100644 --- a/src/main/performance/getAllAccountsByProfileId.json +++ b/src/main/performance/getAllAccountsByProfileId.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.getAllAccountsByProfileId", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "profileId": "47b50a3e-97d3-4b68-b63d-fb83bb9d2e06" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/getProfileByProfileId.json b/src/main/performance/getProfileByProfileId.json index 53053c8..c45a752 100644 --- a/src/main/performance/getProfileByProfileId.json +++ b/src/main/performance/getProfileByProfileId.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.getProfileByProfileId", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "profileId": "ac6d30c3-1e87-4932-ae0f-ebc9c9873b35" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/searchByEmail.json b/src/main/performance/searchByEmail.json index 7c49689..c1ce6cf 100644 --- a/src/main/performance/searchByEmail.json +++ b/src/main/performance/searchByEmail.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.searchByEmail", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "email": "gogo@yahoo.com" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/searchByPhoneNumber.json b/src/main/performance/searchByPhoneNumber.json index af51dad..4ca967a 100644 --- a/src/main/performance/searchByPhoneNumber.json +++ b/src/main/performance/searchByPhoneNumber.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.searchByPhoneNumber", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "phoneNumber": "359888777995" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/searchByQrCode.json b/src/main/performance/searchByQrCode.json index c24fea7..4103974 100644 --- a/src/main/performance/searchByQrCode.json +++ b/src/main/performance/searchByQrCode.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.searchByQrCode", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "qrCode": "qrCoded" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/searchBySocialProvider.json b/src/main/performance/searchBySocialProvider.json index fcb19dd..9e1e782 100644 --- a/src/main/performance/searchBySocialProvider.json +++ b/src/main/performance/searchBySocialProvider.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.searchBySocialProvider", "insecure": true, "n": 2000, @@ -8,5 +8,5 @@ "authenticationType": "PHONE", "authenticationIdentifier": "448873598834" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/searchByUsername.json b/src/main/performance/searchByUsername.json index 8dbf187..5ef8f7a 100644 --- a/src/main/performance/searchByUsername.json +++ b/src/main/performance/searchByUsername.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.getAccountByUsername", "insecure": true, "n": 2000, @@ -7,5 +7,5 @@ "d": { "username": "PetarPetrov" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/updateAccount.json b/src/main/performance/updateAccount.json index b8de7df..d4bbe39 100644 --- a/src/main/performance/updateAccount.json +++ b/src/main/performance/updateAccount.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.updateAccount", "insecure": true, "n": 2000, @@ -9,5 +9,5 @@ "username": "acctIvanv", "firstName": "Neda" }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/updateAuthenticationProviderForProfile.json b/src/main/performance/updateAuthenticationProviderForProfile.json index 19a01aa..e8c132f 100644 --- a/src/main/performance/updateAuthenticationProviderForProfile.json +++ b/src/main/performance/updateAuthenticationProviderForProfile.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.updateAuthenticationProviderForProfile", "insecure": true, "n": 2000, @@ -9,5 +9,5 @@ "oldAuthProvider":{"authenticationType": "PHONE", "authenticationProvider": "448873598834", "searchOption": 1}, "updatedAuthProvider":{"authenticationType": "PHONE", "authenticationProvider": "448873598877", "searchOption": 1} }, - "host": "127.0.0.1:6565" + "host": "" } diff --git a/src/main/performance/updateSearchableOption.json b/src/main/performance/updateSearchableOption.json index 816b32c..1ee14d7 100644 --- a/src/main/performance/updateSearchableOption.json +++ b/src/main/performance/updateSearchableOption.json @@ -1,5 +1,5 @@ { - "proto": "C:/Users/STzenkov/NYNJA_Git/proto-repository/account-service/1.0/account.proto", + "proto": "/account.proto", "call": "account.AccountService.updateSearchableOption", "insecure": true, "n": 2000, @@ -10,5 +10,5 @@ "authenticationIdentifier": "448873598834", "searchOption": 1 }, - "host": "127.0.0.1:6565" + "host": "" } -- GitLab