-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpublicDecrypt.test.ts
More file actions
258 lines (226 loc) · 7.79 KB
/
publicDecrypt.test.ts
File metadata and controls
258 lines (226 loc) · 7.79 KB
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
import type { RelayerPublicDecryptPayload } from '../relayer-provider/types/public-api';
import type { KmsContextCache } from '../sdk/kms/KmsContextCache';
import { publicDecryptRequest } from './publicDecrypt';
import fetchMock from 'fetch-mock';
import { ethers } from 'ethers';
import { getErrorCause, getErrorCauseErrorMessage } from './error';
import { createRelayerProvider } from '../relayer-provider/createRelayerProvider';
import { TEST_CONFIG, TEST_KMS } from '../test/config';
import { fetchRelayerV1Post } from '../relayer-provider/v1/fetchRelayerV1';
import { ChecksummedAddress } from 'src/node';
// Mock KmsContextCache that returns init-time signers (legacy behavior)
const mockKmsContextCache = {
getCurrentContextId: jest.fn().mockResolvedValue(0n),
getSignersForContext: jest.fn().mockResolvedValue(TEST_KMS.addresses),
} as unknown as KmsContextCache;
// Jest Command line
// =================
// npx jest --colors --passWithNoTests ./src/relayer/publicDecrypt.test.ts
// npx jest --colors --passWithNoTests --coverage ./src/relayer/publicDecrypt.test.ts --collectCoverageFrom=./src/relayer/publicDecrypt.ts --testNamePattern=xxx
// npx jest --colors --passWithNoTests --coverage ./src/relayer/publicDecrypt.test.ts --collectCoverageFrom=./src/relayer/publicDecrypt.ts
const defaultRelayerVersion = 1;
const relayerProvider = createRelayerProvider(
'https://test-fhevm-relayer',
defaultRelayerVersion,
);
const RELAYER_PUBLIC_DECRYPT_URL = relayerProvider.publicDecryptUrl;
const dummyRelayerUserDecryptPayload: RelayerPublicDecryptPayload = {
ciphertextHandles: ['0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'],
extraData: '0x00',
};
const describeIfFetchMock =
TEST_CONFIG.type === 'fetch-mock' ? describe : describe.skip;
describeIfFetchMock('publicDecrypt', () => {
beforeEach(() => {
fetchMock.removeRoutes();
});
it('relayerProvider', async () => {
expect(relayerProvider.version).toStrictEqual(1);
expect(relayerProvider.url).toStrictEqual('https://test-fhevm-relayer');
expect(RELAYER_PUBLIC_DECRYPT_URL).toStrictEqual(
'https://test-fhevm-relayer/public-decrypt',
);
});
it('get public decryption for handle', async () => {
fetchMock.post(RELAYER_PUBLIC_DECRYPT_URL, {
status: 'success',
response: {},
});
publicDecryptRequest({
kmsSigners: TEST_KMS.addresses,
thresholdSigners: TEST_KMS.kmsSignerThreshold,
gatewayChainId: TEST_CONFIG.fhevmInstanceConfig.gatewayChainId,
verifyingContractAddressDecryption: TEST_CONFIG.fhevmInstanceConfig
.verifyingContractAddressDecryption as ChecksummedAddress,
aclContractAddress: TEST_CONFIG.fhevmInstanceConfig
.aclContractAddress as ChecksummedAddress,
relayerProvider,
provider: new ethers.JsonRpcProvider('https://devnet.zama.ai'),
kmsContextCache: mockKmsContextCache,
});
});
});
describeIfFetchMock('fetchRelayerPublicDecrypt', () => {
beforeEach(() => {
fetchMock.removeRoutes();
});
it('error: response.ok === false', async () => {
const response = new Response('Forbidden', {
status: 403,
statusText: 'Forbidden',
headers: {
'Content-Type': 'text/plain',
},
});
fetchMock.postOnce(RELAYER_PUBLIC_DECRYPT_URL, response);
try {
await fetchRelayerV1Post(
'PUBLIC_DECRYPT',
RELAYER_PUBLIC_DECRYPT_URL,
dummyRelayerUserDecryptPayload,
);
} catch (e) {
expect(String(e)).toBe(
'Error: Public decrypt failed: relayer respond with HTTP code 403',
);
const cause = getErrorCause(e);
const c = cause as any;
expect(c).toEqual(
expect.objectContaining({
code: 'RELAYER_FETCH_ERROR',
operation: 'PUBLIC_DECRYPT',
status: 403,
statusText: 'Forbidden',
url: RELAYER_PUBLIC_DECRYPT_URL,
responseJson: '',
}),
);
expect(c.response).toEqual(
expect.objectContaining({
status: 403,
statusText: 'Forbidden',
ok: false,
}),
);
}
});
it('error: response.status === 429', async () => {
const response = new Response('Rate Limit', {
status: 429,
statusText: 'Rate Limit',
headers: {
'Content-Type': 'text/plain',
},
});
fetchMock.postOnce(RELAYER_PUBLIC_DECRYPT_URL, response);
try {
await fetchRelayerV1Post(
'PUBLIC_DECRYPT',
RELAYER_PUBLIC_DECRYPT_URL,
dummyRelayerUserDecryptPayload,
);
} catch (e) {
expect(String(e)).toBe(
'Error: Relayer rate limit exceeded: Please wait and try again later.',
);
const cause = getErrorCause(e);
const c = cause as any;
expect(c).toEqual(
expect.objectContaining({
code: 'RELAYER_FETCH_ERROR',
operation: 'PUBLIC_DECRYPT',
status: 429,
statusText: 'Rate Limit',
url: RELAYER_PUBLIC_DECRYPT_URL,
responseJson: '',
}),
);
// For some reason, `expect.objectContaining` does not work in this specific situation.
expect(c.response.status).toEqual(429);
expect(c.response.statusText).toEqual('Rate Limit');
expect(c.response.ok).toEqual(false);
expect(c.response.url).toEqual(RELAYER_PUBLIC_DECRYPT_URL);
}
});
it('error: fetch throws an error', async () => {
const errorToThrow = new Error();
fetchMock.post('https://test-fhevm-relayer/v1/public-decrypt', {
throws: errorToThrow,
});
try {
await fetchRelayerV1Post(
'PUBLIC_DECRYPT',
'https://test-fhevm-relayer/v1/public-decrypt',
dummyRelayerUserDecryptPayload,
);
} catch (e) {
expect(String(e)).toBe(
"Error: Public decrypt failed: Relayer didn't respond",
);
const cause = getErrorCause(e);
expect(cause).toEqual({
code: 'RELAYER_UNKNOWN_ERROR',
operation: 'PUBLIC_DECRYPT',
error: errorToThrow,
});
}
});
it('error: no json', async () => {
fetchMock.postOnce(RELAYER_PUBLIC_DECRYPT_URL, () => {
return 'DeadBeef';
});
try {
await fetchRelayerV1Post(
'PUBLIC_DECRYPT',
RELAYER_PUBLIC_DECRYPT_URL,
dummyRelayerUserDecryptPayload,
);
} catch (e) {
expect(String(e)).toBe(
"Error: Public decrypt failed: Relayer didn't return a JSON",
);
const cause = getErrorCause(e);
const c = cause as any;
expect(c.code).toEqual('RELAYER_NO_JSON_ERROR');
expect(c.operation).toEqual('PUBLIC_DECRYPT');
const msg = 'Unexpected token \'D\', "DeadBeef" is not valid JSON';
expect(c.error.message).toEqual(msg);
expect(String(getErrorCauseErrorMessage(e))).toBe(msg);
}
});
it('error: unexpected json', async () => {
fetchMock.postOnce(RELAYER_PUBLIC_DECRYPT_URL, {
status: 'failure',
dummy: 'This is a dummy error',
});
try {
await fetchRelayerV1Post(
'PUBLIC_DECRYPT',
RELAYER_PUBLIC_DECRYPT_URL,
dummyRelayerUserDecryptPayload,
);
} catch (e) {
expect(String(e)).toBe(
'Error: Public decrypt failed: Relayer returned an unexpected JSON response',
);
const cause = getErrorCause(e);
const c = cause as any;
expect(c.code).toEqual('RELAYER_UNEXPECTED_JSON_ERROR');
expect(c.operation).toEqual('PUBLIC_DECRYPT');
const msg =
"Unexpected response JSON format: missing 'response' property.";
expect(c.error.message).toEqual(msg);
expect(String(getErrorCauseErrorMessage(e))).toBe(msg);
}
});
it('succeeded', async () => {
fetchMock.postOnce(RELAYER_PUBLIC_DECRYPT_URL, {
response: {},
});
await fetchRelayerV1Post(
'PUBLIC_DECRYPT',
RELAYER_PUBLIC_DECRYPT_URL,
dummyRelayerUserDecryptPayload,
);
});
});