2017-08-11 14:54:26 -04:00
|
|
|
import * as getters from '~/notes/stores/getters';
|
|
|
|
import { notesDataMock, userDataMock, issueDataMock, individualNote } from '../mock_data';
|
2017-08-04 11:51:35 -04:00
|
|
|
|
|
|
|
describe('Getters Notes Store', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
let state;
|
|
|
|
beforeEach(() => {
|
|
|
|
state = {
|
|
|
|
notes: [individualNote],
|
|
|
|
targetNoteHash: 'hash',
|
|
|
|
lastFetchedAt: 'timestamp',
|
|
|
|
|
|
|
|
notesData: notesDataMock,
|
|
|
|
userData: userDataMock,
|
|
|
|
issueData: issueDataMock,
|
|
|
|
};
|
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
describe('notes', () => {
|
|
|
|
it('should return all notes in the store', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
expect(getters.notes(state)).toEqual([individualNote]);
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('targetNoteHash', () => {
|
|
|
|
it('should return `targetNoteHash`', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
expect(getters.targetNoteHash(state)).toEqual('hash');
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getNotesData', () => {
|
|
|
|
it('should return all data in `notesData`', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
expect(getters.getNotesData(state)).toEqual(notesDataMock);
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getIssueData', () => {
|
|
|
|
it('should return all data in `issueData`', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
expect(getters.getIssueData(state)).toEqual(issueDataMock);
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getUserData', () => {
|
|
|
|
it('should return all data in `userData`', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
expect(getters.getUserData(state)).toEqual(userDataMock);
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('notesById', () => {
|
|
|
|
it('should return the note for the given id', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
expect(getters.notesById(state)).toEqual({ 1390: individualNote.notes[0] });
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getCurrentUserLastNote', () => {
|
|
|
|
it('should return the last note of the current user', () => {
|
2017-08-11 14:54:26 -04:00
|
|
|
expect(getters.getCurrentUserLastNote(state)).toEqual(individualNote.notes[0]);
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|