-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #159 single-sig delegate rotation
- Loading branch information
1 parent
c64e006
commit f386bb8
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import { | ||
CreateIdentiferArgs, | ||
RotateIdentifierArgs, | ||
SignifyClient, | ||
} from 'signify-ts'; | ||
import { | ||
getOrCreateClients, | ||
getOrCreateContact, | ||
getOrCreateIdentifier, | ||
} from './utils/test-setup'; | ||
import { waitOperation } from './utils/test-util'; | ||
|
||
let client1: SignifyClient, client2: SignifyClient; | ||
let name1_id: string, name1_oobi: string; | ||
let contact1_id: string; | ||
|
||
beforeAll(async () => { | ||
[client1, client2] = await getOrCreateClients(2); | ||
}); | ||
beforeAll(async () => { | ||
[name1_id, name1_oobi] = await getOrCreateIdentifier(client1, 'name1'); | ||
}); | ||
beforeAll(async () => { | ||
contact1_id = await getOrCreateContact(client2, 'contact1', name1_oobi); | ||
}); | ||
|
||
describe('singlesig-drt', () => { | ||
test('delegate1a', async () => { | ||
// delegate creates identifier without witnesses | ||
// TODO: should have witness config | ||
let kargs: CreateIdentiferArgs = { | ||
delpre: name1_id, | ||
}; | ||
let result = await client2.identifiers().create('delegate1', kargs); | ||
let op = await result.op(); | ||
let delegate1 = await client2.identifiers().get('delegate1'); | ||
expect(op.name).toEqual(`delegation.${delegate1.prefix}`); | ||
}); | ||
test('delegator1', async () => { | ||
// delegator approves delegate | ||
let delegate1 = await client2.identifiers().get('delegate1'); | ||
let seal = { | ||
i: delegate1.prefix, | ||
s: 0, | ||
d: delegate1.prefix, | ||
}; | ||
let result = await client1.identifiers().interact('name1', seal); | ||
let op = waitOperation(client1, await result.op()); | ||
}); | ||
test('delegate1b', async () => { | ||
// delegate waits for completion | ||
let delegate1 = await client2.identifiers().get('delegate1'); | ||
let op: any = { name: `delegation.${delegate1.prefix}` }; | ||
op = await waitOperation(client2, op); | ||
expect(delegate1.prefix).toEqual(op.response.i); | ||
}); | ||
// TODO: identifiers.rotate fails with 500 server error | ||
test.failing('delegate1c', async () => { | ||
// delegate rotates identifier | ||
let kargs: RotateIdentifierArgs = {}; | ||
let result = await client2.identifiers().rotate('delegate1', kargs); | ||
let op = await result.op(); | ||
let delegate1 = await client2.identifiers().get('delegate1'); | ||
expect(op.name).toEqual(`delegation.${delegate1.prefix}`); | ||
op = await waitOperation(client2, op); | ||
}); | ||
}); |