Skip to content

Commit fea185f

Browse files
committedMar 1, 2023
fix: integration test error matching
1 parent 887b0ab commit fea185f

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed
 

‎packages/core/src/__integrationtests__/Attestation.spec.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('handling attestations that do not exist', () => {
8989
)
9090
await expect(submitTx(authorized, tokenHolder)).rejects.toMatchObject({
9191
section: 'attestation',
92-
name: 'AttestationNotFound',
92+
name: expect.stringMatching(/^(Attestation)?NotFound$/),
9393
})
9494
}, 30_000)
9595

@@ -103,7 +103,7 @@ describe('handling attestations that do not exist', () => {
103103
)
104104
await expect(submitTx(authorized, tokenHolder)).rejects.toMatchObject({
105105
section: 'attestation',
106-
name: 'AttestationNotFound',
106+
name: expect.stringMatching(/^(Attestation)?NotFound$/),
107107
})
108108
}, 30_000)
109109
})
@@ -283,7 +283,10 @@ describe('When there is an attester, claimer and ctype drivers license', () => {
283283

284284
await expect(
285285
submitTx(authorizedStoreTx, tokenHolder)
286-
).rejects.toMatchObject({ section: 'ctype', name: 'CTypeNotFound' })
286+
).rejects.toMatchObject({
287+
section: 'ctype',
288+
name: expect.stringMatching(/^(CType)?NotFound$/),
289+
})
287290
}, 60_000)
288291

289292
describe('when there is a credential on-chain', () => {
@@ -375,7 +378,10 @@ describe('When there is an attester, claimer and ctype drivers license', () => {
375378

376379
await expect(
377380
submitTx(authorizedRevokeTx, tokenHolder)
378-
).rejects.toMatchObject({ section: 'attestation', name: 'Unauthorized' })
381+
).rejects.toMatchObject({
382+
section: 'attestation',
383+
name: expect.stringMatching(/^(Unauthorized|NotAuthorized)$/),
384+
})
379385
const storedAttestation = Attestation.fromChain(
380386
await api.query.attestation.attestations(attestation.claimHash),
381387
attestation.claimHash

‎packages/core/src/__integrationtests__/Ctypes.spec.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,10 @@ describe('When there is an CtypeCreator and a verifier', () => {
111111
)
112112
await expect(
113113
submitTx(authorizedStoreTx2, paymentAccount)
114-
).rejects.toMatchObject({ section: 'ctype', name: 'CTypeAlreadyExists' })
114+
).rejects.toMatchObject({
115+
section: 'ctype',
116+
name: expect.stringMatching(/^(CType)?AlreadyExists$/),
117+
})
115118

116119
if (hasBlockNumbers) {
117120
const retrievedCType = await CType.fetchFromChain(ctype.$id)

‎packages/core/src/__integrationtests__/Did.spec.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,9 @@ describe('write and didDeleteTx', () => {
184184
// Will fail because count provided is too low
185185
await expect(submitTx(submittable, paymentAccount)).rejects.toMatchObject({
186186
section: 'did',
187-
name: 'StoredEndpointsCountTooLarge',
187+
name: expect.stringMatching(
188+
/^(StoredEndpointsCountTooLarge|MaxStoredEndpointsCountExceeded)$/
189+
),
188190
})
189191
}, 60_000)
190192

@@ -555,7 +557,7 @@ describe('DID authorization', () => {
555557
)
556558
await expect(submitTx(tx2, paymentAccount)).rejects.toMatchObject({
557559
section: 'did',
558-
name: 'DidNotPresent',
560+
name: expect.stringMatching(/^(DidNotPresent|NotFound)$/),
559561
})
560562

561563
await expect(CType.verifyStored(ctype)).rejects.toThrow()
@@ -983,7 +985,7 @@ describe('DID management batching', () => {
983985
// Now, submitting will result in the second operation to fail AND the batch to fail, so we can test the atomic flag.
984986
await expect(submitTx(updateTx, paymentAccount)).rejects.toMatchObject({
985987
section: 'did',
986-
name: 'ServiceAlreadyPresent',
988+
name: expect.stringMatching(/^ServiceAlready(Exists|Present)$/),
987989
})
988990

989991
const updatedFullDidLinkedInfo = await api.call.did.query(

‎packages/core/src/__integrationtests__/ErrorHandler.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ it('records an extrinsic error when ctype does not exist', async () => {
7676
)
7777
await expect(submitTx(tx, paymentAccount)).rejects.toMatchObject({
7878
section: 'ctype',
79-
name: 'CTypeNotFound',
79+
name: expect.stringMatching(/^(CType)?NotFound$/),
8080
})
8181
}, 30_000)
8282

‎packages/core/src/__integrationtests__/Web3Names.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ describe('When there is an Web3NameCreator and a payer', () => {
120120

121121
await expect(p).rejects.toMatchObject({
122122
section: 'web3Names',
123-
name: 'Web3NameAlreadyClaimed',
123+
name: expect.stringMatching(/^(Web3NameAlreadyClaimed|AlreadyExists)$/),
124124
})
125125
}, 30_000)
126126

0 commit comments

Comments
 (0)
Please sign in to comment.