8
8
9
9
const React = require ( 'react' ) ;
10
10
const sinon = require ( 'sinon' ) ;
11
- const { expect} = require ( 'chai' ) ;
12
11
const ReactQuill = require ( '../lib/index' ) ;
13
- const { Quill} = require ( '../lib/index' ) ;
12
+ const { Quill } = require ( '../lib/index' ) ;
14
13
15
14
const {
16
15
mountReactQuill,
@@ -20,15 +19,16 @@ const {
20
19
withMockedConsole,
21
20
} = require ( './utils' ) ;
22
21
23
- console . log ( '\n\
22
+ console . log (
23
+ '\n\
24
24
Note that some functionality cannot be tested outside of a full browser environment.\n\n\
25
25
To manually test the component:\n\
26
- 1) Run "npm install" \ & "npm run build"\n\
26
+ 1) Run "npm install" & "npm run build"\n\
27
27
2) Open "demo/index.html" in a web browser.\
28
- ' ) ;
28
+ '
29
+ ) ;
29
30
30
31
describe ( '<ReactQuill />' , function ( ) {
31
-
32
32
it ( 'calls componentDidMount' , ( ) => {
33
33
sinon . spy ( ReactQuill . prototype , 'componentDidMount' ) ;
34
34
const wrapper = mountReactQuill ( ) ;
@@ -37,18 +37,18 @@ describe('<ReactQuill />', function() {
37
37
} ) ;
38
38
39
39
it ( 'allows props to be set' , ( ) => {
40
- const props = { readOnly : true }
40
+ const props = { readOnly : true } ;
41
41
const wrapper = mountReactQuill ( props ) ;
42
42
expect ( wrapper . props ( ) . readOnly ) . to . equal ( true ) ;
43
- wrapper . setProps ( { readOnly : false } ) ;
43
+ wrapper . setProps ( { readOnly : false } ) ;
44
44
expect ( wrapper . props ( ) . readOnly ) . to . equal ( false ) ;
45
45
} ) ;
46
46
47
47
it ( 'attaches a Quill instance to the component' , ( ) => {
48
48
const wrapper = mountReactQuill ( ) ;
49
49
const quill = getQuillInstance ( wrapper ) ;
50
50
expect ( quill instanceof Quill ) . to . equal ( true ) ;
51
- } )
51
+ } ) ;
52
52
53
53
it ( 'passes options to Quill from props' , ( ) => {
54
54
const enabledFormats = [ 'underline' , 'bold' , 'italic' ] ;
@@ -66,85 +66,101 @@ describe('<ReactQuill />', function() {
66
66
expect ( quill . options . readOnly ) . to . equal ( props . readOnly ) ;
67
67
expect ( quill . options . modules ) . to . include . keys ( Object . keys ( props . modules ) ) ;
68
68
expect ( quill . options . formats ) . to . include . members ( props . formats ) ;
69
- } )
69
+ } ) ;
70
70
71
71
it ( 'allows using HTML strings as value' , ( ) => {
72
72
const html = '<p>Hello, world!</p>' ;
73
- const wrapper = mountReactQuill ( { value : html } ) ;
73
+ const wrapper = mountReactQuill ( { value : html } ) ;
74
74
const quill = getQuillInstance ( wrapper ) ;
75
75
expect ( getQuillContentsAsHTML ( wrapper ) ) . to . equal ( html ) ;
76
76
} ) ;
77
77
78
78
it ( 'allows using HTML strings as defaultValue' , ( ) => {
79
79
const html = '<p>Hello, world!</p>' ;
80
- const wrapper = mountReactQuill ( { defaultValue : html } ) ;
80
+ const wrapper = mountReactQuill ( { defaultValue : html } ) ;
81
81
const quill = getQuillInstance ( wrapper ) ;
82
82
expect ( getQuillContentsAsHTML ( wrapper ) ) . to . equal ( html ) ;
83
83
} ) ;
84
84
85
85
it ( 'allows using Deltas as value' , ( ) => {
86
86
const html = '<p>Hello, world!</p>' ;
87
- const delta = { ops : [ { insert : 'Hello, world!' } ] } ;
88
- const wrapper = mountReactQuill ( { value : html } ) ;
87
+ const delta = { ops : [ { insert : 'Hello, world!' } ] } ;
88
+ const wrapper = mountReactQuill ( { value : html } ) ;
89
89
const quill = getQuillInstance ( wrapper ) ;
90
90
expect ( getQuillContentsAsHTML ( wrapper ) ) . to . equal ( html ) ;
91
91
} ) ;
92
92
93
- it ( 'prevents using Delta changesets from events as value' , ( done ) => {
93
+ it ( 'prevents using Delta changesets from events as value' , done => {
94
94
const value = '<p>Hello, world!</p>' ;
95
95
const changedValue = '<p>Adieu, world!</p>' ;
96
+ let wrapper ;
96
97
const onChange = ( _ , delta ) => {
97
- withMockedConsole ( ( ) => {
98
- expect ( ( ) => wrapper . setProps ( { value : delta } ) ) . to . throw ( ) ;
99
- done ( ) ;
100
- } ) ;
98
+ wrapper . setProps ( { value : delta } ) ;
101
99
} ;
102
- const wrapper = mountReactQuill ( { value, onChange} ) ;
100
+ wrapper = mountReactQuill ( { value, onChange } ) ;
101
+
102
+ const expectedErr = / Y o u a r e p a s s i n g t h e ` d e l t a ` o b j e c t f r o m t h e ` o n C h a n g e ` e v e n t b a c k / ;
103
+ // this test knows a lot about the implementation,
104
+ // but we need to wrap the right function with a catch
105
+ // in order to prevent errors from it from propagating
106
+ const origValidateProps = wrapper . instance ( ) . validateProps ;
107
+ let calledDone = false ; // might get called more than once
108
+ wrapper . instance ( ) . validateProps = function ( props ) {
109
+ try {
110
+ origValidateProps . call ( wrapper . instance ( ) , props ) ;
111
+ } catch ( err ) {
112
+ if ( expectedErr . test ( err ) && calledDone === false ) {
113
+ done ( ) ;
114
+ calledDone = true ;
115
+ }
116
+ }
117
+ } . bind ( wrapper . instance ( ) ) ;
118
+
103
119
setQuillContentsFromHTML ( wrapper , changedValue ) ;
104
120
} ) ;
105
121
106
122
it ( 'allows using Deltas as defaultValue' , ( ) => {
107
123
const html = '<p>Hello, world!</p>' ;
108
- const delta = { ops : [ { insert : 'Hello, world!' } ] } ;
109
- const wrapper = mountReactQuill ( { defaultValue : html } ) ;
124
+ const delta = { ops : [ { insert : 'Hello, world!' } ] } ;
125
+ const wrapper = mountReactQuill ( { defaultValue : html } ) ;
110
126
const quill = getQuillInstance ( wrapper ) ;
111
127
expect ( getQuillContentsAsHTML ( wrapper ) ) . to . equal ( html ) ;
112
128
} ) ;
113
129
114
130
it ( 'calls onChange with the new value when Quill calls pasteHTML' , ( ) => {
115
131
const onChangeSpy = sinon . spy ( ) ;
116
132
const inHtml = '<p>Hello, world!</p>' ;
117
- const onChange = ( value ) => {
133
+ const onChange = value => {
118
134
expect ( inHtml ) . to . equal ( value ) ;
119
135
onChangeSpy ( ) ;
120
136
} ;
121
- const wrapper = mountReactQuill ( { onChange} ) ;
137
+ const wrapper = mountReactQuill ( { onChange } ) ;
122
138
setQuillContentsFromHTML ( wrapper , inHtml ) ;
123
- expect ( getQuillContentsAsHTML ( wrapper ) ) . to . equal ( inHtml )
139
+ expect ( getQuillContentsAsHTML ( wrapper ) ) . to . equal ( inHtml ) ;
124
140
expect ( onChangeSpy ) . to . have . property ( 'callCount' , 1 ) ;
125
- } )
141
+ } ) ;
126
142
127
143
it ( 'calls onChange with the new value when Quill calls insertText' , ( ) => {
128
144
const onChangeSpy = sinon . spy ( ) ;
129
145
const inHtml = '<p><strong>Hello, World!</strong></p>' ;
130
- const onChange = ( value ) => {
146
+ const onChange = value => {
131
147
expect ( inHtml ) . to . equal ( value ) ;
132
148
onChangeSpy ( ) ;
133
149
} ;
134
- const wrapper = mountReactQuill ( { onChange} ) ;
150
+ const wrapper = mountReactQuill ( { onChange } ) ;
135
151
const quill = getQuillInstance ( wrapper ) ;
136
152
quill . insertText ( 0 , 'Hello, World!' , 'bold' , true ) ;
137
153
expect ( getQuillContentsAsHTML ( wrapper ) ) . to . equal ( inHtml ) ;
138
154
expect ( onChangeSpy ) . to . have . property ( 'callCount' , 1 ) ;
139
- } )
155
+ } ) ;
140
156
141
157
it ( 'shows defaultValue if value prop is undefined' , ( ) => {
142
158
const defaultValue = '<p>Hello, world!</p>' ;
143
- const wrapper = mountReactQuill ( { defaultValue} ) ;
159
+ const wrapper = mountReactQuill ( { defaultValue } ) ;
144
160
const quill = getQuillInstance ( wrapper ) ;
145
161
// @ts -ignore untyped instance
146
162
expect ( wrapper . instance ( ) . getEditorContents ( ) ) . to . equal ( defaultValue ) ;
147
- } )
163
+ } ) ;
148
164
149
165
it ( 'shows the value prop instead of defaultValue if both are defined' , ( ) => {
150
166
const defaultValue = '<p>Hello, world!</p>' ;
@@ -156,15 +172,15 @@ describe('<ReactQuill />', function() {
156
172
const quill = getQuillInstance ( wrapper ) ;
157
173
// @ts -ignore untyped instance
158
174
expect ( wrapper . instance ( ) . getEditorContents ( ) ) . to . equal ( value ) ;
159
- } )
175
+ } ) ;
160
176
161
177
it ( 'uses a custom editing area if provided' , ( ) => {
162
178
const div = React . createFactory ( 'div' ) ;
163
- const editingArea = div ( { id :'venus' } ) ;
179
+ const editingArea = div ( { id : 'venus' } ) ;
164
180
const wrapper = mountReactQuill ( { } , editingArea ) ;
165
181
const quill = getQuillInstance ( wrapper ) ;
166
182
expect ( wrapper . getDOMNode ( ) . querySelector ( 'div#venus' ) ) . not . to . be . null ;
167
- } )
183
+ } ) ;
168
184
169
185
/**
170
186
* This can't be tested with the current state of JSDOM.
@@ -173,26 +189,25 @@ describe('<ReactQuill />', function() {
173
189
* https://github.com/tmpvar/jsdom/issues/317.
174
190
* Leaving this pending test as a reminder to follow up.
175
191
*/
176
- it ( 'focuses editor when calling focus()' )
192
+ it ( 'focuses editor when calling focus()' ) ;
177
193
178
194
/**
179
195
* A test for this may work if checking document.activeElement,
180
196
* but chances are the focus was never removed from the body
181
197
* after calling focus(). See JSDOM issue #317.
182
198
*/
183
- it ( 'removes focus from the editor when calling blur()' )
199
+ it ( 'removes focus from the editor when calling blur()' ) ;
184
200
185
201
/**
186
202
* In a browser, querySelector('.ql-editor').textContent = 'hi' would
187
203
* trigger a 'text-change' event, but here it doesn't. Is the polyfill
188
204
* for MutationObserver not working?
189
205
*/
190
- it ( 'calls onChange after the textContent of the editor changes' )
206
+ it ( 'calls onChange after the textContent of the editor changes' ) ;
191
207
192
208
/**
193
209
* This is hard to do without Selenium's 'type' function, but it is the
194
210
* ultimate test of whether everything is working or not
195
211
*/
196
- it ( 'calls onChange after keypresses are sent to the editor' )
197
-
212
+ it ( 'calls onChange after keypresses are sent to the editor' ) ;
198
213
} ) ;
0 commit comments