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

Commit

Permalink
Tests: Added manual test for the automatic dropdown panel placement.
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Oct 11, 2018
1 parent 671b1d8 commit 29ab03b
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tests/dropdown/manual/panelposition.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<style>
div[id^="dropdown-"].ck {
position: fixed;
}

#dropdown-nw {
top: 20px;
}

#dropdown-ne {
top: 20px;
right: 20px;
}

#dropdown-sw {
bottom: 20px;
}

#dropdown-se {
bottom: 20px;
right: 20px;
}
</style>

<div id="dropdown-nw" class="ck ck-reset_all"></div>
<div id="dropdown-ne" class="ck ck-reset_all"></div>
<div id="dropdown-se" class="ck ck-reset_all"></div>
<div id="dropdown-sw" class="ck ck-reset_all"></div>
49 changes: 49 additions & 0 deletions tests/dropdown/manual/panelposition.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/**
* @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md.
*/

import Model from '../../../src/model';
import Collection from '@ckeditor/ckeditor5-utils/src/collection';
import testUtils from '../../_utils/utils';
import { createDropdown, addListToDropdown } from '../../../src/dropdown/utils';

const ui = testUtils.createTestUIView( {
dropdownNW: '#dropdown-nw',
dropdownNE: '#dropdown-ne',
dropdownSE: '#dropdown-se',
dropdownSW: '#dropdown-sw'
} );

function createPositionedDropdown( position ) {
const collection = new Collection( { idProperty: 'label' } );

[
'long label of a first item of the list',
'long label of a second item of the list',
'long label of a third item of the list'
].forEach( label => {
collection.add( {
type: 'button',
model: new Model( { label, withText: true } )
} );
} );

const dropdownView = createDropdown( {} );

dropdownView.buttonView.set( {
label: `Dropdown ${ position }`,
isEnabled: true,
isOn: false,
withText: true
} );

addListToDropdown( dropdownView, collection );

ui[ `dropdown${ position }` ].add( dropdownView );
}

createPositionedDropdown( 'NW' );
createPositionedDropdown( 'NE' );
createPositionedDropdown( 'SW' );
createPositionedDropdown( 'SE' );
5 changes: 5 additions & 0 deletions tests/dropdown/manual/panelposition.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Automatic position of the dropdown panel

1. Open a dropdown located in the corner of the page.
2. Check if the panel shows up fully visible in the viewport.
3. Repeat for the rest of dropdowns. Panels should appear above, below, right and left to the button.

0 comments on commit 29ab03b

Please sign in to comment.