Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration test for rotating single-sig delegate identifier #160

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions examples/integration-scripts/singlesig-drt.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
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);
});
// https://github.com/WebOfTrust/signify-ts/issues/159
// TODO: identifiers.rotate fails with 500 server error
test('delegate1c', async () => {
// delegate rotates identifier
let kargs: RotateIdentifierArgs = {};
let result = await client2.identifiers().rotate('delegate1', kargs);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This rotate method does not support drt event types for delegated identifiers. It will need to be enhanced to support delegated AIDs

let op = await result.op();
let delegate1 = await client2.identifiers().get('delegate1');
expect(op.name).toEqual(`delegation.${delegate1.prefix}`);
op = await waitOperation(client2, op);
});
});
Loading