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 5198ca6 + 1e2f912 commit bc7cfb7
Show file tree
Hide file tree
Showing 5 changed files with 170 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/decouplededitor.js
Expand Up @@ -20,6 +20,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 { 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>';

describe( 'DecoupledEditor', () => {
Expand Down Expand Up @@ -304,4 +307,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
@@ -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
@@ -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
@@ -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
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 bc7cfb7

Please sign in to comment.