File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ vendor_account=vendor_account_$vid
27
27
echo " Create Vendor account - $vendor_account "
28
28
create_new_vendor_account $vendor_account $vid
29
29
30
+ test_divider
31
+
32
+ echo " Create CertificationCenter account"
33
+ create_new_account zb_account " CertificationCenter"
34
+
30
35
# Body
31
36
32
37
# Ledger side errors
@@ -54,6 +59,24 @@ echo "$result"
54
59
55
60
test_divider
56
61
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
+
57
80
# CLI side errors
58
81
59
82
echo " Add Model with VID: $vid PID: $pid : Unknown account"
You can’t perform that action at this time.
0 commit comments