mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
70 lines
2.3 KiB
JavaScript
70 lines
2.3 KiB
JavaScript
|
import React from 'react';
|
||
|
import { screen } from '@testing-library/react';
|
||
|
import { renderWithProvider } from '../../../../test/jest';
|
||
|
import PermissionCell from './permission-cell';
|
||
|
|
||
|
describe('Permission Cell', () => {
|
||
|
const mockPermissionData = {
|
||
|
label: 'Access the Ethereum provider.',
|
||
|
description:
|
||
|
'Allow the snap to communicate with MetaMask direct…blockchain and suggest messages and transactions.',
|
||
|
weight: 1,
|
||
|
leftIcon: 'ethereum',
|
||
|
permissionValue: {
|
||
|
date: 1680185432326,
|
||
|
},
|
||
|
permissionName: 'ethereum-provider',
|
||
|
};
|
||
|
|
||
|
it('renders approved permission cell', () => {
|
||
|
renderWithProvider(
|
||
|
<PermissionCell
|
||
|
title={mockPermissionData.label}
|
||
|
description={mockPermissionData.description}
|
||
|
weight={mockPermissionData.weight}
|
||
|
avatarIcon={mockPermissionData.leftIcon}
|
||
|
dateApproved={mockPermissionData?.permissionValue?.date}
|
||
|
key={`${mockPermissionData.permissionName}-${1}`}
|
||
|
/>,
|
||
|
);
|
||
|
expect(
|
||
|
screen.getByText('Access the Ethereum provider.'),
|
||
|
).toBeInTheDocument();
|
||
|
expect(screen.getByText('Approved on 2023-03-30')).toBeInTheDocument();
|
||
|
});
|
||
|
|
||
|
it('renders revoked permission cell', () => {
|
||
|
renderWithProvider(
|
||
|
<PermissionCell
|
||
|
title={mockPermissionData.label}
|
||
|
description={mockPermissionData.description}
|
||
|
weight={mockPermissionData.weight}
|
||
|
avatarIcon={mockPermissionData.leftIcon}
|
||
|
dateApproved={mockPermissionData?.permissionValue?.date}
|
||
|
key={`${mockPermissionData.permissionName}-${1}`}
|
||
|
revoked
|
||
|
/>,
|
||
|
);
|
||
|
expect(
|
||
|
screen.getByText('Access the Ethereum provider.'),
|
||
|
).toBeInTheDocument();
|
||
|
expect(screen.getByText('Revoked in this update')).toBeInTheDocument();
|
||
|
});
|
||
|
|
||
|
it('renders requested permission cell', () => {
|
||
|
renderWithProvider(
|
||
|
<PermissionCell
|
||
|
title={mockPermissionData.label}
|
||
|
description={mockPermissionData.description}
|
||
|
weight={mockPermissionData.weight}
|
||
|
avatarIcon={mockPermissionData.leftIcon}
|
||
|
key={`${mockPermissionData.permissionName}-${1}`}
|
||
|
/>,
|
||
|
);
|
||
|
expect(
|
||
|
screen.getByText('Access the Ethereum provider.'),
|
||
|
).toBeInTheDocument();
|
||
|
expect(screen.getByText('Requested now')).toBeInTheDocument();
|
||
|
});
|
||
|
});
|