1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | 1 1 1 106 106 53 53 1 10 1 3 3 3 3 6 6 6 1 5 1 2 1 53 1 53 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 4 4 4 4 2 2 2 2 4 4 4 2 2 4 4 4 4 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 4 4 4 2 2 | "use strict"; var $ = require("jquery"); var slice = Array.prototype.slice; var partial = function (func) { var boundArgs = slice.call(arguments, 1); return function () { var args = boundArgs.concat(slice.call(arguments)); return func.apply(this, args); }; }; var hasProperty = function (actual, expected) { return (expected === undefined ? actual !== undefined : actual === expected); }; var hasCss = function (el, css) { var prop; var value; var $el = $(el); for (prop in css) { Eif (css.hasOwnProperty(prop)) { value = css[prop]; if (value === "auto" && $el.get(0).style[prop] === "auto") { continue; } if ($el.css(prop) !== value) { return false; } } } return true; }; var passes = function (a, b) { return (!a ^ !b); }; var compares = function (func) { return { compare: partial(func, false), negativeCompare: partial(func, true) }; }; module.exports = { toExist: function () { return compares(function (not, el) { var actual = $(el).length; return { pass: passes(actual > 0, not), message: "Expected element" + (not ? " not" : "") + " to exist" }; }); }, toHaveLength: function () { return compares(function (not, el, expected) { var actual = $(el).length; return { pass: passes(actual === expected, not), message: "Expected element" + (not ? " not" : "") + " to have length " + expected + ", but had " + actual }; }); }, toHaveId: function () { return compares(function (not, el, expected) { var actual = $(el).attr("id"); return { pass: passes(actual === expected, not), message: "Expected element" + (not ? " not" : "") + " to have ID '" + expected + "', but had '" + actual + "'" }; }); }, toHaveClass: function () { return compares(function (not, el, expected) { var actual = $(el).attr("class"); return { pass: passes($(el).hasClass(expected), not), message: "Expected element" + (not ? " not" : "") + " to have class '" + expected + "', but had '" + actual + "'" }; }); }, toHaveTag: function () { return compares(function (not, el, expected) { var actual = $(el).prop("tagName").toLowerCase(); expected = expected.toLowerCase(); return { pass: passes(actual === expected, not), message: "Expected element" + (not ? " not" : "") + " to have tag '" + expected + "', but had '" + actual + "'" }; }); }, toHaveAttr: function () { return compares(function (not, el, attr, expected) { var actual = $(el).attr(attr); var addendum = (expected !== undefined ? " with value '" + expected + "'" : ""); return { pass: passes(hasProperty(actual, expected), not), message: "Expected element" + (not ? " not" : "") + " to have attribute '" + attr + "'" + addendum + ", but had '" + actual + "'" }; }); }, toHaveProp: function () { return compares(function (not, el, prop, expected) { var actual = $(el).prop(prop); var addendum = (expected !== undefined ? " with value '" + expected + "'" : ""); return { pass: passes(hasProperty(actual, expected), not), message: "Expected element" + (not ? " not" : "") + " to have property '" + prop + "'" + addendum + ", but had '" + actual + "'" }; }); }, toHaveText: function () { return compares(function (not, el, expected) { var actual = $.trim($(el).text()); if (expected && $.isFunction(expected.test)) { return { pass: passes(expected.test(actual), not), message: "Expected element" + (not ? " not" : "") + " to have text matching '" + expected + "', but had '" + actual + "'" }; } else { return { pass: passes(actual.indexOf(expected) !== -1, not), message: "Expected element" + (not ? " not" : "") + " to have text '" + expected + "', but had '" + actual + "'" }; } }); }, toHaveData: function () { return compares(function (not, el, data, expected) { var actual = $(el).data(data); var addendum = (expected !== undefined ? " with value '" + expected + "'" : ""); return { pass: passes(hasProperty(actual, expected), not), message: "Expected element" + (not ? " not" : "") + " to have data '" + data + "'" + addendum + ", but had '" + actual + "'" }; }); }, toHaveValue: function () { return compares(function (not, el, expected) { var actual = $(el).val(); return { pass: passes(actual === expected, not), message: "Expected element" + (not ? " not" : "") + " to have value '" + expected + "', but had '" + actual + "'" }; }); }, toHaveCss: function () { return compares(function (not, el, expected) { return { pass: passes(hasCss(el, expected), not), message: "Expected element" + (not ? " not" : "") + " to have CSS " + jasmine.pp(expected) }; }); }, toBeChecked: function () { return compares(function (not, el) { return { pass: passes($(el).is(":checked"), not), message: "Expected element" + (not ? " not" : "") + " to be checked" }; }); }, toBeDisabled: function () { return compares(function (not, el) { return { pass: passes($(el).is(":disabled"), not), message: "Expected element" + (not ? " not" : "") + " to be disabled" }; }); }, toBeEmpty: function () { return compares(function (not, el) { return { pass: passes($(el).is(":empty"), not), message: "Expected element" + (not ? " not" : "") + " to be empty" }; }); }, toBeHidden: function () { return compares(function (not, el) { return { pass: passes($(el).is(":hidden"), not), message: "Expected element" + (not ? " not" : "") + " to be hidden" }; }); }, toBeSelected: function () { return compares(function (not, el) { return { pass: passes($(el).is(":selected"), not), message: "Expected element" + (not ? " not" : "") + " to be selected" }; }); }, toBeVisible: function () { return compares(function (not, el) { return { pass: passes($(el).is(":visible"), not), message: "Expected element" + (not ? " not" : "") + " to be visible" }; }); }, toBeFocused: function () { return compares(function (not, el) { el = $(el).get(0); return { pass: passes(el === el.ownerDocument.activeElement, not), message: "Expected element" + (not ? " not" : "") + " to be focused" }; }); }, toBeInDom: function () { return compares(function (not, el) { el = $(el).get(0); return { pass: passes($.contains(document.documentElement, el), not), message: "Expected element" + (not ? " not" : "") + " to be attached to the DOM" }; }); }, toBeMatchedBy: function () { return compares(function (not, el, expected) { var actual = $(el).filter(expected).length; return { pass: passes(actual > 0, not), message: "Expected element" + (not ? " not" : "") + " to be matched by '" + expected + "'" }; }); }, toHaveDescendant: function () { return compares(function (not, el, selector) { var actual = $(el).find(selector).length; return { pass: passes(actual > 0, not), message: "Expected element" + (not ? " not" : "") + " to contain child '" + selector + "'" }; }); }, toHaveDescendantWithText: function () { return compares(function (not, el, selector, expected) { var actual = $.trim($(el).find(selector).text()); if (expected && $.isFunction(expected.test)) { return { pass: passes(expected.test(actual), not), message: "Expected element" + (not ? " not" : "") + " to have descendant '" + selector + "' with text matching '" + expected + "', but had '" + actual + "'" }; } else { return { pass: passes(actual.indexOf(expected) !== -1, not), message: "Expected element" + (not ? " not" : "") + " to have descendant '" + selector + "' with text '" + expected + "', but had '" + actual + "'" }; } }); } }; |