-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
/
Copy patheditor-test.js
513 lines (413 loc) · 25.1 KB
/
editor-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
import EmberObject from '@ember/object';
import RSVP from 'rsvp';
import {authenticateSession} from 'ember-simple-auth/test-support';
import {defineProperty} from '@ember/object';
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {settled} from '@ember/test-helpers';
import {setupTest} from 'ember-mocha';
import {task} from 'ember-concurrency';
describe('Unit: Controller: lexical-editor', function () {
setupTest();
let createPost;
const _createPost = function (attrs) {
const store = this.owner.lookup('service:store');
return store.createRecord('post', attrs);
};
beforeEach(function () {
createPost = _createPost.bind(this);
});
describe('generateSlug', function () {
it('should generate a slug and set it on the post, passing the id if it exists', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('slugGenerator', EmberObject.create({
generateSlug(slugType, str, id) {
if (id !== 'fake-id') {
throw new Error('Expected id "fake-id" to be passed to generateSlug.');
}
return RSVP.resolve(`${str}-slug`);
}
}));
controller.set('post', createPost({id: 'fake-id', slug: ''}));
controller.set('post.titleScratch', 'title');
await settled();
expect(controller.get('post.slug')).to.equal('');
await controller.generateSlugTask.perform();
expect(controller.get('post.slug')).to.equal('title-slug');
});
it('should generate a slug and set it on the post', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('slugGenerator', EmberObject.create({
generateSlug(slugType, str) {
return RSVP.resolve(`${str}-slug`);
}
}));
controller.set('post', createPost({slug: ''}));
controller.set('post.titleScratch', 'title');
await settled();
expect(controller.get('post.slug')).to.equal('');
await controller.generateSlugTask.perform();
expect(controller.get('post.slug')).to.equal('title-slug');
});
it('should not set the destination if the title is "(Untitled)" and the post already has a slug', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('slugGenerator', EmberObject.create({
generateSlug(slugType, str) {
return RSVP.resolve(`${str}-slug`);
}
}));
controller.set('post', createPost({slug: 'whatever'}));
expect(controller.get('post.slug')).to.equal('whatever');
controller.set('post.titleScratch', '(Untitled)');
await controller.generateSlugTask.perform();
expect(controller.get('post.slug')).to.equal('whatever');
});
it('should generate a new slug if the previous title was (Untitled)', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('slugGenerator', EmberObject.create({
generateSlug(slugType, str) {
return RSVP.resolve(`${str}-slug`);
}
}));
controller.set('post', createPost({
slug: '',
title: '(Untitled)',
titleScratch: 'title'
}));
await controller.generateSlugTask.perform();
expect(controller.get('post.slug')).to.equal('title-slug');
});
it('should generate a new slug if the previous title ended with (Copy)', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('slugGenerator', EmberObject.create({
generateSlug(slugType, str) {
return RSVP.resolve(`${str}-slug`);
}
}));
controller.set('post', createPost({
slug: '',
title: 'title (Copy)',
titleScratch: 'newTitle'
}));
await controller.generateSlugTask.perform();
expect(controller.get('post.slug')).to.equal('newTitle-slug');
});
it('should not generate a new slug if it appears a custom slug was set', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('slugGenerator', EmberObject.create({
generateSlug(slugType, str) {
return RSVP.resolve(`${str}-slug`);
}
}));
controller.set('post', createPost({
slug: 'custom-slug',
title: 'original title',
titleScratch: 'newTitle'
}));
expect(controller.get('post.slug')).to.equal('custom-slug');
expect(controller.get('post.titleScratch')).to.equal('newTitle');
await controller.generateSlugTask.perform();
expect(controller.get('post.slug')).to.equal('custom-slug');
});
it('should generate new slugs if the title changes', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('slugGenerator', EmberObject.create({
generateSlug(slugType, str) {
return RSVP.resolve(`${str}-slug`);
}
}));
controller.set('post', createPost({
slug: 'somepost',
title: 'somepost',
titleScratch: 'newtitle'
}));
await controller.generateSlugTask.perform();
expect(controller.get('post.slug')).to.equal('newtitle-slug');
});
});
describe('saveTitleTask', function () {
beforeEach(function () {
this.controller = this.owner.lookup('controller:lexical-editor');
this.controller.set('target', {send() {}});
defineProperty(this.controller, 'autosaveTask', task(function * () {
yield RSVP.resolve();
}));
});
it('should invoke generateSlug if the post is not published', async function () {
let {controller} = this;
controller.set('target', {send() {}});
defineProperty(controller, 'generateSlugTask', task(function * () {
this.set('post.slug', 'test-slug');
yield RSVP.resolve();
}));
controller.set('post', createPost({isDraft: true}));
expect(controller.get('post.isDraft')).to.be.true;
expect(controller.get('post.titleScratch')).to.not.be.ok;
controller.set('post.titleScratch', 'test');
await controller.saveTitleTask.perform();
expect(controller.get('post.titleScratch')).to.equal('test');
expect(controller.get('post.slug')).to.equal('test-slug');
});
it('should not invoke generateSlug if the post is published', async function () {
let {controller} = this;
controller.set('target', {send() {}});
controller.set('post', createPost({
title: 'a title',
isPublished: true
}));
expect(controller.get('post.isPublished')).to.be.true;
expect(controller.get('post.title')).to.equal('a title');
expect(controller.get('post.titleScratch')).to.not.be.ok;
controller.set('post.titleScratch', 'test');
await controller.saveTitleTask.perform();
expect(controller.get('post.titleScratch')).to.equal('test');
expect(controller.get('post.slug')).to.not.be.ok;
});
});
describe('TK count in title', function () {
it('should have count 0 for no TK', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('post', createPost({titleScratch: 'this is a title'}));
expect(controller.get('tkCount')).to.equal(0);
});
it('should count TK reminders in the title', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('post', createPost({titleScratch: 'this is a TK'}));
expect(controller.get('tkCount')).to.equal(1);
});
});
describe('hasDirtyAttributes', function () {
it('detects new post with changed attributes as dirty (autosave)', async function () {
const initialLexicalString = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content","type": "extended-text","version": 1}],"direction": null,"format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const lexicalScratch = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content updated","type": "extended-text","version": 1}],"direction": null,"format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('post', createPost({
title: '',
titleScratch: '',
status: 'draft',
lexical: initialLexicalString,
lexicalScratch: lexicalScratch,
secondaryLexicalState: initialLexicalString
}));
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.true;
});
it('does not detect new post as dirty when there are no changes', async function () {
const controller = this.owner.lookup('controller:lexical-editor');
const post = createPost({});
post.titleScratch = post.title;
post.lexicalScratch = post.lexical;
controller.set('post', post);
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.false;
});
it('marks isNew post as dirty when lexicalScratch differs from lexical and secondaryLexical', async function () {
const initialLexicalString = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content","type": "extended-text","version": 1}],"direction": null,"format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const lexicalScratch = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content scratch","type": "extended-text","version": 1}],"direction": null,"format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('post', createPost({
title: '',
titleScratch: '',
status: 'draft',
lexical: initialLexicalString,
lexicalScratch: lexicalScratch,
secondaryLexicalState: initialLexicalString,
changedAttributes: () => ({title: ['', 'New Title']})
}));
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.true;
});
it('Changes in the direction field in the lexical string are not considered dirty', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
const initialLexicalString = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content","type": "extended-text","version": 1}],"direction": null,"format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const lexicalStringNoNullDirection = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content","type": "extended-text","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const lexicalStringUpdatedContent = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Here's some new text","type": "extended-text","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const post = createPost({
title: 'this is a title',
status: 'published',
lexical: initialLexicalString,
tags: [],
authors: [],
postRevisions: []
});
const postJson = {...post.serialize(), id: 1};
this.owner.lookup('service:store').unloadRecord(post);
this.owner.lookup('service:store').pushPayload({posts: [postJson]});
// scratch attrs are not serialized/deserialized so need to be set manually
const savedPost = this.owner.lookup('service:store').peekRecord('post', 1);
savedPost.titleScratch = postJson.title;
savedPost.lexicalScratch = initialLexicalString;
savedPost.secondaryLexicalState = initialLexicalString;
controller.set('post', savedPost);
// synthetically update the lexicalScratch as if the editor itself made the modifications on loading the initial editorState
controller.send('updateScratch',JSON.parse(lexicalStringNoNullDirection));
// this should NOT result in the post being dirty - while lexical !== lexicalScratch, we ignore the direction field
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.false;
// now we try a synthetic change in the actual text content that should result in a dirty post
controller.send('updateScratch',JSON.parse(lexicalStringUpdatedContent));
// this should NOT result in the post being dirty - while lexical !== lexicalScratch, we ignore the direction field
isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.true;
});
it('dirty is false if secondaryLexical and scratch matches, but lexical is outdated', async function () {
const initialLexicalString = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content","type": "extended-text","version": 1}],"direction": null,"format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const lexicalScratch = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content","type": "extended-text","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const secondLexicalInstance = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Here's some new text","type": "extended-text","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
let controller = this.owner.lookup('controller:lexical-editor');
const post = createPost({
title: 'this is a title',
status: 'published',
lexical: initialLexicalString,
tags: [],
authors: [],
postRevisions: []
});
const postJson = {...post.serialize(), id: 1};
this.owner.lookup('service:store').unloadRecord(post);
this.owner.lookup('service:store').pushPayload({posts: [postJson]});
// scratch attrs are not serialized/deserialized so need to be set manually
const savedPost = this.owner.lookup('service:store').peekRecord('post', 1);
savedPost.titleScratch = postJson.title;
savedPost.lexicalScratch = lexicalScratch;
savedPost.secondaryLexicalState = secondLexicalInstance;
controller.set('post', savedPost);
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.false;
});
it('dirty is true if secondaryLexical and lexical does not match scratch', async function () {
const initialLexicalString = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content","type": "extended-text","version": 1}],"direction": null,"format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const lexicalScratch = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Sample content1234","type": "extended-text","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
const secondLexicalInstance = `{"root":{"children":[{"children": [{"detail": 0,"format": 0,"mode": "normal","style": "","text": "Here's some new text","type": "extended-text","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "paragraph","version": 1}],"direction": "ltr","format": "","indent": 0,"type": "root","version": 1}}`;
let controller = this.owner.lookup('controller:lexical-editor');
const post = createPost({
title: 'this is a title',
status: 'published',
lexical: initialLexicalString,
tags: [],
authors: [],
postRevisions: []
});
const postJson = {...post.serialize(), id: 1};
this.owner.lookup('service:store').unloadRecord(post);
this.owner.lookup('service:store').pushPayload({posts: [postJson]});
// scratch attrs are not serialized/deserialized so need to be set manually
const savedPost = this.owner.lookup('service:store').peekRecord('post', 1);
savedPost.titleScratch = postJson.title;
savedPost.lexicalScratch = lexicalScratch;
savedPost.secondaryLexicalState = secondLexicalInstance;
controller.set('post', savedPost);
controller.send('updateScratch',JSON.parse(lexicalScratch));
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.true;
});
it('dirty is false if no Post', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
controller.set('post', null);
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.false;
});
it('returns true if current tags differ from previous tags', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
const tag1 = this.owner.lookup('service:store').createRecord('tag', {id: 1, name: 'test'});
const tag2 = this.owner.lookup('service:store').createRecord('tag', {id: 2, name: 'changed'});
const post = createPost({
tags: [tag1],
authors: [],
postRevisions: []
});
const postJson = {...post.serialize(), id: 1};
this.owner.lookup('service:store').unloadRecord(post);
this.owner.lookup('service:store').pushPayload({posts: [postJson]});
const savedPost = this.owner.lookup('service:store').peekRecord('post', 1);
controller.set('post', savedPost);
savedPost.tags = [tag1, tag2];
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.true;
});
it('returns false when the post is new but has no changed attributes', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
// no attrs = defaults = empty changedAttributes
const post = createPost({});
controller.set('post', post);
// update scratch attrs to match controller.setPost behavior
post.titleScratch = post.title;
post.lexicalScratch = post.lexical;
let isDirty = controller.hasDirtyAttributes;
expect(isDirty).to.be.false;
});
it('skips new post check if post is not new', async function () {
let controller = this.owner.lookup('controller:lexical-editor');
const post = createPost({
title: 'Sample Title',
status: 'draft',
lexical: '',
tags: [],
authors: [],
postRevisions: []
});
const postJson = {...post.serialize(), id: 1};
this.owner.lookup('service:store').unloadRecord(post);
this.owner.lookup('service:store').pushPayload({posts: [postJson]});
// scratch attrs are not serialized/deserialized so need to be set manually
const savedPost = this.owner.lookup('service:store').peekRecord('post', 1);
savedPost.titleScratch = 'Sample Title';
savedPost.lexicalScratch = '';
savedPost.secondaryLexicalState = '';
controller.set('post', savedPost);
let isDirty = controller.hasDirtyAttributes;
// The test passes if no errors occur and it doesn't return true for new post condition
expect(isDirty).to.be.false;
});
});
describe('post state debugging', function () {
let controller, store;
beforeEach(async function () {
controller = this.owner.lookup('controller:lexical-editor');
store = this.owner.lookup('service:store');
// avoid any unwanted network calls
const slugGenerator = this.owner.lookup('service:slug-generator');
slugGenerator.generateSlug = async () => 'test-slug';
Object.defineProperty(controller, 'backgroundLoaderTask', {
get: () => ({perform: () => {}})
});
// avoid waiting forever for authenticate modal
await authenticateSession();
});
afterEach(function () {
sinon.restore();
});
it('should call _getNotFoundErrorContext() when hitting 404 during save', async function () {
const getErrorContextSpy = sinon.spy(controller, '_getNotFoundErrorContext');
const post = createPost();
post.save = () => RSVP.reject(404);
controller.set('post', post);
await controller.saveTask.perform(); // should not throw
expect(getErrorContextSpy.calledOnce).to.be.true;
});
it('_getNotFoundErrorContext() includes setPost model state', async function () {
const newPost = store.createRecord('post');
controller.setPost(newPost);
expect(controller._getNotFoundErrorContext().setPostState).to.equal('root.loaded.created.uncommitted');
});
it('_getNotFoundErrorContext() includes current model state', async function () {
const newPost = store.createRecord('post');
controller.setPost(newPost);
controller.post = {currentState: {stateName: 'this.is.a.test'}};
expect(controller._getNotFoundErrorContext().currentPostState).to.equal('this.is.a.test');
});
it('_getNotFoundErrorContext() includes all post states', async function () {
const newPost = store.createRecord('post');
controller.setPost(newPost);
controller.post = {currentState: {stateName: 'state.one', isDirty: true}};
controller.post = {currentState: {stateName: 'state.two', isDirty: false}};
const allPostStates = controller._getNotFoundErrorContext().allPostStates;
const expectedStates = [
['root.loaded.created.uncommitted', {isDeleted: false, isDirty: true, isEmpty: false, isLoading: false, isLoaded: true, isNew: true, isSaving: false, isValid: true}],
['state.one', {isDeleted: undefined, isDirty: true, isEmpty: undefined, isLoading: undefined, isLoaded: undefined, isNew: undefined, isSaving: undefined, isValid: undefined}],
['state.two', {isDeleted: undefined, isDirty: false, isEmpty: undefined, isLoading: undefined, isLoaded: undefined, isNew: undefined, isSaving: undefined, isValid: undefined}]
];
expect(allPostStates).to.deep.equal(expectedStates);
});
});
});