added test for setElementText function
This commit is contained in:
parent
3ab489e92d
commit
61a59911b8
34
js/test.js
34
js/test.js
@ -71,24 +71,48 @@ describe('helper', function () {
|
|||||||
describe('selectText', function () {
|
describe('selectText', function () {
|
||||||
jsc.property(
|
jsc.property(
|
||||||
'selection contains content of given ID',
|
'selection contains content of given ID',
|
||||||
|
jsc.nearray(jsc.nearray(jsc.elements(alnumString))),
|
||||||
'nearray string',
|
'nearray string',
|
||||||
'nearray nestring',
|
|
||||||
function (ids, contents) {
|
function (ids, contents) {
|
||||||
//console.log(ids, contents);
|
|
||||||
var html = '',
|
var html = '',
|
||||||
result = true;
|
result = true;
|
||||||
ids.forEach(function(item, i) {
|
ids.forEach(function(item, i) {
|
||||||
html += '<div id="' + item + '">' + (contents[i] || contents[0]) + '</div>';
|
html += '<div id="' + item.join('') + '">' + (contents[i] || contents[0]) + '</div>';
|
||||||
});
|
});
|
||||||
var clean = jsdom(html);
|
var clean = jsdom(html);
|
||||||
ids.forEach(function(item, i) {
|
ids.forEach(function(item, i) {
|
||||||
$.PrivateBin.helper.selectText(item);
|
$.PrivateBin.helper.selectText(item.join(''));
|
||||||
// TODO: As per https://github.com/tmpvar/jsdom/issues/321 there is no getSelection in jsdom, yet.
|
// TODO: As per https://github.com/tmpvar/jsdom/issues/321 there is no getSelection in jsdom, yet.
|
||||||
// Once there is one, uncomment the line below to actually check the result.
|
// Once there is one, uncomment the line below to actually check the result.
|
||||||
//result *= (contents[i] || contents[0]) === window.getSelection().toString();
|
//result *= (contents[i] || contents[0]) === window.getSelection().toString();
|
||||||
});
|
});
|
||||||
clean();
|
clean();
|
||||||
return result;
|
return Boolean(result);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('setElementText', function () {
|
||||||
|
jsc.property(
|
||||||
|
'replaces the content of an element',
|
||||||
|
jsc.nearray(jsc.nearray(jsc.elements(alnumString))),
|
||||||
|
'nearray string',
|
||||||
|
'string',
|
||||||
|
function (ids, contents, replacingContent) {
|
||||||
|
var html = '',
|
||||||
|
result = true;
|
||||||
|
ids.forEach(function(item, i) {
|
||||||
|
html += '<div id="' + item.join('') + '">' + (contents[i] || contents[0]) + '</div>';
|
||||||
|
});
|
||||||
|
var clean = jsdom(html);
|
||||||
|
ids.forEach(function(item, i) {
|
||||||
|
var id = item.join(''),
|
||||||
|
element = $(document.getElementById(id));
|
||||||
|
$.PrivateBin.helper.setElementText(element, replacingContent);
|
||||||
|
result *= replacingContent === $(document.getElementById(id)).text();
|
||||||
|
});
|
||||||
|
clean();
|
||||||
|
return Boolean(result);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user