Skip to content

Commit 13e172c

Browse files
committedAug 4, 2019
(test): ensure props are set and updated correctly
- that defaults, mounted initial props and options, and updated props and options match - took me a bit to figure out I should use `toMatchObject` and then how to use `toMatchObject` properly - add fixtures for props and split them into sigPad vs. rSC for different uses
1 parent de1999f commit 13e172c

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed
 

‎src/index.spec.js

+31-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { mount } from 'enzyme'
33
import React from 'react'
44

55
import SignatureCanvas from './index.js'
6-
import { dotData, canvasProps, trimmedSize } from '../test-utils/fixtures.js'
6+
import { props, sigPadOptions, dotData, canvasProps, trimmedSize } from '../test-utils/fixtures.js'
77

88
test('mounts canvas and instance properly', () => {
99
const wrapper = mount(<SignatureCanvas />)
@@ -12,6 +12,36 @@ test('mounts canvas and instance properly', () => {
1212
expect(instance.isEmpty()).toBe(true)
1313
})
1414

15+
describe('props are set and updated correctly', () => {
16+
test('default props should match', () => {
17+
const instance = mount(<SignatureCanvas />).instance()
18+
expect(instance.props).toStrictEqual(SignatureCanvas.defaultProps)
19+
})
20+
21+
test('mounted initial props and options should match', () => {
22+
const instance = mount(<SignatureCanvas {...props} />).instance()
23+
const sigPad = instance.getSignaturePad()
24+
25+
expect(instance.props).toMatchObject(props)
26+
expect(sigPad).toMatchObject(sigPadOptions)
27+
})
28+
29+
test('updated props and options should match', () => {
30+
const wrapper = mount(<SignatureCanvas />)
31+
const instance = wrapper.instance()
32+
const sigPad = instance.getSignaturePad()
33+
34+
// default props and options should not match new ones
35+
expect(instance.props).not.toMatchObject(props)
36+
expect(sigPad).not.toMatchObject(sigPadOptions)
37+
38+
// should match when updated
39+
wrapper.setProps(props)
40+
expect(instance.props).toMatchObject(props)
41+
expect(sigPad).toMatchObject(sigPadOptions)
42+
})
43+
})
44+
1545
describe('SigCanvas wrapper methods return equivalent to SigPad', () => {
1646
const rSigPad = mount(<SignatureCanvas />).instance()
1747
const sigPad = rSigPad.getSignaturePad()

‎test-utils/fixtures.js

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
// signature_pad options
2+
export const sigPadOptions = {
3+
velocityFilterWeight: 0.8,
4+
minWidth: 0.6,
5+
maxWidth: 2.6,
6+
minDistance: 4,
7+
dotSize: 2,
8+
penColor: 'green',
9+
throttle: 17,
10+
onEnd: () => { return 'onEnd' },
11+
onBegin: () => { return 'onBegin' }
12+
}
13+
// props specific to React wrapper
14+
const rSCProps = {
15+
canvasProps: { width: 500, height: 500 },
16+
clearOnResize: false
17+
}
18+
// should all be different from the defaults
19+
export const props = { ...sigPadOptions, ...rSCProps }
20+
121
export const dotData = [
222
[{ x: 466.59375, y: 189, time: 1564339579755, color: 'black' }]
323
]

0 commit comments

Comments
 (0)
Please sign in to comment.