Upgrading jest

This commit is contained in:
James Barnsley
2020-08-04 20:13:42 +12:00
parent 4d56b73863
commit df7a02a863
93 changed files with 214 additions and 63751 deletions

View File

@ -0,0 +1,81 @@
import React from 'react';
import { BrowserRouter } from "react-router-dom";
// Testing-specific
import { shallow, mount, render } from 'enzyme';
// Test subjects
import Dater from '../../src/js/components/Dater';
describe('<Dater />', () => {
it('should render null when given invalid props', () => {
// Invalid type
const dom_1 = shallow(<Dater type="invalid-type" data={100000} />);
expect(dom_1.type()).toEqual(null);
// Missing type
const dom_2 = shallow(<Dater data={100000} />);
expect(dom_2.type()).toEqual(null);
// Missing data
const dom_4 = shallow(<Dater type="ago" />);
expect(dom_4.type()).toEqual(null);
});
it('should handle milliseconds', () => {
const dom = shallow(<Dater type="length" data={30000} />);
expect(dom.text()).toEqual('0:30');
});
it('should handle date (yyyy-mm-dd)', () => {
const dom = shallow(<Dater type="date" data="2015-10-23" />);
expect(dom.text()).toEqual("23/10/2015");
});
it('should handle date (mm/dd/yyyy)', () => {
const dom = shallow(<Dater type="date" data="10/23/2015" />);
expect(dom.text()).toEqual("23/10/2015");
});
it('should handle ago (days)', () => {
var date = new Date();
date.setDate( date.getDate() - 3 );
const dom = shallow(<Dater type="ago" data={date} />);
expect(dom.text()).toEqual('3 days');
});
it('should handle ago (hours)', () => {
var date = new Date();
date.setTime( date.getTime() - 3 * 3600000 );
const dom = shallow(<Dater type="ago" data={date} />);
expect(dom.text()).toEqual('3 hours');
});
it('should handle ago (minutes)', () => {
var date = new Date();
date.setTime( date.getTime() - 3 * 60000 );
const dom = shallow(<Dater type="ago" data={date} />);
expect(dom.text()).toEqual('3 minutes');
});
it('should handle total time', () => {
var data = [
{
duration: 5 * 60000
},
{
duration: 5 * 60000
},
{
duration: 5 * 60000
}
];
const dom = shallow(<Dater type="total-time" data={data} />);
expect(dom.text()).toEqual('15 mins');
});
});

View File

@ -0,0 +1,33 @@
import React from 'react';
import { BrowserRouter } from "react-router-dom";
// Testing-specific
import { shallow, mount, render } from 'enzyme';
const state = require('../state');
// Test subjects
import GridItem from '../../src/js/components/GridItem';
describe('<GridItem />', () => {
it('should handle album', () => {
var album = state.core.albums['jest:album:one'];
var dom = shallow(<GridItem item={album} />);
expect(dom.find('.grid__item__name').text()).toEqual('One');
expect(dom.find('.grid__item__secondary__content').length).toBe(1);
});
it('should handle artist', () => {
var artist = state.core.artists['jest:artist:alpha'];
var dom = shallow(<GridItem item={artist} />);
expect(dom.find('.grid__item__name').text()).toEqual('Alpha');
expect(dom.find('.grid__item__secondary__content').text()).toEqual('123 followers 1 albums');
});
it('should handle playlist', () => {
var playlist = state.core.playlists['jest:playlist:one'];
var dom = shallow(<GridItem item={playlist} />);
expect(dom.find('.grid__item__name').text()).toEqual('One');
expect(dom.find('.grid__item__secondary__content').text()).toEqual('2 tracks');
});
});

View File

@ -0,0 +1,28 @@
import React from 'react';
import { BrowserRouter } from "react-router-dom";
// Testing-specific
import { shallow, mount, render } from 'enzyme';
// Test subjects
import Link from '../../src/js/components/Link';
describe('<Link />', () => {
const dom = mount(
<BrowserRouter>
<Link to="test" className="test-classname">Link contents</Link>
</BrowserRouter>
);
it('should render a valid <a> tag', () => {
const a = dom.find('a');
expect(a.length).toBe(1);
expect(a.find('[href]').length).toBe(1);
expect(a.text()).toEqual('Link contents');
});
it('should handle className prop', () => {
expect(dom.find('a').hasClass('test-classname')).toBe(true);
});
});