-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcompliancetest_test.go
104 lines (89 loc) · 5.14 KB
/
compliancetest_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2020 DSR Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package rest_test
import (
"testing"
"github.com/stretchr/testify/require"
testconstants "github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/constants"
"github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/utils"
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
)
/*
To Run test you need:
* Run LocalNet with: `make install && make localnet_init && make localnet_start`
* run RPC service with `dclcli rest-server --chain-id dclchain`
*/
//nolint:funlen
func TestCompliancetestDemo(t *testing.T) {
// Register new Vendor account
vendor := utils.CreateNewAccount(auth.AccountRoles{auth.Vendor}, testconstants.VID)
// Register new TestHouse account
testHouse := utils.CreateNewAccount(auth.AccountRoles{auth.TestHouse}, 0)
// Register new TestHouse account
secondTestHouse := utils.CreateNewAccount(auth.AccountRoles{auth.TestHouse}, 0)
// Publish model info
model := utils.NewMsgAddModel(vendor.Address, testconstants.VID)
_, _ = utils.AddModel(model, vendor)
// Publish modelVersion
modelVersion := utils.NewMsgAddModelVersion(model.VID, model.PID,
testconstants.SoftwareVersion, testconstants.SoftwareVersionString, vendor.Address)
_, _ = utils.AddModelVersion(modelVersion, vendor)
// Publish first testing result using Sign and Broadcast AddTestingResult message
firstTestingResult := utils.NewMsgAddTestingResult(model.VID, model.PID,
modelVersion.SoftwareVersion, modelVersion.SoftwareVersionString, testHouse.Address)
utils.SignAndBroadcastMessage(testHouse, firstTestingResult)
// Check testing result is created
receivedTestingResult, _ := utils.GetTestingResult(firstTestingResult.VID,
firstTestingResult.PID, firstTestingResult.SoftwareVersion)
require.Equal(t, receivedTestingResult.VID, firstTestingResult.VID)
require.Equal(t, receivedTestingResult.PID, firstTestingResult.PID)
require.Equal(t, receivedTestingResult.SoftwareVersion, firstTestingResult.SoftwareVersion)
require.Equal(t, 1, len(receivedTestingResult.Results))
require.Equal(t, receivedTestingResult.Results[0].TestResult, firstTestingResult.TestResult)
require.Equal(t, receivedTestingResult.Results[0].TestDate, firstTestingResult.TestDate)
require.Equal(t, receivedTestingResult.Results[0].Owner, firstTestingResult.Signer)
// Publish second model info
secondModel := utils.NewMsgAddModel(vendor.Address, testconstants.VID)
_, _ = utils.AddModel(secondModel, vendor)
// Publish second modelVersion
secondModelVersion := utils.NewMsgAddModelVersion(secondModel.VID, secondModel.PID,
testconstants.SoftwareVersion, testconstants.SoftwareVersionString, vendor.Address)
_, _ = utils.AddModelVersion(secondModelVersion, vendor)
// Publish second testing result using POST
secondTestingResult := utils.NewMsgAddTestingResult(secondModel.VID, secondModel.PID,
secondModelVersion.SoftwareVersion, secondModelVersion.SoftwareVersionString, testHouse.Address)
_, _ = utils.PublishTestingResult(secondTestingResult, testHouse)
// Check testing result is created
receivedTestingResult, _ = utils.GetTestingResult(secondTestingResult.VID,
secondTestingResult.PID, secondTestingResult.SoftwareVersion)
require.Equal(t, receivedTestingResult.VID, secondTestingResult.VID)
require.Equal(t, receivedTestingResult.PID, secondTestingResult.PID)
require.Equal(t, receivedTestingResult.SoftwareVersion, secondTestingResult.SoftwareVersion)
require.Equal(t, 1, len(receivedTestingResult.Results))
require.Equal(t, receivedTestingResult.Results[0].TestResult, secondTestingResult.TestResult)
require.Equal(t, receivedTestingResult.Results[0].TestDate, secondTestingResult.TestDate)
require.Equal(t, receivedTestingResult.Results[0].Owner, secondTestingResult.Signer)
// Publish new testing result for second model
thirdTestingResult := utils.NewMsgAddTestingResult(secondModel.VID, secondModel.PID,
secondModelVersion.SoftwareVersion, secondModelVersion.SoftwareVersionString, secondTestHouse.Address)
_, _ = utils.PublishTestingResult(thirdTestingResult, secondTestHouse)
// Check testing result is created
receivedTestingResult, _ = utils.GetTestingResult(secondTestingResult.VID,
secondTestingResult.PID, secondTestingResult.SoftwareVersion)
require.Equal(t, 2, len(receivedTestingResult.Results))
require.Equal(t, receivedTestingResult.Results[0].Owner, secondTestingResult.Signer)
require.Equal(t, receivedTestingResult.Results[0].TestResult, secondTestingResult.TestResult)
require.Equal(t, receivedTestingResult.Results[1].Owner, thirdTestingResult.Signer)
require.Equal(t, receivedTestingResult.Results[1].TestResult, thirdTestingResult.TestResult)
}