-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathoe-deployment-workflow.spec.ts
237 lines (210 loc) · 8.65 KB
/
oe-deployment-workflow.spec.ts
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import * as chai from "chai";
import "url-search-params-polyfill";
import { MindSphereSdk } from "../src";
import { DeploymentWorkflowModels } from "../src/api/sdk/open-edge/open-edge-models";
import { decrypt, loadAuth } from "../src/api/utils";
import { setupDeviceTestStructure, tearDownDeviceTestStructure } from "./test-device-setup-utils";
import { getPasskeyForUnitTest } from "./test-utils";
chai.should();
describe.skip("[SDK] DeviceManagementClient.DeploymentWorkflow", () => {
const auth = loadAuth();
const sdk = new MindSphereSdk({
...auth,
basicAuth: decrypt(auth, getPasskeyForUnitTest()),
});
const deploymentWorkflowClient = sdk.GetDeploymentWorkflowClient();
const tenant = sdk.GetTenant();
const workflowTemplate = {
key: `${tenant}_fwupdate`,
states: [
{
name: "STOPPED",
description: "test state stopped",
initial: true,
final: false,
cancel: false,
},
{
name: "RUN",
description: "test state run",
initial: false,
final: false,
cancel: false,
},
{
name: "FINAL",
description: "test state run",
initial: false,
final: true,
cancel: false,
},
{
name: "CANCEL",
description: "test state run",
initial: false,
final: false,
cancel: true,
},
],
transitions: [
{
from: "STOPPED",
to: "RUN",
type: DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER,
allowedTypes: [DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER],
},
{
from: "STOPPED",
to: "CANCEL",
type: DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER,
allowedTypes: [DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER],
},
{
from: "RUN",
to: "CANCEL",
type: DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER,
allowedTypes: [DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER],
},
{
from: "RUN",
to: "FINAL",
type: DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER,
allowedTypes: [DeploymentWorkflowModels.TransitionType.BACKENDTRIGGER],
},
],
groups: [
{
name: "Machine",
states: ["STOPPED", "RUN", "CANCEL", "FINAL"],
},
],
};
const workflowInstance = {
deviceId: "",
model: {
key: `${tenant}_fwupdate`,
customTransitions: [],
},
data: {
userDefined: {},
},
};
let deviceTypeId = "aee2e37f-f562-4ed6-b90a-c43208dc054a";
let assetTypeId = `${tenant}.UnitTestDeviceAssetType`;
let assetId = "";
let gFolderid = "";
let deviceId = "";
let workflowModelKey = `${tenant}_fwupdate`;
let workflowInstanceId = `${tenant}_fwupdate`;
before(async () => {
// tear Down test infrastructure
await tearDownDeviceTestStructure(sdk);
// Setup the testing architecture
const { device, deviceAsset, deviceType, deviceAssetType, folderid } = await setupDeviceTestStructure(sdk);
assetTypeId = `${(deviceAssetType as any).id}`;
deviceTypeId = `${(deviceType as any).id}`;
assetId = `${(deviceAsset as any).assetId}`;
deviceId = `${(device as any).id}`;
gFolderid = `${folderid}`;
});
after(async () => {
// tear Down test infrastructure
await tearDownDeviceTestStructure(sdk);
});
it("SDK should not be undefined", async () => {
sdk.should.not.be.undefined;
});
it("standard properties shoud be defined", async () => {
deploymentWorkflowClient.should.not.be.undefined;
deploymentWorkflowClient.GetGateway().should.be.equal(auth.gateway);
(await deploymentWorkflowClient.GetToken()).length.should.be.greaterThan(200);
(await deploymentWorkflowClient.GetToken()).length.should.be.greaterThan(200);
});
it("should POST to create a new workflow model", async () => {
deploymentWorkflowClient.should.not.be.undefined;
// Post a new deployment workflow model
const newWorkflowModel = await deploymentWorkflowClient.PostNewWorkflowModel(workflowTemplate);
newWorkflowModel.should.not.be.undefined;
newWorkflowModel.should.not.be.null;
(newWorkflowModel as any).key.should.not.be.undefined;
(newWorkflowModel as any).key.should.not.be.null;
workflowModelKey = `${(newWorkflowModel as any).key}`;
});
it("should GET Model description for a given key", async () => {
deploymentWorkflowClient.should.not.be.undefined;
const workflowModel = await deploymentWorkflowClient.GetWorkflowModel(workflowModelKey);
(workflowModel as any).should.not.be.undefined;
(workflowModel as any).should.not.be.null;
(workflowModel as any).states.should.not.be.undefined;
(workflowModel as any).states.should.not.be.null;
(workflowModel as any).states.length.should.be.gte(3);
});
it("should POST a new workflow instance", async () => {
deploymentWorkflowClient.should.not.be.undefined;
// Prepare a new workflow instance
workflowInstance.deviceId = deviceId;
workflowInstance.model.key = workflowModelKey;
const newWorkflowInstance = await deploymentWorkflowClient.PostNewWorflowInstance(workflowInstance, true, true);
newWorkflowInstance.should.not.be.undefined;
newWorkflowInstance.should.not.be.null;
(newWorkflowInstance as any).id.should.not.be.undefined;
(newWorkflowInstance as any).id.should.not.be.null;
workflowInstanceId = (newWorkflowInstance as any).id;
});
it("should GET list of instance descriptions belonging to the caller's tenant.", async () => {
deploymentWorkflowClient.should.not.be.undefined;
const workflowInstances = await deploymentWorkflowClient.GetWorkflowInstances(true, true);
(workflowInstances as any).should.not.be.undefined;
(workflowInstances as any).should.not.be.null;
(workflowInstances as any).page.number.should.equal(0);
(workflowInstances as any).page.size.should.be.gte(10);
(workflowInstances as any).content.length.should.be.gte(0);
});
it("should GET Instance description for a given id", async () => {
deploymentWorkflowClient.should.not.be.undefined;
const workflowInstance = await deploymentWorkflowClient.GetWorkflowInstance(workflowInstanceId, true, true);
(workflowInstance as any).should.not.be.undefined;
(workflowInstance as any).should.not.be.null;
(workflowInstance as any).id.should.not.be.undefined;
(workflowInstance as any).id.should.not.be.null;
});
it("should PATCH Modify current state of a workflow instance.", async () => {
// Prepare state info
const stateInfo = {
progress: 100,
message: "string",
details: {
userDefined: {},
},
state: "RUN",
};
// Patch the state info
const updatedInstance = await deploymentWorkflowClient.PatchWorkflowInstance(
workflowInstanceId,
stateInfo,
true,
true
);
(updatedInstance as any).should.not.be.undefined;
(updatedInstance as any).should.not.be.null;
(updatedInstance as any).id.should.not.be.undefined;
(updatedInstance as any).id.should.not.be.null;
});
it("should POST to cancel a workflow instance", async () => {
deploymentWorkflowClient.should.not.be.undefined;
const workflowInstance = await deploymentWorkflowClient.PostToCancelWorkflowInstance(
workflowInstanceId,
true,
true
);
(workflowInstance as any).should.not.be.undefined;
(workflowInstance as any).should.not.be.null;
(workflowInstance as any).id.should.not.be.undefined;
(workflowInstance as any).id.should.not.be.null;
});
it("should DELETE workflow model", async () => {
deploymentWorkflowClient.should.not.be.undefined;
// delete file
await deploymentWorkflowClient.DeleteWorkflowModel(workflowModelKey);
});
});