mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
46 lines
1.9 KiB
TypeScript
46 lines
1.9 KiB
TypeScript
import { shallow } from 'enzyme';
|
|
import { Mock } from 'ts-mockery';
|
|
import { OrphanVisits as createOrphanVisits } from '../../src/visits/OrphanVisits';
|
|
import { MercureBoundProps } from '../../src/mercure/helpers/boundToMercureHub';
|
|
import { VisitsInfo } from '../../src/visits/types';
|
|
import { VisitsStats } from '../../src/visits/VisitsStats';
|
|
import { Settings } from '../../src/settings/reducers/settings';
|
|
import { ReportExporter } from '../../src/common/services/ReportExporter';
|
|
import { SelectedServer } from '../../src/servers/data';
|
|
import VisitsHeader from '../../src/visits/VisitsHeader';
|
|
|
|
jest.mock('react-router-dom', () => ({
|
|
...jest.requireActual('react-router-dom'),
|
|
useNavigate: jest.fn().mockReturnValue(jest.fn()),
|
|
useParams: jest.fn().mockReturnValue({}),
|
|
}));
|
|
|
|
describe('<OrphanVisits />', () => {
|
|
it('wraps visits stats and header', () => {
|
|
const getOrphanVisits = jest.fn();
|
|
const cancelGetOrphanVisits = jest.fn();
|
|
const orphanVisits = Mock.all<VisitsInfo>();
|
|
const OrphanVisits = createOrphanVisits(Mock.all<ReportExporter>());
|
|
|
|
const wrapper = shallow(
|
|
<OrphanVisits
|
|
{...Mock.of<MercureBoundProps>({ mercureInfo: {} })}
|
|
getOrphanVisits={getOrphanVisits}
|
|
orphanVisits={orphanVisits}
|
|
cancelGetOrphanVisits={cancelGetOrphanVisits}
|
|
settings={Mock.all<Settings>()}
|
|
selectedServer={Mock.all<SelectedServer>()}
|
|
/>,
|
|
).dive();
|
|
const stats = wrapper.find(VisitsStats);
|
|
const header = wrapper.find(VisitsHeader);
|
|
|
|
expect(stats).toHaveLength(1);
|
|
expect(header).toHaveLength(1);
|
|
expect(stats.prop('cancelGetVisits')).toEqual(cancelGetOrphanVisits);
|
|
expect(stats.prop('visitsInfo')).toEqual(orphanVisits);
|
|
expect(stats.prop('isOrphanVisits')).toEqual(true);
|
|
expect(header.prop('visits')).toEqual(orphanVisits.visits);
|
|
expect(header.prop('goBack')).toEqual(expect.any(Function));
|
|
});
|
|
});
|