aboutsummaryrefslogtreecommitdiff
path: root/src/js/tests/specs/jquery-plugins.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/tests/specs/jquery-plugins.js')
-rw-r--r--src/js/tests/specs/jquery-plugins.js37
1 files changed, 34 insertions, 3 deletions
diff --git a/src/js/tests/specs/jquery-plugins.js b/src/js/tests/specs/jquery-plugins.js
index 7fc196b..04eb0fb 100644
--- a/src/js/tests/specs/jquery-plugins.js
+++ b/src/js/tests/specs/jquery-plugins.js
@@ -86,7 +86,9 @@ describe('jQuery plugins', function () {
});
it('filters out everything', function () {
- expect($t.notColorSet(['#ffffff', '#000000', '#e1e1e1']).length).toEqual(0);
+ expect(
+ $t.notColorSet(['#ffffff', '#000000', '#e1e1e1']).length).toEqual(0
+ );
});
});
@@ -99,11 +101,15 @@ describe('jQuery plugins', function () {
var $t = $(htm);
it('filters out colors', function () {
- expect($t.cssIsNot('color', ['#ffffff', '#000000'], fiveui.color.colorToHexWithDefault).length).toEqual(1);
+ expect($t.cssIsNot('color',
+ ['#ffffff', '#000000'],
+ fiveui.color.colorToHexWithDefault).length).toEqual(1);
});
it('filters out background-colors', function () {
- expect($t.cssIsNot('background-color', ['#141414', '#232323'], fiveui.color.colorToHexWithDefault).length).toEqual(3);
+ expect($t.cssIsNot('background-color',
+ ['#141414', '#232323'],
+ fiveui.color.colorToHexWithDefault).length).toEqual(3);
});
it('filters out elements of different type', function () {
@@ -111,6 +117,31 @@ describe('jQuery plugins', function () {
});
});
+ describe('fiveui.jquery.attrFilter', function () {
+ var isEmpty = function (s) { return $.trim(s) == ""; };
+
+ it('filters for zero elements with empty alt', function () {
+ var $elt = $('<a href="foo" alt="bar"><a href="beel" alt="bar">');
+ expect($elt.attrFilter('alt', isEmpty).length).toEqual(0);
+ });
+
+ it('filters for one element with empty alt', function () {
+ var $elt = $('<a href="foo" alt=""><a href="beel" alt="bar">');
+ expect($elt.attrFilter('alt', isEmpty).length).toEqual(1);
+ });
+
+ it('filters out elements that don\'t have the attribute', function () {
+ var $elt = $('<a href="foo"><a href="beel">');
+ expect($elt.attrFilter('alt', isEmpty).length).toEqual(0);
+ });
+
+ it('filters for elements with alt containing foo', function () {
+ var hasFoo = function (s) { return /foo/.test(s); };
+ var $elt = $('<a href="foo" alt="barfoo"><a href="beel" alt="bar">');
+ expect($elt.attrFilter('alt', hasFoo).length).toEqual(1);
+ });
+ });
+
describe('fiveui.jquery.linksTo', function () {
it('filters out elements with no href', function () {
expect($('<p>foo</p>').linksTo('bar').length).toEqual(0);