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

Commit

Permalink
Merge pull request #24 from ckeditor/t/ckeditor5/1341
Browse files Browse the repository at this point in the history
Fix: There should be no memory leaks when the editor is created and destroyed (see ckeditor/ckeditor5#1341).
  • Loading branch information
oleq authored Jan 22, 2019
2 parents 4072ce0 + f94350c commit 1e2f912
Show file tree
Hide file tree
Showing 5 changed files with 169 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/decouplededitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ import DataApiMixin from '@ckeditor/ckeditor5-core/src/editor/utils/dataapimixin
import RootElement from '@ckeditor/ckeditor5-engine/src/model/rootelement';

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

const editorData = '<p><strong>foo</strong> bar</p>';

Expand Down Expand Up @@ -303,4 +305,17 @@ describe( 'DecoupledEditor', () => {
} );
}
} );

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

<h2>The toolbar</h2>
<div class="toolbar-container"></div>

<h2>The editable</h2>
<div class="editable-container"></div>

<style>
.editable-container,
.toolbar-container {
position: relative;
border: 1px solid red;
}

.editable-container::after,
.toolbar-container::after {
content: attr(class);
position: absolute;
background: red;
color: #fff;
top: 0;
right: 0;
font: 10px/2 monospace;
padding: .1em .3em;
}

.toolbar-container{
padding: 1em;
}

.editable-container {
padding: 3em;
overflow-y: scroll;
max-height: 300px;
}

.editable-container .ck-editor__editable {
min-height: 21cm;
padding: 2em;
border: 1px #D3D3D3 solid;
border-radius: var(--ck-border-radius);
background: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
</style>
74 changes: 74 additions & 0 deletions tests/manual/memory.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/**
* @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md.
*/

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

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

const editorData = '<h2>Hello world</h2><p>This is the decoupled editor.</p><img src="sample.jpg" />';

/*
* Memory-leak safe version of decoupled 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() {
DecoupledEditor
.create( editorData, {
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.querySelector( '.toolbar-container' ).appendChild( newEditor.ui.view.toolbar.element );
document.querySelector( '.editable-container' ).appendChild( newEditor.ui.view.editable.element );

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 1e2f912

Please sign in to comment.