vega-frontend-monorepo/libs/wallet/src/provider.spec.tsx

175 lines
5.4 KiB
TypeScript

import { act, renderHook } from '@testing-library/react';
import type { Transaction } from './connectors';
import { ViewConnector } from './connectors';
import { RestConnector } from './connectors';
import { useVegaWallet } from './use-vega-wallet';
import { VegaWalletProvider } from './provider';
import { LocalStorage } from '@vegaprotocol/utils';
import type { ReactNode } from 'react';
import { WALLET_KEY } from './storage';
import * as Environment from '@vegaprotocol/environment';
import * as ReactHelpers from '@vegaprotocol/react-helpers';
const restConnector = new RestConnector();
const viewConnector = new ViewConnector();
const setup = () => {
const wrapper = ({ children }: { children: ReactNode }) => (
<VegaWalletProvider>{children}</VegaWalletProvider>
);
return renderHook(() => useVegaWallet(), { wrapper });
};
describe('VegaWalletProvider', () => {
afterAll(() => {
localStorage.clear();
});
const mockPubKeys = [
{ publicKey: '111', name: 'public key 1' },
{ publicKey: '222', name: 'public key 2' },
];
const spyOnConnect = jest
.spyOn(restConnector, 'connect')
.mockImplementation(() => Promise.resolve(mockPubKeys));
const spyOnSend = jest
.spyOn(restConnector, 'sendTx')
.mockImplementation(() => Promise.resolve(null));
const storageSpy = jest.spyOn(LocalStorage, 'setItem');
const spyOnDisconnect = jest
.spyOn(restConnector, 'disconnect')
.mockImplementation(() => Promise.resolve());
it('connects, disconnects and retrieve keypairs', async () => {
const { result } = setup();
// Default state
expect(result.current).toEqual({
acknowledgeNeeded: false,
pubKey: null,
pubKeys: null,
isReadOnly: false,
selectPubKey: expect.any(Function),
connect: expect.any(Function),
disconnect: expect.any(Function),
sendTx: expect.any(Function),
fetchPubKeys: expect.any(Function || undefined),
});
// Connect
await act(async () => {
result.current.connect(restConnector);
});
expect(spyOnConnect).toHaveBeenCalled();
expect(result.current.pubKeys).toHaveLength(mockPubKeys.length);
expect(result.current.pubKey).toBe(mockPubKeys[0].publicKey);
// Change current pubkey
await act(async () => {
result.current.selectPubKey(mockPubKeys[1].publicKey);
});
expect(result.current.pubKey).toBe(mockPubKeys[1].publicKey);
expect(storageSpy).toHaveBeenCalledWith(
WALLET_KEY,
mockPubKeys[1].publicKey
);
// Send tx
await act(async () => {
result.current.sendTx(mockPubKeys[1].publicKey, {} as Transaction);
});
expect(spyOnSend).toHaveBeenCalledWith(mockPubKeys[1].publicKey, {});
});
it('should fetch new keypairs', async () => {
const { result } = setup();
// Default state
expect(result.current).toEqual({
acknowledgeNeeded: false,
pubKey: null,
pubKeys: null,
isReadOnly: false,
selectPubKey: expect.any(Function),
connect: expect.any(Function),
disconnect: expect.any(Function),
sendTx: expect.any(Function),
fetchPubKeys: expect.any(Function),
});
// Connect
await act(async () => {
result.current.connect(restConnector);
result.current.selectPubKey(mockPubKeys[0].publicKey);
});
expect(spyOnConnect).toHaveBeenCalled();
expect(result.current.pubKeys).toHaveLength(mockPubKeys.length);
expect(result.current.pubKey).toBe(mockPubKeys[0].publicKey);
// Fetch pub keys
mockPubKeys.push({ publicKey: '333', name: 'public key 3' });
await act(async () => {
result.current.fetchPubKeys && result.current.fetchPubKeys();
});
expect(result.current.pubKeys).toHaveLength(mockPubKeys.length);
});
it('persists selected pubkey and disconnects', async () => {
const { result } = setup();
expect(result.current.pubKey).toBe(null);
await act(async () => {
result.current.connect(restConnector);
result.current.selectPubKey(mockPubKeys[0].publicKey);
});
expect(result.current.pubKey).toBe(mockPubKeys[0].publicKey);
// Disconnect
await act(async () => {
result.current.disconnect();
});
expect(result.current.pubKey).toBe(null);
expect(result.current.pubKeys).toBe(null);
expect(spyOnDisconnect).toHaveBeenCalled();
expect(localStorage.getItem(WALLET_KEY)).toBe(null);
});
it('sets isReadOnly to true if using view connector', async () => {
jest
.spyOn(viewConnector, 'connect')
.mockImplementation(() => Promise.resolve(mockPubKeys));
const { result } = setup();
expect(result.current.pubKey).toBe(null);
await act(async () => {
result.current.connect(viewConnector);
});
expect(result.current.isReadOnly).toBe(true);
});
it('acknowledgeNeeded will set on', async () => {
jest
.spyOn(Environment, 'useEnvironment')
.mockReturnValue({ VEGA_ENV: 'MAINNET' });
jest.spyOn(ReactHelpers, 'useLocalStorage').mockImplementation(() => [
'',
() => {
/**/
},
() => {
/**/
},
]);
jest
.spyOn(viewConnector, 'connect')
.mockImplementation(() => Promise.resolve(mockPubKeys));
const { result } = setup();
expect(result.current.acknowledgeNeeded).toBe(true);
await act(async () => {
result.current.connect(viewConnector);
});
expect(result.current.isReadOnly).toBe(true);
});
});