Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into t/ckeditor5/1449
Browse files Browse the repository at this point in the history
  • Loading branch information
f1ames committed Jan 22, 2019
2 parents 52f657b + a3c5c82 commit e898463
Show file tree
Hide file tree
Showing 5 changed files with 136 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/classiceditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ import RootElement from '@ckeditor/ckeditor5-engine/src/model/rootelement';
import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
import log from '@ckeditor/ckeditor5-utils/src/log';

import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
import { describeMemoryUsage, testMemoryUsage } from '@ckeditor/ckeditor5-core/tests/_utils/memory';

describe( 'ClassicEditor', () => {
let editor, editorElement;

Expand Down Expand Up @@ -296,4 +299,17 @@ describe( 'ClassicEditor', () => {
} );
} );
} );

describeMemoryUsage( () => {
testMemoryUsage(
'should not grow on multiple create/destroy',
() => ClassicEditor
.create( document.querySelector( '#mem-editor' ), {
plugins: [ ArticlePluginSet ],
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote' ],
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
}
} ) );
} );
} );
20 changes: 20 additions & 0 deletions tests/manual/memory.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<p>
<button id="destroyEditor">Destroy editor</button>
<button id="initEditor">Init editor</button>
</p>

<div id="editor">
<h2>Hello world!</h2>
<p>This is an editor instance.</p>

<img src="sample.jpg" />
</div>

<style>
.ck-editor {
margin-top: 200px;
margin-left: 100px;
margin-bottom: 200px;
width: 450px;
}
</style>
69 changes: 69 additions & 0 deletions tests/manual/memory.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/**
* @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md.
*/

/* globals console:false, document, window */

import ClassicEditor from '../../src/classiceditor';
import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';

/*
* Memory-leak safe version of classic editor manual test does not:
* - define global variables (such as let editor; in main file scope)
* - console.log() objects
* - add event listeners with () => {} methods which reference other
*/
function initEditor() {
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ ArticlePluginSet ],
toolbar: {
items: [
'heading',
'|',
'bold',
'italic',
'link',
'bulletedList',
'numberedList',
'blockQuote',
'insertTable',
'mediaEmbed',
'undo',
'redo'
]
},
image: {
toolbar: [
'imageStyle:full',
'imageStyle:side',
'|',
'imageTextAlternative'
]
},
table: {
contentToolbar: [
'tableColumn',
'tableRow',
'mergeTableCells'
]
}
} )
.then( newEditor => {
window.editor = newEditor;

document.getElementById( 'destroyEditor' ).addEventListener( 'click', destroyEditor );
} )
.catch( err => {
console.error( err.stack );
} );

function destroyEditor() {
window.editor.destroy().then( () => console.log( 'Editor was destroyed' ) );
window.editor = null;
document.getElementById( 'destroyEditor' ).removeEventListener( 'click', destroyEditor );
}
}

document.getElementById( 'initEditor' ).addEventListener( 'click', initEditor );
31 changes: 31 additions & 0 deletions tests/manual/memory.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
1. Open DevTools on Chrome.
2. Go to Memory tab.
3. Select "Heap snapshot" profiling type.
4. Click "Collect Garbage" (trash icon) and "Clear all profiles" (don't go icon).
5. Record heap snapshot ("Take heap snapshot" a record icon).
6. Repeat multiple times:
- click "Init editor",
- wait to editor show up ,
- click "Destroy editor".
7. Record heap snapshot again.
8. Compare Snapshot 1 with Snapshot 2 and look for:
- "detached" - HTML Elements/DOM nodes
- "EventListener" - there should be only 1
- Any CKEditor5 classes instances like "Editor" or "LivePosition"

## Notes:

* Browser extensions might attach event listeners to the DOM so the safest way to run this test is by running Chrome from command line:

```
google-chrome \
--enable-precise-memory-info \
--disable-extensions \
--disable-plugins \
--incognito \
http://localhost:8125
```

The above will run Chrome without extensions or plugins in incognito mode and open manual tests page.

* Close any running Chrome instance beforehand because otherwise it will open a tab in currently opened Chrome (look for "Opening in existing browser session." in command line).
Binary file added tests/manual/sample.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e898463

Please sign in to comment.