2023-01-12 14:01:32 +00:00
|
|
|
import React, { useState, useEffect, useContext } from 'react';
|
2024-04-25 20:29:25 +00:00
|
|
|
import { render, act, screen, waitFor, fireEvent } from '@testing-library/react';
|
2023-01-12 14:01:32 +00:00
|
|
|
import { AccountContextProvider, AccountContext } from 'context/AccountContext';
|
|
|
|
import { StoreContextProvider } from 'context/StoreContext';
|
|
|
|
import * as fetchUtil from 'api/fetchUtil';
|
|
|
|
|
|
|
|
let accountContext = null;
|
|
|
|
function AccountView() {
|
|
|
|
const [renderCount, setRenderCount] = useState(0);
|
|
|
|
const account = useContext(AccountContext);
|
|
|
|
accountContext = account;
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
setRenderCount(renderCount + 1);
|
|
|
|
}, [account.state]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2024-04-25 20:29:25 +00:00
|
|
|
<span data-testid="count">{renderCount}</span>
|
|
|
|
<span data-testid="seal">{account.state.seal}</span>
|
|
|
|
<span data-testid="sealKey">{account.state.sealKey}</span>
|
|
|
|
<span data-testid="searchable">{account.state.status?.searchable.toString()}</span>
|
2023-01-12 14:01:32 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function AccountTestApp() {
|
|
|
|
return (
|
|
|
|
<StoreContextProvider>
|
|
|
|
<AccountContextProvider>
|
|
|
|
<AccountView />
|
|
|
|
</AccountContextProvider>
|
|
|
|
</StoreContextProvider>
|
2024-04-25 20:29:25 +00:00
|
|
|
);
|
2023-01-12 14:01:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const realFetchWithTimeout = fetchUtil.fetchWithTimeout;
|
|
|
|
const realFetchWithCustomTimeout = fetchUtil.fetchWithCustomTimeout;
|
|
|
|
let fetchStatus;
|
|
|
|
let sealSet;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fetchStatus = {};
|
|
|
|
sealSet = false;
|
|
|
|
|
|
|
|
const mockFetch = jest.fn().mockImplementation((url, options) => {
|
|
|
|
if (url === '/account/seal?agent=abc123') {
|
|
|
|
sealSet = true;
|
|
|
|
return Promise.resolve({
|
2024-04-25 20:29:25 +00:00
|
|
|
json: () => Promise.resolve({}),
|
2023-01-12 14:01:32 +00:00
|
|
|
});
|
2024-04-25 20:29:25 +00:00
|
|
|
} else if (url === '/account/status?agent=abc123') {
|
2023-01-12 14:01:32 +00:00
|
|
|
return Promise.resolve({
|
2024-04-25 20:29:25 +00:00
|
|
|
json: () => Promise.resolve(fetchStatus),
|
2023-01-12 14:01:32 +00:00
|
|
|
});
|
2024-04-25 20:29:25 +00:00
|
|
|
} else {
|
2023-01-12 14:01:32 +00:00
|
|
|
return Promise.resolve({
|
2024-04-25 20:29:25 +00:00
|
|
|
json: () => Promise.resolve({}),
|
2023-01-12 14:01:32 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2024-04-24 20:26:55 +00:00
|
|
|
//@ts-ignore
|
2023-01-12 14:01:32 +00:00
|
|
|
fetchUtil.fetchWithTimeout = mockFetch;
|
2024-04-24 20:26:55 +00:00
|
|
|
//@ts-ignore
|
2023-01-12 14:01:32 +00:00
|
|
|
fetchUtil.fetchWithCustomTimeout = mockFetch;
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
2024-04-24 20:26:55 +00:00
|
|
|
//@ts-ignore
|
2023-01-12 14:01:32 +00:00
|
|
|
fetchUtil.fetchWithTimeout = realFetchWithTimeout;
|
2024-04-24 20:26:55 +00:00
|
|
|
//@ts-ignore
|
2023-01-12 14:01:32 +00:00
|
|
|
fetchUtil.fetchWithCustomTimeout = realFetchWithCustomTimeout;
|
|
|
|
});
|
|
|
|
|
|
|
|
test('testing account sync', async () => {
|
|
|
|
render(<AccountTestApp />);
|
|
|
|
|
|
|
|
await waitFor(async () => {
|
|
|
|
expect(accountContext).not.toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
fetchStatus = { disabled: false, storageUsed: 1, searchable: true, pushEnabled: false, sealable: true };
|
2024-04-25 20:29:25 +00:00
|
|
|
|
2023-01-12 14:01:32 +00:00
|
|
|
await act(async () => {
|
|
|
|
accountContext.actions.setToken('abc123');
|
|
|
|
await accountContext.actions.setRevision(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
await waitFor(async () => {
|
|
|
|
expect(screen.getByTestId('searchable').textContent).toBe('true');
|
|
|
|
expect(screen.getByTestId('seal').textContent).toBe('');
|
|
|
|
expect(screen.getByTestId('sealKey').textContent).toBe('');
|
|
|
|
expect(sealSet).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
await act(async () => {
|
|
|
|
await accountContext.actions.setSeal('testeal', 'testsealkey');
|
|
|
|
});
|
|
|
|
|
2024-04-25 20:29:25 +00:00
|
|
|
fetchStatus = {
|
|
|
|
disabled: false,
|
|
|
|
storageUsed: 1,
|
|
|
|
searchable: true,
|
|
|
|
pushEnabled: false,
|
|
|
|
sealable: true,
|
|
|
|
seal: 'testseal',
|
|
|
|
};
|
|
|
|
|
2023-01-12 14:01:32 +00:00
|
|
|
await act(async () => {
|
|
|
|
await accountContext.actions.setRevision(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
await waitFor(async () => {
|
|
|
|
expect(sealSet).toBe(true);
|
|
|
|
expect(screen.getByTestId('seal').textContent).toBe('testseal');
|
|
|
|
expect(screen.getByTestId('sealKey').textContent).toBe('testsealkey');
|
|
|
|
});
|
|
|
|
});
|