2017-09-07 17:59:14 -04:00
|
|
|
/* eslint-env jest */
|
|
|
|
import strokeColorReducer from '../../src/reducers/stroke-color';
|
|
|
|
import {changeStrokeColor} from '../../src/reducers/stroke-color';
|
2017-10-03 15:04:53 -04:00
|
|
|
import {setSelectedItems} from '../../src/reducers/selected-items';
|
|
|
|
import {MIXED} from '../../src/helper/style-path';
|
|
|
|
import {mockPaperRootItem} from '../__mocks__/paperMocks';
|
2017-09-07 17:59:14 -04:00
|
|
|
|
|
|
|
test('initialState', () => {
|
|
|
|
let defaultState;
|
|
|
|
|
|
|
|
expect(strokeColorReducer(defaultState /* state */, {type: 'anything'} /* action */)).toBeDefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('changeStrokeColor', () => {
|
|
|
|
let defaultState;
|
|
|
|
|
|
|
|
// 3 value hex code
|
|
|
|
let newStrokeColor = '#fff';
|
|
|
|
expect(strokeColorReducer(defaultState /* state */, changeStrokeColor(newStrokeColor) /* action */))
|
|
|
|
.toEqual(newStrokeColor);
|
|
|
|
expect(strokeColorReducer('#010' /* state */, changeStrokeColor(newStrokeColor) /* action */))
|
|
|
|
.toEqual(newStrokeColor);
|
|
|
|
|
|
|
|
// 6 value hex code
|
|
|
|
newStrokeColor = '#facade';
|
|
|
|
expect(strokeColorReducer(defaultState /* state */, changeStrokeColor(newStrokeColor) /* action */))
|
|
|
|
.toEqual(newStrokeColor);
|
|
|
|
expect(strokeColorReducer('#010' /* state */, changeStrokeColor(newStrokeColor) /* action */))
|
|
|
|
.toEqual(newStrokeColor);
|
|
|
|
});
|
|
|
|
|
2017-10-03 15:04:53 -04:00
|
|
|
test('changeStrokeColorViaSelectedItems', () => {
|
|
|
|
let defaultState;
|
|
|
|
|
|
|
|
const strokeColor1 = 6;
|
|
|
|
const strokeColor2 = null; // transparent
|
|
|
|
let selectedItems = [mockPaperRootItem({strokeColor: strokeColor1})];
|
|
|
|
expect(strokeColorReducer(defaultState /* state */, setSelectedItems(selectedItems) /* action */))
|
|
|
|
.toEqual(strokeColor1);
|
|
|
|
selectedItems = [mockPaperRootItem({strokeColor: strokeColor2})];
|
|
|
|
expect(strokeColorReducer(defaultState /* state */, setSelectedItems(selectedItems) /* action */))
|
|
|
|
.toEqual(strokeColor2);
|
|
|
|
selectedItems = [mockPaperRootItem({strokeColor: strokeColor1}), mockPaperRootItem({strokeColor: strokeColor2})];
|
|
|
|
expect(strokeColorReducer(defaultState /* state */, setSelectedItems(selectedItems) /* action */))
|
|
|
|
.toEqual(MIXED);
|
|
|
|
});
|
|
|
|
|
2017-09-07 17:59:14 -04:00
|
|
|
test('invalidChangeStrokeColor', () => {
|
|
|
|
const origState = '#fff';
|
|
|
|
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor() /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor('#') /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor('#1') /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor('#12') /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor('#1234') /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor('#12345') /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor('#1234567') /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
expect(strokeColorReducer(origState /* state */, changeStrokeColor('invalid argument') /* action */))
|
|
|
|
.toBe(origState);
|
|
|
|
});
|