-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconductor.ts
840 lines (756 loc) · 27.7 KB
/
conductor.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
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
import {
ActionHash,
AppBundleSource,
AppSignal,
CellProvisioningStrategy,
CellType,
CloneId,
Duration,
EntryHash,
fakeAgentPubKey,
ProvisionedCell,
RevokeAgentKeyResponse,
Signal,
SignalCb,
SignalType,
} from "@holochain/client";
import assert from "node:assert";
import { readFileSync, realpathSync } from "node:fs";
import { URL } from "node:url";
import test from "tape-promise/tape.js";
import {
NetworkType,
Player,
cleanAllConductors,
createConductor,
dhtSync,
enableAndGetAgentApp,
getZomeCaller,
runLocalServices,
stopLocalServices,
} from "../../src";
import { FIXTURE_DNA_URL, FIXTURE_HAPP_URL } from "../fixture";
import { decode } from "@msgpack/msgpack";
import yaml from "js-yaml";
const ROLE_NAME = "test";
test("Local Conductor - spawn a conductor with WebRTC network", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl, {
networkType: NetworkType.WebRtc,
startup: false,
});
const tmpDirPath = conductor.getTmpDirectory();
const conductorConfig = readFileSync(
tmpDirPath + "/conductor-config.yaml"
).toString();
t.ok(conductorConfig.includes("- type: webrtc"));
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - spawn a conductor with mem network", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl, {
networkType: NetworkType.Mem,
startup: false,
});
const tmpDirPath = conductor.getTmpDirectory();
const conductorConfig = readFileSync(
tmpDirPath + "/conductor-config.yaml"
).toString();
t.ok(conductorConfig.includes("transport_pool:\n - type: mem"));
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - spawn a conductor with a bootstrap service", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const bootstrapUrl = new URL("https://test.bootstrap.com");
const conductor = await createConductor(signalingServerUrl, {
bootstrapServerUrl: bootstrapUrl,
startup: false,
});
const tmpDirPath = conductor.getTmpDirectory();
const conductorConfig = readFileSync(
tmpDirPath + "/conductor-config.yaml"
).toString();
t.ok(conductorConfig.includes(`bootstrap_service: ${bootstrapUrl.href}`));
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - spawn a conductor and check for admin ws", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
t.ok(conductor.adminWs());
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
// unstable-dpki
// test("Local Conductor - default conductor has DPKI enabled", async (t) => {
// const { servicesProcess, signalingServerUrl } = await runLocalServices();
// const conductor = await createConductor(signalingServerUrl);
// const tmpDirPath = conductor.getTmpDirectory();
// const conductorConfig = readFileSync(
// tmpDirPath + "/conductor-config.yaml"
// ).toString();
// t.assert(
// conductorConfig.includes("no_dpki: false"),
// "DPKI enabled in conductor config"
// );
// await conductor.shutDown();
// await stopLocalServices(servicesProcess);
// await cleanAllConductors();
// });
// test("Local Conductor - spawn a conductor without DPKI enabled", async (t) => {
// const { servicesProcess, signalingServerUrl } = await runLocalServices();
// const conductor = await createConductor(signalingServerUrl, { noDpki: true });
// const tmpDirPath = conductor.getTmpDirectory();
// const conductorConfig = readFileSync(
// tmpDirPath + "/conductor-config.yaml"
// ).toString();
// t.assert(
// conductorConfig.includes("no_dpki: true"),
// "DPKI disabled in conductor config"
// );
// await conductor.shutDown();
// await stopLocalServices(servicesProcess);
// await cleanAllConductors();
// });
// test("Local Conductor - default conductor has test DPKI network seed", async (t) => {
// const { servicesProcess, signalingServerUrl } = await runLocalServices();
// const conductor = await createConductor(signalingServerUrl);
// const tmpDirPath = conductor.getTmpDirectory();
// const conductorConfig = readFileSync(
// tmpDirPath + "/conductor-config.yaml"
// ).toString();
// t.assert(
// conductorConfig.includes("network_seed: deepkey-test"),
// "default DPKI network seed set in conductor config"
// );
// await conductor.shutDown();
// await stopLocalServices(servicesProcess);
// await cleanAllConductors();
// });
// test("Local Conductor - set a DPKI network seed", async (t) => {
// const { servicesProcess, signalingServerUrl } = await runLocalServices();
// const networkSeed = "tryorama-test-dpki";
// const conductor = await createConductor(signalingServerUrl, {
// dpkiNetworkSeed: networkSeed,
// });
// const tmpDirPath = conductor.getTmpDirectory();
// const conductorConfig = readFileSync(
// tmpDirPath + "/conductor-config.yaml"
// ).toString();
// t.assert(
// conductorConfig.includes(`network_seed: ${networkSeed}`),
// "DPKI network seed set in conductor config"
// );
// await conductor.shutDown();
// await stopLocalServices(servicesProcess);
// await cleanAllConductors();
// });
test("Local Conductor - revoke agent key", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: app.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, app);
// Alice can create an entry before revoking agent key.
const entryContent = "test-content";
const createEntryResponse: EntryHash = await alice.cells[0].callZome({
zome_name: "coordinator",
fn_name: "create",
payload: entryContent,
});
t.ok(createEntryResponse, "created entry successfully");
const response: RevokeAgentKeyResponse = await conductor
.adminWs()
.revokeAgentKey({ app_id: alice.appId, agent_key: alice.agentPubKey });
t.deepEqual(response, [], "revoked key on all cells");
// After revoking her key, Alice should no longer be able to create an entry.
await t.rejects(
alice.cells[0].callZome({
zome_name: "coordinator",
fn_name: "create",
payload: entryContent,
})
);
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - get app info with app ws", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
await conductor
.adminWs()
.enableApp({ installed_app_id: app.installed_app_id });
const port = await conductor.attachAppInterface();
const issued = await conductor
.adminWs()
.issueAppAuthenticationToken({ installed_app_id: app.installed_app_id });
const appWs = await conductor.connectAppWs(issued.token, port);
const appInfo = await appWs.appInfo();
assert(appInfo);
t.deepEqual(appInfo.status, "running");
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - get app info with app agent ws", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
await conductor
.adminWs()
.enableApp({ installed_app_id: app.installed_app_id });
const port = await conductor.attachAppInterface();
const issued = await conductor
.adminWs()
.issueAppAuthenticationToken({ installed_app_id: app.installed_app_id });
const appWs = await conductor.connectAppWs(issued.token, port);
const appInfo = await appWs.appInfo();
t.deepEqual(appInfo.status, "running");
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - install app with deferred memproofs", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
bundle: {
manifest: {
manifest_version: "1",
name: "app",
roles: [
{
name: ROLE_NAME,
provisioning: {
strategy: CellProvisioningStrategy.Create,
deferred: false,
},
dna: {
path: realpathSync(FIXTURE_DNA_URL),
modifiers: { network_seed: "some_seed" },
},
},
],
membrane_proofs_deferred: true,
},
resources: {},
},
});
const port = await conductor.attachAppInterface();
const issued = await conductor
.adminWs()
.issueAppAuthenticationToken({ installed_app_id: app.installed_app_id });
const appWs = await conductor.connectAppWs(issued.token, port);
let appInfo = await appWs.appInfo();
t.deepEqual(
appInfo.status,
{ disabled: { reason: "never_started" } },
"app status is never_started"
);
const response = await appWs.provideMemproofs({});
t.equal(response, undefined, "providing memproofs successful");
await conductor
.adminWs()
.enableApp({ installed_app_id: app.installed_app_id });
appInfo = await appWs.appInfo();
t.equal(appInfo.status, "running", "app status is running");
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - install app with roles settings", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const originTime = Date.now();
const quantumTime: Duration = {
secs: originTime,
nanos: 0,
};
const progenitorKey = Uint8Array.from(await fakeAgentPubKey());
const app = await conductor.installApp(
{
bundle: {
manifest: {
manifest_version: "1",
name: "app",
roles: [
{
name: ROLE_NAME,
provisioning: {
strategy: CellProvisioningStrategy.Create,
deferred: false,
},
dna: {
path: realpathSync(FIXTURE_DNA_URL),
modifiers: { network_seed: "some_seed" },
},
},
],
membrane_proofs_deferred: true,
},
resources: {},
},
},
{
rolesSettings: {
[ROLE_NAME]: {
type: "Provisioned",
membrane_proof: new Uint8Array(6),
modifiers: {
network_seed: "hello",
properties: yaml.dump({ progenitor: progenitorKey }),
origin_time: originTime,
quantum_time: quantumTime,
},
},
},
}
);
const port = await conductor.attachAppInterface();
const issued = await conductor
.adminWs()
.issueAppAuthenticationToken({ installed_app_id: app.installed_app_id });
const appWs = await conductor.connectAppWs(issued.token, port);
const appInfo = await appWs.appInfo();
const provisionedCell: ProvisionedCell =
appInfo.cell_info[ROLE_NAME][0][CellType.Provisioned];
t.equal(provisionedCell.dna_modifiers.network_seed, "hello");
t.deepEqual(
yaml.load(decode(provisionedCell.dna_modifiers.properties) as string),
{ progenitor: progenitorKey }
);
t.equal(provisionedCell.dna_modifiers.origin_time, originTime);
t.deepEqual(provisionedCell.dna_modifiers.quantum_time, quantumTime);
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - install and call an app", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: app.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, app);
t.ok(app.installed_app_id);
const entryContent = "Bye bye, world";
const createEntryResponse: EntryHash = await alice.cells[0].callZome({
zome_name: "coordinator",
fn_name: "create",
payload: entryContent,
});
t.ok(createEntryResponse);
const readEntryResponse: typeof entryContent = await alice.cells[0].callZome({
zome_name: "coordinator",
fn_name: "read",
payload: createEntryResponse,
});
t.equal(readEntryResponse, entryContent);
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - get a convenience function for zome calls", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: app.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, app);
const coordinatorZomeCall = getZomeCaller(alice.cells[0], "coordinator");
t.equal(
typeof coordinatorZomeCall,
"function",
"getZomeCaller returns a function"
);
const entryHeaderHash: ActionHash = await coordinatorZomeCall(
"create",
"test-entry"
);
const entryHeaderHashB64 = Buffer.from(entryHeaderHash).toString("base64");
t.equal(entryHeaderHash.length, 39, "ActionHash is 39 bytes long");
t.ok(entryHeaderHashB64.startsWith("hCkk"), "ActionHash starts with hCkk");
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - install multiple agents and apps and get access to agents and cells", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const [aliceApp, bobApp] = await conductor.installAgentsApps({
agentsApps: [
{ app: { path: FIXTURE_HAPP_URL.pathname } },
{ app: { path: FIXTURE_HAPP_URL.pathname } },
],
});
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issuedAlice = await adminWs.issueAppAuthenticationToken({
installed_app_id: aliceApp.installed_app_id,
});
const issuedBob = await adminWs.issueAppAuthenticationToken({
installed_app_id: bobApp.installed_app_id,
});
const appWsAlice = await conductor.connectAppWs(issuedAlice.token, port);
const appWsBob = await conductor.connectAppWs(issuedBob.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWsAlice, aliceApp);
const bob = await enableAndGetAgentApp(adminWs, appWsBob, bobApp);
alice.cells.forEach((cell) =>
t.deepEqual(cell.cell_id[1], alice.agentPubKey)
);
bob.cells.forEach((cell) => t.deepEqual(cell.cell_id[1], bob.agentPubKey));
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - get a named cell by role name", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: app.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, app);
t.ok(alice.namedCells.get(ROLE_NAME), "dna role name matches");
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - zome call can time out before completion", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const app = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: app.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, app);
const cell = alice.namedCells.get(ROLE_NAME);
assert(cell);
await t.rejects(
cell.callZome(
{ zome_name: "coordinator", fn_name: "create", payload: "test" },
1
)
);
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - create and read an entry using the entry zome", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const agentPubKey = await conductor.adminWs().generateAgentPubKey();
const agentPubKeyB64 = Buffer.from(agentPubKey).toString("base64");
t.equal(agentPubKey.length, 39);
t.ok(agentPubKeyB64.startsWith("hCAk"));
const installed_app_id = "entry-app";
const app = await conductor.installApp(
{ path: FIXTURE_HAPP_URL.pathname },
{
installedAppId: installed_app_id,
agentPubKey,
}
);
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: app.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, app);
const { cell_id } = alice.cells[0];
t.ok(Buffer.from(cell_id[0]).toString("base64").startsWith("hC0k"));
t.ok(Buffer.from(cell_id[1]).toString("base64").startsWith("hCAk"));
const entryContent = "test-content";
const createEntryHash: EntryHash = await appWs.callZome({
cell_id,
zome_name: "coordinator",
fn_name: "create",
provenance: agentPubKey,
payload: entryContent,
});
const createdEntryHashB64 = Buffer.from(createEntryHash).toString("base64");
t.equal(createEntryHash.length, 39);
t.ok(createdEntryHashB64.startsWith("hCkk"));
const readEntryResponse: typeof entryContent = await appWs.callZome({
cell_id,
zome_name: "coordinator",
fn_name: "read",
provenance: agentPubKey,
payload: createEntryHash,
});
t.equal(readEntryResponse, entryContent);
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - clone cell management", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
const conductor = await createConductor(signalingServerUrl);
const agentPubKey = await conductor.adminWs().generateAgentPubKey();
const appId = "entry-app";
const app = await conductor.installApp(
{ path: FIXTURE_HAPP_URL.pathname },
{
installedAppId: appId,
agentPubKey,
}
);
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: app.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, app);
const cloneCell = await appWs.createCloneCell({
role_name: ROLE_NAME,
modifiers: { network_seed: "test-seed" },
});
t.deepEqual(
cloneCell.clone_id,
new CloneId(ROLE_NAME, 0).toString(),
"clone id is 'role_name.0'"
);
t.deepEqual(
cloneCell.cell_id[1],
alice.cells[0].cell_id[1],
"agent pub key in clone cell and base cell match"
);
const testContent = "test-content";
const entryActionHash: ActionHash = await appWs.callZome({
cell_id: cloneCell.cell_id,
zome_name: "coordinator",
fn_name: "create",
payload: testContent,
provenance: agentPubKey,
});
await appWs.disableCloneCell({
clone_cell_id: cloneCell.clone_id,
});
await t.rejects(
appWs.callZome({
cell_id: cloneCell.cell_id,
zome_name: "coordinator",
fn_name: "read",
payload: entryActionHash,
provenance: agentPubKey,
}),
"disabled clone cell cannot be called"
);
const enabledCloneCell = await appWs.enableCloneCell({
clone_cell_id: cloneCell.clone_id,
});
t.deepEqual(
enabledCloneCell,
cloneCell,
"enabled clone cell matches created clone cell"
);
const readEntryResponse: typeof testContent = await appWs.callZome(
{
cell_id: cloneCell.cell_id,
zome_name: "coordinator",
fn_name: "read",
payload: entryActionHash,
provenance: agentPubKey,
},
40000
);
t.equal(readEntryResponse, testContent, "enabled clone cell can be called");
await appWs.disableCloneCell({
clone_cell_id: cloneCell.cell_id[0],
});
await conductor
.adminWs()
.deleteCloneCell({ app_id: appId, clone_cell_id: cloneCell.cell_id[0] });
await t.rejects(
appWs.enableCloneCell({ clone_cell_id: cloneCell.clone_id }),
"deleted clone cell cannot be enabled"
);
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - 2 agent apps test", async (t) => {
const { servicesProcess, bootstrapServerUrl, signalingServerUrl } =
await runLocalServices();
const app: AppBundleSource = { path: FIXTURE_HAPP_URL.pathname };
const conductor1 = await createConductor(signalingServerUrl, {
bootstrapServerUrl,
});
const conductor2 = await createConductor(signalingServerUrl, {
bootstrapServerUrl,
});
const aliceApp = await conductor1.installApp(app);
const bobApp = await conductor2.installApp(app);
const adminWs1 = conductor1.adminWs();
const adminWs2 = conductor2.adminWs();
const port1 = await conductor1.attachAppInterface();
const port2 = await conductor2.attachAppInterface();
const issued1 = await adminWs1.issueAppAuthenticationToken({
installed_app_id: aliceApp.installed_app_id,
});
const issued2 = await adminWs2.issueAppAuthenticationToken({
installed_app_id: bobApp.installed_app_id,
});
const appWs1 = await conductor1.connectAppWs(issued1.token, port1);
const appWs2 = await conductor2.connectAppWs(issued2.token, port2);
const aliceAgentApp = await enableAndGetAgentApp(adminWs1, appWs1, aliceApp);
const bobAgentApp = await enableAndGetAgentApp(adminWs2, appWs2, bobApp);
const alice: Player = {
conductor: conductor1,
appWs: appWs1,
...aliceAgentApp,
};
const bob: Player = {
conductor: conductor2,
appWs: appWs2,
...bobAgentApp,
};
const entryContent = "test-content";
const createEntryHash: EntryHash = await alice.cells[0].callZome({
zome_name: "coordinator",
fn_name: "create",
payload: entryContent,
});
await dhtSync([alice, bob], alice.cells[0].cell_id[0]);
const readEntryResponse: typeof entryContent = await bob.cells[0].callZome({
zome_name: "coordinator",
fn_name: "read",
payload: createEntryHash,
});
t.equal(readEntryResponse, entryContent);
await conductor1.shutDown();
await conductor2.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - create and read an entry, 2 conductors, 2 cells, 2 agents", async (t) => {
const { servicesProcess, bootstrapServerUrl, signalingServerUrl } =
await runLocalServices();
const app: AppBundleSource = { path: FIXTURE_HAPP_URL.pathname };
const conductor1 = await createConductor(signalingServerUrl, {
bootstrapServerUrl,
});
const adminWs1 = conductor1.adminWs();
const aliceApp = await conductor1.installApp(app);
const port1 = await conductor1.attachAppInterface();
const issued1 = await adminWs1.issueAppAuthenticationToken({
installed_app_id: aliceApp.installed_app_id,
});
const appWs1 = await conductor1.connectAppWs(issued1.token, port1);
const aliceAgentApp = await enableAndGetAgentApp(adminWs1, appWs1, aliceApp);
const alice: Player = {
conductor: conductor1,
appWs: appWs1,
...aliceAgentApp,
};
const conductor2 = await createConductor(signalingServerUrl, {
bootstrapServerUrl,
});
const adminWs2 = conductor2.adminWs();
const bobApp = await conductor2.installApp(app);
const port2 = await conductor2.attachAppInterface();
const issued2 = await adminWs2.issueAppAuthenticationToken({
installed_app_id: bobApp.installed_app_id,
});
const appWs2 = await conductor2.connectAppWs(issued2.token, port2);
const bobAgentApp = await enableAndGetAgentApp(adminWs2, appWs2, bobApp);
const bob: Player = {
conductor: conductor2,
appWs: appWs2,
...bobAgentApp,
};
const entryContent = "test-content";
const createEntryHash: EntryHash = await alice.cells[0].callZome({
zome_name: "coordinator",
fn_name: "create",
payload: entryContent,
});
const createdEntryHashB64 = Buffer.from(createEntryHash).toString("base64");
t.equal(createEntryHash.length, 39);
t.ok(createdEntryHashB64.startsWith("hCkk"));
await dhtSync([alice, bob], alice.cells[0].cell_id[0]);
const readEntryResponse: typeof entryContent = await bob.cells[0].callZome({
zome_name: "coordinator",
fn_name: "read",
payload: createEntryHash,
});
t.equal(readEntryResponse, entryContent);
await conductor1.shutDown();
await conductor2.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});
test("Local Conductor - Receive a signal", async (t) => {
const { servicesProcess, signalingServerUrl } = await runLocalServices();
let signalHandler: SignalCb | undefined;
const signalReceived = new Promise<AppSignal>((resolve) => {
signalHandler = (signal: Signal) => {
assert(SignalType.App in signal);
resolve(signal[SignalType.App]);
};
});
const conductor = await createConductor(signalingServerUrl);
const aliceApp = await conductor.installApp({
path: FIXTURE_HAPP_URL.pathname,
});
const adminWs = conductor.adminWs();
const port = await conductor.attachAppInterface();
const issued = await adminWs.issueAppAuthenticationToken({
installed_app_id: aliceApp.installed_app_id,
});
const appWs = await conductor.connectAppWs(issued.token, port);
const alice = await enableAndGetAgentApp(adminWs, appWs, aliceApp);
assert(signalHandler);
appWs.on("signal", signalHandler);
const aliceSignal = { value: "signal" };
await alice.cells[0].callZome({
zome_name: "coordinator",
fn_name: "signal_loopback",
payload: aliceSignal,
});
const actualSignal = await signalReceived;
t.deepEqual(actualSignal.payload, aliceSignal);
await conductor.shutDown();
await stopLocalServices(servicesProcess);
await cleanAllConductors();
});