Skip to content

Commit c431b47

Browse files
add cli integration tests for deleting certified model versions
1 parent f80729b commit c431b47

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

integration_tests/cli/model-negative-cases.sh

+23
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ vendor_account=vendor_account_$vid
2727
echo "Create Vendor account - $vendor_account"
2828
create_new_vendor_account $vendor_account $vid
2929

30+
test_divider
31+
32+
echo "Create CertificationCenter account"
33+
create_new_account zb_account "CertificationCenter"
34+
3035
# Body
3136

3237
# Ledger side errors
@@ -54,6 +59,24 @@ echo "$result"
5459

5560
test_divider
5661

62+
sv=$RANDOM
63+
echo "Create a Device Model Version with VID: $vid PID: $pid SV: $sv"
64+
result=$(echo 'test1234' | dcld tx model add-model-version --cdVersionNumber=1 --maxApplicableSoftwareVersion=10 --minApplicableSoftwareVersion=1 --vid=$vid --pid=$pid --softwareVersion=$sv --softwareVersionString=1 --from=$vendor_account --yes)
65+
echo "$result"
66+
check_response "$result" "\"code\": 0"
67+
68+
certification_date="2020-01-01T00:00:01Z"
69+
zigbee_certification_type="zigbee"
70+
matter_certification_type="matter"
71+
cd_certificate_id="123"
72+
result=$(echo 'test1234' | dcld tx compliance certify-model --vid=$vid --pid=$pid --softwareVersion=$sv --certificationType="$zigbee_certification_type" --certificationDate="$certification_date" --cdCertificateId="$cd_certificate_id" --from $zb_account --yes)
73+
echo "$result"
74+
75+
echo "Delete Model with VID: ${vid} PID: ${pid}"
76+
result=$(dcld tx model delete-model --vid=$vid --pid=$pid --from=$vendor_account --yes)
77+
check_response "$result" "\"code\": 524" # code for model certified error
78+
79+
5780
# CLI side errors
5881

5982
echo "Add Model with VID: $vid PID: $pid: Unknown account"

0 commit comments

Comments
 (0)