This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathTemplate.js
More file actions
441 lines (408 loc) · 13.3 KB
/
Copy pathTemplate.js
File metadata and controls
441 lines (408 loc) · 13.3 KB
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
import { ensureException, convertHex } from './helpers/utils.js';
const Template = artifacts.require('Template.sol');
contract("Template",(accounts)=>{
// parameters for Template constructor
const offeringType = 'Public sale';
const issuerJurisdiction = 'canada-ca';
const accredited = false;
const details = 'This is first template';
const expires = 1602288000;
const fee = 1000;
const quorum = 10;
const vestingPeriod = 8888888;
// parameters to facilitate the governing of the template function
const jurisdiction = ['canada-ca','aus-ag','india-dl','barbados-bd'];
let KYCAddress;
let owner;
before(async()=>{
KYCAddress = [accounts[0], accounts[2], accounts[3]]; // Asigining the KYC address
owner = accounts[1];
});
describe("Constructor",async()=>{
it("Verify the constructor parameter",async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
let tempData = await template.getUsageDetails();
assert.strictEqual(tempData[0].toNumber(), fee);
assert.strictEqual(tempData[1].toNumber(), quorum);
assert.strictEqual(tempData[2].toNumber(), vestingPeriod);
assert.equal(tempData[3], owner);
});
});
////////////////////////////////////
////// addJurisdiction() Test Cases
////////////////////////////////////
describe("addJurisdiction() Test Cases",async()=>{
it("addJuridisction: Should add the array of jurisdiction into the allowedJusrisdiction mapping",
async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [true, false, true, true], { from : owner });
});
it("addJuridisction: Should fail adding into mapping allowedJurisdiction -- msg.sender is not owner",
async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
try {
await template.addJurisdiction(jurisdiction, [true, false, true, true], { from : accounts[8] });
} catch(error) {
ensureException(error);
}
});
it("addJuridisction: Should fail adding into mapping allowedJurisdiction -- length of array differ",
async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
try {
await template.addJurisdiction(jurisdiction, [true, false, true], { from : owner });
} catch(error) {
ensureException(error);
}
});
it("addJuridisction: Should fail adding into mapping allowedJurisdiction -- Template status is being finalized",
async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [true, true, true, true], { from : owner });
await template.finalizeTemplate({ from : owner });
try {
await template.addJurisdiction(['hong-hk','japan-jp'], [true, false], { from : owner });
} catch(error) {
ensureException(error);
}
});
});
///////////////////////////////////
////// addRoles() Test Cases
//////////////////////////////////
describe("addRoles() Test Cases",async()=>{
it("addRoles:Should add the new roles",async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addRoles([1,2,3], { from : owner });
});
it("addRoles:Should fail in adding the new roles -- fail because msg.sender is not the owner",async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
try {
await template.addRoles([1,2,3], { from : accounts[8] });
} catch(error) {
ensureException(error);
}
});
it("addRoles:Should fail in adding the new roles -- because template status will change to finalized",async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addRoles([1,2], { from : owner });
await template.finalizeTemplate({ from : owner });
try {
await template.addRoles([3], { from : accounts[8] });
} catch(error) {
ensureException(error);
}
});
});
////////////////////////////////
///// updateDetails() Test Cases
////////////////////////////////
describe("updateDetails() Test Cases",async()=>{
it("updateDetails: Should update the details of the template", async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.updateDetails("This is the second template",{ from : owner });
let tempDetails = await template.getTemplateDetails();
assert.strictEqual(convertHex(tempDetails[0]),"This is the second template");
});
it("updateDetails: Should fail in updating the details of the template --details are null ", async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
try {
await template.updateDetails('',{ from : owner });
} catch(error) {
ensureException(error);
}
});
it("updateDetails: Should fail in updating the details of the template -- msg.sender is not owner ", async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
try {
await template.updateDetails("This is the second template",{ from : accounts[8] });
} catch(error) {
ensureException(error);
}
});
});
///////////////////////////////////
///// finalizeTemplate() test cases
///////////////////////////////////
describe("finalizeTemplate() Test Cases",async()=>{
it("finalizetemplate: Should change the template status to finalize", async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.finalizeTemplate({ from : owner });
});
it("finalizetemplate: Should fail to change the template status to finalize -- Due to msg.sender is not owner ", async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
try {
await template.finalizeTemplate({ from : accounts[8] });
} catch(error) {
ensureException(error);
}
});
});
////////////////////////////////////////////
///// checkTemplateRequirements() Test cases
////////////////////////////////////////////
describe("checkTemplateRequirements() Test Cases", async()=>{
it('checkTemplateRequirements: Should met the requirements of template', async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [true, true, true, true], { from : owner });
await template.addRoles([1,2], { from : owner });
let isverify = await template.checkTemplateRequirements.call(issuerJurisdiction, accredited, 1);
assert.isTrue(isverify);
});
it('checkTemplateRequirements: Should fail in meeting the requirements of template -- jurisdiction is false', async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [false, false, true, true], { from : owner });
await template.addRoles([1,2], { from : owner });
try {
await template.checkTemplateRequirements(issuerJurisdiction, accredited, 1);
} catch(error) {
ensureException(error);
}
});
it('checkTemplateRequirements: Should fail in meeting the requirements of template -- jurisdiction is zero', async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [true, false, true, true], { from : owner });
await template.addRoles([1,2], { from : owner });
try {
await template.checkTemplateRequirements(0x0, accredited, 1);
} catch(error) {
ensureException(error);
}
});
it('checkTemplateRequirements: Should fail in meeting the requirements of template -- role is not allowed', async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
accredited,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [true, false, true, true], { from : owner });
await template.addRoles([1,2], { from : owner });
try {
await template.checkTemplateRequirements(0x0, accredited, 4);
} catch(error) {
ensureException(error);
}
});
it('checkTemplateRequirements: Should fail in meeting the requirements of template -- accredited true', async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
true,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [true, true, true, true], { from : owner });
await template.addRoles([1,2], { from : owner });
try {
await template.checkTemplateRequirements(issuerJurisdiction, accredited, 1);
} catch(error) {
ensureException(error);
}
});
it('checkTemplateRequirements: Should pass in meeting the requirements of template ', async()=>{
let template = await Template.new(
owner,
offeringType,
issuerJurisdiction,
true,
KYCAddress,
details,
expires,
fee,
quorum,
vestingPeriod
);
await template.addJurisdiction(jurisdiction, [true, true, true, true], { from : owner });
await template.addRoles([1,2], { from : owner });
await template.checkTemplateRequirements(issuerJurisdiction, true, 1);
});
});
});