-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maint: Update Status to be an enum like sdk-js, and export more types
We can also export AttachResult and LogRecord from the same file, while we're fixing the types. Satus is the only one not exported as a type, because it's _also_ a value, so the export must not be removed when compiling the TS (this is also what we do in sdk-js)
- Loading branch information
Showing
5 changed files
with
65 additions
and
48 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Tanker, setLogHandler } from '@tanker/client-react-native'; | ||
import { Tanker, Status, setLogHandler } from '@tanker/client-react-native'; | ||
import { expect, describe, beforeEach, afterEach, it } from './framework'; | ||
import { | ||
createIdentity, | ||
|
@@ -23,18 +23,18 @@ export const tankerTests = () => { | |
}); | ||
|
||
it('can start and stop', async () => { | ||
expect(tanker.status).eq(Tanker.statuses.STOPPED); | ||
expect(tanker.status).eq(Status.STOPPED); | ||
await tanker.start(identity); | ||
expect(tanker.status).eq(Tanker.statuses.IDENTITY_REGISTRATION_NEEDED); | ||
expect(tanker.status).eq(Status.IDENTITY_REGISTRATION_NEEDED); | ||
await tanker.stop(); | ||
expect(tanker.status).eq(Tanker.statuses.STOPPED); | ||
expect(tanker.status).eq(Status.STOPPED); | ||
}); | ||
|
||
it('can reuse the Tanker object after stop', async () => { | ||
await tanker.start(identity); | ||
await tanker.stop(); | ||
await tanker.start(identity); | ||
expect(tanker.status).eq(Tanker.statuses.IDENTITY_REGISTRATION_NEEDED); | ||
expect(tanker.status).eq(Status.IDENTITY_REGISTRATION_NEEDED); | ||
}); | ||
|
||
it('calls the log handler', async () => { | ||
|
@@ -135,7 +135,7 @@ export const tankerTests = () => { | |
const email = '[email protected]'; | ||
const provIdentity = await createProvisionalIdentity(email); | ||
const result = await tanker.attachProvisionalIdentity(provIdentity); | ||
expect(result.status).eq(Tanker.statuses.IDENTITY_VERIFICATION_NEEDED); | ||
expect(result.status).eq(Status.IDENTITY_VERIFICATION_NEEDED); | ||
expect(result.verificationMethod).deep.eq({ | ||
type: 'email', | ||
email, | ||
|
@@ -165,7 +165,7 @@ export const tankerTests = () => { | |
await other.start(await createIdentity()); | ||
await other.registerIdentity({ passphrase: 'otherpass' }); | ||
await other.attachProvisionalIdentity(provIdentity); | ||
expect(result.status).eq(Tanker.statuses.IDENTITY_VERIFICATION_NEEDED); | ||
expect(result.status).eq(Status.IDENTITY_VERIFICATION_NEEDED); | ||
const verificationCode2 = await getEmailVerificationCode(email); | ||
await expect( | ||
other.verifyProvisionalIdentity({ | ||
|
@@ -191,7 +191,7 @@ export const tankerTests = () => { | |
const verificationCode = await getEmailVerificationCode(email); | ||
await tanker.registerIdentity({ email, verificationCode }); | ||
const result = await tanker.attachProvisionalIdentity(provIdentity); | ||
expect(result.status).eq(Tanker.statuses.READY); | ||
expect(result.status).eq(Status.READY); | ||
expect(result.verificationMethod).is.undefined; | ||
}); | ||
}); | ||
|
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
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
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