mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
3ee8f505b7
The main benefit of this is so that authors who make use of .editorconfig don't end up with whitespace changes in their PRs. Spaces vs. tabs has been left alone, although that could do with a tidy-up in SS4 after the switch to PSR-1/2. The command used was this: for match in '*.ss' '*.css' '*.scss' '*.html' '*.yml' '*.php' '*.js' '*.csv' '*.inc' '*.php5'; do find . -path ./thirdparty -not -prune -o -path ./admin/thirdparty -not -prune -o -type f -name "$match" -exec sed -E -i '' 's/[[:space:]]+$//' {} \+ find . -path ./thirdparty -not -prune -o -path ./admin/thirdparty -not -prune -o -type f -name "$match" | xargs perl -pi -e 's/ +$//' done
240 lines
6.9 KiB
JavaScript
240 lines
6.9 KiB
JavaScript
(function($) {
|
|
describe("TreeDropdownField", function() {
|
|
$.entwine.warningLevel = $.entwine.WARN_LEVEL_BESTPRACTISE;
|
|
$.entwine.synchronous_mode();
|
|
|
|
var fixtures = {
|
|
'tree': '<ul>' +
|
|
' <li data-id="1">' +
|
|
' <a href="#">Root node 1</a>' +
|
|
' <ul>' +
|
|
' <li data-id="2"><a href="#">Child node 1</a></li>' +
|
|
' <li data-id="3"><a href="#">Child node 2</a></li>' +
|
|
' </ul>' +
|
|
' </li>' +
|
|
' <li data-id="4"><a href="#">Root node 2</a></li>' +
|
|
' <li data-id="5"><a href="#">Root node 3</a></li>' +
|
|
' <li data-id="6"><a href="#">Root node 4</a></li>' +
|
|
'</ul>',
|
|
'treesearch': '<ul>' +
|
|
' <li data-id="1">' +
|
|
' <a href="#">Root node 1</a>' +
|
|
' <ul>' +
|
|
' <li data-id="2"><a href="#">Child node 1</a></li>' +
|
|
' </ul>' +
|
|
' </li>' +
|
|
'</ul>'
|
|
}
|
|
|
|
// helpers
|
|
var loadTree = function(container, html) {
|
|
if(!html) html = fixtures.tree;
|
|
container.entwine('ss').loadTree();
|
|
var request = mostRecentAjaxRequest();
|
|
request.response({
|
|
status: 200,
|
|
contentType: 'text/html',
|
|
responseText: html
|
|
});
|
|
// loaded doesnt trigger automatically in test mode
|
|
container.find('.tree-holder').jstree('loaded');
|
|
}
|
|
|
|
describe('when field is basic', function() {
|
|
|
|
beforeEach(function() {
|
|
// load fixture
|
|
$('body').append(
|
|
'<div id="testfield" class="TreeDropdownField single" data-url-tree="/myurl" data-title="Selected">' +
|
|
'<input type="hidden" name="testfield" value="1" />' +
|
|
'</div>'
|
|
);
|
|
});
|
|
|
|
afterEach(function() {
|
|
$('#testfield').remove();
|
|
});
|
|
|
|
it('displays the default title', function() {
|
|
expect($('#testfield').entwine('ss').getTitle()).toEqual('Selected');
|
|
});
|
|
|
|
it('opens the tree panel when edit link is clicked', function() {
|
|
var panel = $('#testfield').entwine('ss').getPanel();
|
|
expect(panel).toBeHidden();
|
|
$('#testfield a.toggle-panel-link').click();
|
|
expect(panel).toBeVisible();
|
|
});
|
|
|
|
it('loads the tree when panel is first shown', function() {
|
|
var panel = $('#testfield').entwine('ss').getPanel();
|
|
$('#testfield').entwine('ss').openPanel();
|
|
var request = mostRecentAjaxRequest();
|
|
request.response({
|
|
status: 200,
|
|
contentType: 'text/html',
|
|
responseText: fixtures.tree
|
|
});
|
|
|
|
expect(panel).toContain('ul');
|
|
});
|
|
|
|
describe('when an item is selected', function() {
|
|
it('closes the panel', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
loadTree(f);
|
|
f.entwine('ss').openPanel();
|
|
panel.find('li[data-id=2] a').click();
|
|
expect(panel).toBeHidden();
|
|
});
|
|
|
|
it('it sets the selected value on the input field', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
loadTree(f);
|
|
panel.find('li[data-id=2] a').click();
|
|
expect(f.entwine('ss').getValue()).toEqual('2');
|
|
});
|
|
|
|
it('it sets the selected title', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
loadTree(f);
|
|
panel.find('li[data-id=2] a').click();
|
|
expect(f.entwine('ss').getTitle()).toEqual('Child node 1');
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
describe('when field is searchable', function() {
|
|
|
|
beforeEach(function() {
|
|
// load fixture
|
|
$('body').append(
|
|
'<div id="testfield" class="TreeDropdownField searchable" data-url-tree="/myurl" data-title="Selected">' +
|
|
'<input type="hidden" name="testfield" value="1" />' +
|
|
'</div>'
|
|
);
|
|
});
|
|
|
|
afterEach(function() {
|
|
$('#testfield').remove();
|
|
});
|
|
|
|
it('only shows search results', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
f.entwine('ss').search('Child node 1');
|
|
var request = mostRecentAjaxRequest();
|
|
request.response({
|
|
status: 200,
|
|
contentType: 'text/html',
|
|
responseText: fixtures.treesearch
|
|
});
|
|
|
|
expect(panel.text().match('Child node 1')).toBeTruthy();
|
|
expect(panel.text().match('Root node 2')).not.toBeTruthy();
|
|
});
|
|
|
|
// TODO Key events: Enter/ESC
|
|
});
|
|
|
|
describe('when field allows multiple selections', function() {
|
|
|
|
beforeEach(function() {
|
|
// load fixture (check one child node, one root node)
|
|
$('body').append(
|
|
'<div id="testfield" class="TreeDropdownField multiple" data-url-tree="/myurl" data-title="Root Node 2,Root Node 3">' +
|
|
'<input type="hidden" name="testfield" value="4,5" />' +
|
|
'</div>'
|
|
);
|
|
});
|
|
|
|
afterEach(function() {
|
|
$('#testfield').remove();
|
|
});
|
|
|
|
describe('when more than one item is selected', function() {
|
|
|
|
it('doesnt close the panel', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
loadTree(f);
|
|
f.entwine('ss').openPanel();
|
|
panel.find('li[data-id=2]').click();
|
|
expect(panel).toBeVisible();
|
|
});
|
|
|
|
it('selects the tree nodes based on initial values', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
loadTree(f);
|
|
f.entwine('ss').openPanel();
|
|
expect(f.entwine('ss').getValue()).toEqual(['4','5']);
|
|
});
|
|
|
|
it('it sets the selected values on the input field', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
loadTree(f);
|
|
f.entwine('ss').openPanel();
|
|
|
|
// TODO loaded.jstree event works with timeouts, so we have to wait before inspection
|
|
waits(200);
|
|
runs(function() {
|
|
panel.find('li[data-id=6] a').click();
|
|
// '4' and '5' were preselected
|
|
expect(f.entwine('ss').getValue()).toEqual(['4','5','6']);
|
|
|
|
// Selecting an checked node will remove it from selection
|
|
panel.find('li[data-id=4] a').click();
|
|
expect(f.entwine('ss').getValue()).toEqual(['5','6']);
|
|
});
|
|
|
|
});
|
|
|
|
it('it sets the selected titles', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
var xhr = loadTree(f);
|
|
|
|
// TODO loaded.jstree event works with timeouts, so we have to wait before inspection
|
|
waits(200);
|
|
runs(function() {
|
|
panel.find('li[data-id=6] a').click();
|
|
expect(f.entwine('ss').getTitle()).toEqual('Root node 2, Root node 3, Root node 4');
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('when field is contained in a form', function() {
|
|
|
|
beforeEach(function() {
|
|
$('#myform .TreeDropdownField').entwine('ss', {
|
|
getRequestParams: function() {
|
|
return this.parents('form:first').serializeArray();
|
|
}
|
|
});
|
|
|
|
// load fixture
|
|
$('body').append(
|
|
'<form id="myform" url="/myform">' +
|
|
'<div id="testfield" class="TreeDropdownField" data-url-tree="/myurl" data-title="Selected">' +
|
|
'<input type="hidden" name="testfield" value="1" />' +
|
|
'</div>' +
|
|
'<input type="hidden" name="MyFormValue" value="foo" />' +
|
|
'</form>'
|
|
);
|
|
});
|
|
|
|
afterEach(function() {
|
|
$('#testfield').remove();
|
|
});
|
|
|
|
it('sends all form values with ajax requests', function() {
|
|
var f = $('#testfield'), panel = f.entwine('ss').getPanel();
|
|
loadTree(f);
|
|
var xhr = mostRecentAjaxRequest();
|
|
expect(xhr.params).toContain('MyFormValue=foo');
|
|
});
|
|
});
|
|
});
|
|
}(jQuery));
|