-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Minor refactoring Signed-off-by: Abdulbois <abdulbois.tursunov@dsr-corporation.com> Signed-off-by: Abdulbois <abdulbois123@gmail.com>
- Loading branch information
Showing
4 changed files
with
115 additions
and
121 deletions.
There are no files selected for viewing
113 changes: 113 additions & 0 deletions
113
integration_tests/cli/pki-add-vendor-x509-certificates.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
set -euo pipefail | ||
source integration_tests/cli/common.sh | ||
|
||
root_cert_with_vid_65521_subject="MIGYMQswCQYDVQQGEwJVUzERMA8GA1UECAwITmV3IFlvcmsxETAPBgNVBAcMCE5ldyBZb3JrMRgwFgYDVQQKDA9FeGFtcGxlIENvbXBhbnkxGTAXBgNVBAsMEFRlc3RpbmcgRGl2aXNpb24xGDAWBgNVBAMMD3d3dy5leGFtcGxlLmNvbTEUMBIGCisGAQQBgqJ8AgEMBEZGRjE=" | ||
root_cert_with_vid_65521_subject_key_id="CE:A8:92:66:EA:E0:80:BD:2B:B5:68:E4:0B:07:C4:FA:2C:34:6D:31" | ||
root_cert_with_vid_65521_path="integration_tests/constants/root_cert_with_vid" | ||
root_cert_with_vid_65521_vid=65521 | ||
intermediate_cert_with_vid_subject="MIGuMQswCQYDVQQGEwJVUzERMA8GA1UECAwITmV3IFlvcmsxETAPBgNVBAcMCE5ldyBZb3JrMRgwFgYDVQQKDA9FeGFtcGxlIENvbXBhbnkxGTAXBgNVBAsMEFRlc3RpbmcgRGl2aXNpb24xGDAWBgNVBAMMD3d3dy5leGFtcGxlLmNvbTEUMBIGCisGAQQBgqJ8AgEMBEZGRjExFDASBgorBgEEAYKifAICDARGRkYx" | ||
intermediate_cert_with_vid_subject_key_id="0E:8C:E8:C8:B8:AA:50:BC:25:85:56:B9:B1:9C:C2:C7:D9:C5:2F:17" | ||
intermediate_cert_with_vid_65521_path="integration_tests/constants/intermediate_cert_with_vid_1" | ||
intermediate_cert_with_vid_65522_path="integration_tests/constants/intermediate_cert_with_vid_2" | ||
intermediate_cert_with_vid_65521_serial_number="3" | ||
intermediate_cert_with_vid_65522_serial_number="4" | ||
intermediate_cert_with_vid_65521_vid=65521 | ||
intermediate_cert_with_vid_65522_vid=65522 | ||
|
||
trustee_account="jack" | ||
second_trustee_account="alice" | ||
|
||
test_divider | ||
|
||
echo "ADD VID SCOPED X509 CERTIFICATES" | ||
|
||
vendor_vid_65521=$root_cert_with_vid_65521_vid | ||
vendor_account_65521=vendor_account_$vendor_vid_65521 | ||
echo "Create Vendor account - $vendor_account_65521" | ||
create_new_vendor_account $vendor_account_65521 $vendor_vid_65521 | ||
|
||
echo "Propose and approve root certificate with vid=$root_cert_with_vid_65521_vid" | ||
result=$(echo "$passphrase" | dcld tx pki propose-add-x509-root-cert --certificate="$root_cert_with_vid_65521_path" --vid "$root_cert_with_vid_65521_vid" --from $trustee_account --yes) | ||
check_response "$result" "\"code\": 0" | ||
result=$(echo "$passphrase" | dcld tx pki approve-add-x509-root-cert --subject="$root_cert_with_vid_65521_subject" --subject-key-id="$root_cert_with_vid_65521_subject_key_id" --from $second_trustee_account --yes) | ||
check_response "$result" "\"code\": 0" | ||
|
||
echo "Add an intermediate certificate with vid=$intermediate_cert_with_vid_65521_vid by $vendor_account_65521 with vid=$vendor_vid_65521" | ||
result=$(echo "$passphrase" | dcld tx pki add-x509-cert --certificate="$intermediate_cert_with_vid_65521_path" --from $vendor_account_65521 --yes) | ||
check_response "$result" "\"code\": 0" | ||
|
||
echo "Request all approved root certificates." | ||
result=$(dcld query pki all-x509-certs) | ||
echo $result | jq | ||
check_response "$result" "\"subject\": \"$root_cert_with_vid_65521_subject\"" | ||
check_response "$result" "\"subjectKeyId\": \"$root_cert_with_vid_65521_subject_key_id\"" | ||
check_response "$result" "\"subject\": \"$intermediate_cert_with_vid_subject\"" | ||
check_response "$result" "\"subjectKeyId\": \"$intermediate_cert_with_vid_subject_key_id\"" | ||
check_response "$result" "\"serialNumber\": \"$intermediate_cert_with_vid_65521_serial_number\"" | ||
|
||
echo "Try to add an intermediate certificate with vid=$intermediate_cert_with_vid_65522_vid by $vendor_account_65521 with vid=$vendor_vid_65521" | ||
result=$(echo "$passphrase" | dcld tx pki add-x509-cert --certificate="$intermediate_cert_with_vid_65522_path" --from $vendor_account_65521 --yes) | ||
check_response "$result" "\"code\": 440" | ||
|
||
echo "Request all approved root certificates should not contain intermediate cert with serialNumber=$intermediate_cert_with_vid_65522_serial_number" | ||
result=$(dcld query pki all-x509-certs) | ||
echo $result | jq | ||
check_response "$result" "\"subject\": \"$root_cert_with_vid_65521_subject\"" | ||
check_response "$result" "\"subject\": \"$intermediate_cert_with_vid_subject\"" | ||
check_response "$result" "\"subjectKeyId\": \"$root_cert_with_vid_65521_subject_key_id\"" | ||
check_response "$result" "\"subjectKeyId\": \"$intermediate_cert_with_vid_subject_key_id\"" | ||
check_response "$result" "\"serialNumber\": \"$intermediate_cert_with_vid_65521_serial_number\"" | ||
response_does_not_contain "$result" "\"serialNumber\": \"$intermediate_cert_with_vid_65522_serial_number\"" | ||
|
||
root_cert_with_no_vid_path="integration_tests/constants/paa_cert_no_vid" | ||
root_cert_with_no_vid_subject="MBoxGDAWBgNVBAMMD01hdHRlciBUZXN0IFBBQQ==" | ||
root_cert_with_no_vid_subject_key_id="78:5C:E7:05:B8:6B:8F:4E:6F:C7:93:AA:60:CB:43:EA:69:68:82:D5" | ||
intermediate_cert_with_vid_65522_path="integration_tests/constants/pai_cert_numeric_vid" | ||
intermediate_cert_with_vid_65522_subject="MDAxGDAWBgNVBAMMD01hdHRlciBUZXN0IFBBSTEUMBIGCisGAQQBgqJ8AgEMBEZGRjI=" | ||
intermediate_cert_with_vid_65522_subject_key_id="61:3D:D0:87:35:5E:F0:8B:AE:01:E4:C6:9A:8F:C7:3D:AC:8C:7D:FD" | ||
intermediate_cert_with_vid_65522_vid=65522 | ||
intermediate_cert_with_vid_65522_serial_number="4428370313154203676" | ||
|
||
echo "Propose and approve non-vid root certificate" | ||
result=$(echo "$passphrase" | dcld tx pki propose-add-x509-root-cert --certificate="$root_cert_with_no_vid_path" --vid "65522" --from $trustee_account --yes) | ||
check_response "$result" "\"code\": 0" | ||
result=$(echo "$passphrase" | dcld tx pki approve-add-x509-root-cert --subject="$root_cert_with_no_vid_subject" --subject-key-id="$root_cert_with_no_vid_subject_key_id" --from $second_trustee_account --yes) | ||
check_response "$result" "\"code\": 0" | ||
|
||
vendor_vid_65523=65523 | ||
vendor_account_65523=vendor_account_$vendor_vid_65523 | ||
echo "Create Vendor account - $vendor_account_65523" | ||
create_new_vendor_account $vendor_account_65523 $vendor_vid_65523 | ||
|
||
echo "Try to add an intermediate certificate with vid=$intermediate_cert_with_vid_65522_vid by $vendor_account_65523 with vid=$vendor_vid_65523" | ||
result=$(echo "$passphrase" | dcld tx pki add-x509-cert --certificate="$intermediate_cert_with_vid_65522_path" --from $vendor_account_65523 --yes) | ||
check_response "$result" "\"code\": 439" | ||
|
||
echo "Request all approved root certificates should not contain intermediate cert with serialNumber=$intermediate_cert_with_vid_65522_serial_number" | ||
result=$(dcld query pki all-x509-certs) | ||
echo $result | jq | ||
check_response "$result" "\"subject\": \"$root_cert_with_no_vid_subject\"" | ||
check_response "$result" "\"subjectKeyId\": \"$root_cert_with_no_vid_subject_key_id\"" | ||
response_does_not_contain "$result" "\"subject\": \"$intermediate_cert_with_vid_65522_subject\"" | ||
response_does_not_contain "$result" "\"subjectKeyId\": \"$intermediate_cert_with_vid_65522_subject_key_id" | ||
response_does_not_contain "$result" "\"serialNumber\": \"$intermediate_cert_with_vid_65522_serial_number\"" | ||
|
||
vendor_vid_65522=65522 | ||
vendor_account_65522=vendor_account_$vendor_vid_65522 | ||
echo "Create Vendor account - $vendor_account_65522" | ||
create_new_vendor_account $vendor_account_65522 $vendor_vid_65522 | ||
|
||
echo "Add an intermediate certificate with vid=$intermediate_cert_with_vid_65522_vid by $vendor_account_65522 with vid=$vendor_vid_65522" | ||
result=$(echo "$passphrase" | dcld tx pki add-x509-cert --certificate="$intermediate_cert_with_vid_65522_path" --from $vendor_account_65522 --yes) | ||
check_response "$result" "\"code\": 0" | ||
|
||
echo "Request all approved root certificates should contain intermediate cert with serialNumber=$intermediate_cert_with_vid_65522_serial_number" | ||
result=$(dcld query pki all-x509-certs) | ||
echo $result | jq | ||
check_response "$result" "\"subject\": \"$root_cert_with_no_vid_subject\"" | ||
check_response "$result" "\"subjectKeyId\": \"$root_cert_with_no_vid_subject_key_id\"" | ||
check_response "$result" "\"subject\": \"$intermediate_cert_with_vid_65522_subject\"" | ||
check_response "$result" "\"subjectKeyId\": \"$intermediate_cert_with_vid_65522_subject_key_id" | ||
check_response "$result" "\"serialNumber\": \"$intermediate_cert_with_vid_65522_serial_number\"" | ||
|
||
test_divider |
119 changes: 0 additions & 119 deletions
119
integration_tests/cli/pki-add-vid-scoped-x509-certificates.sh
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters