mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
8603a4b067
* Add permission cell component Add storybook and handling for revoked permission colors * Fix things after conflict resolve after rebase * Add code refactoring and minor UI changes * Add permission cell component to snap-update flow * Update storybook * Add unit tests for permission cell * Update component padding * Fix spacing between permission cells * Fix main icon color for approved permissions * Update width value with constant
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();
|
|
});
|
|
});
|