Skip to content

Commit c7c2c50

Browse files
committed
Add missing hook and tests
1 parent 7b60d82 commit c7c2c50

File tree

3 files changed

+79
-2
lines changed

3 files changed

+79
-2
lines changed

packages/snaps-rpc-methods/jest.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ module.exports = deepmerge(baseConfig, {
1010
],
1111
coverageThreshold: {
1212
global: {
13-
branches: 92.95,
14-
functions: 97.44,
13+
branches: 92.98,
14+
functions: 97.46,
1515
lines: 97.93,
1616
statements: 97.52,
1717
},

packages/snaps-simulation/src/simulation.test.ts

+69
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,75 @@ describe('getPermittedHooks', () => {
233233
const { runSaga, store } = createStore(getMockOptions());
234234
const controllerMessenger = getRootControllerMessenger();
235235

236+
it('returns the `hasPermission` hook', async () => {
237+
const { snapId, close } = await getMockServer({
238+
manifest: getSnapManifest(),
239+
});
240+
241+
const location = detectSnapLocation(snapId, {
242+
allowLocal: true,
243+
});
244+
245+
const snapFiles = await fetchSnap(snapId, location);
246+
247+
const { hasPermission } = getPermittedHooks(
248+
snapId,
249+
snapFiles,
250+
controllerMessenger,
251+
runSaga,
252+
);
253+
254+
expect(hasPermission('snap_manageState')).toBe(true);
255+
256+
await close();
257+
});
258+
259+
it('returns the `getUnlockPromise` hook', async () => {
260+
const { snapId, close } = await getMockServer({
261+
manifest: getSnapManifest(),
262+
});
263+
264+
const location = detectSnapLocation(snapId, {
265+
allowLocal: true,
266+
});
267+
268+
const snapFiles = await fetchSnap(snapId, location);
269+
270+
const { getUnlockPromise } = getPermittedHooks(
271+
snapId,
272+
snapFiles,
273+
controllerMessenger,
274+
runSaga,
275+
);
276+
277+
expect(await getUnlockPromise(true)).toBeUndefined();
278+
279+
await close();
280+
});
281+
282+
it('returns the `getIsLocked` hook', async () => {
283+
const { snapId, close } = await getMockServer({
284+
manifest: getSnapManifest(),
285+
});
286+
287+
const location = detectSnapLocation(snapId, {
288+
allowLocal: true,
289+
});
290+
291+
const snapFiles = await fetchSnap(snapId, location);
292+
293+
const { getIsLocked } = getPermittedHooks(
294+
snapId,
295+
snapFiles,
296+
controllerMessenger,
297+
runSaga,
298+
);
299+
300+
expect(getIsLocked()).toBe(false);
301+
302+
await close();
303+
});
304+
236305
it('returns the `getSnapFile` hook', async () => {
237306
const value = JSON.stringify({ bar: 'baz' });
238307
const { snapId, close } = await getMockServer({

packages/snaps-simulation/src/simulation.ts

+8
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@ export type PermittedMiddlewareHooks = {
139139
*/
140140
getUnlockPromise: (shouldShowUnlockRequest: boolean) => Promise<void>;
141141

142+
/**
143+
* A hook that returns whether the client is locked or not.
144+
*
145+
* @returns A boolean flag signaling whether the client is locked.
146+
*/
147+
getIsLocked: () => boolean;
148+
142149
/**
143150
* A hook that returns the Snap's auxiliary file for the given path. This hook
144151
* is bound to the Snap ID.
@@ -390,6 +397,7 @@ export function getPermittedHooks(
390397
return {
391398
hasPermission: () => true,
392399
getUnlockPromise: asyncResolve(),
400+
getIsLocked: () => false,
393401

394402
getSnapFile: async (path: string, encoding: AuxiliaryFileEncoding) =>
395403
await getSnapFile(snapFiles.auxiliaryFiles, path, encoding),

0 commit comments

Comments
 (0)