|
| 1 | +/* |
| 2 | + * GPLv3 https://www.gnu.org/licenses/gpl-3.0.en.html |
| 3 | + * |
| 4 | + * Author: eidng8 |
| 5 | + */ |
| 6 | + |
| 7 | +const { checkerSelector } = require('../helpers'); |
| 8 | + |
| 9 | +/** |
| 10 | + * |
| 11 | + * @param {string} selector |
| 12 | + * @param {string} msg |
| 13 | + */ |
| 14 | +exports.assertion = function (selector, msg) { |
| 15 | + // If the custom commands operates with DOM elements, this options should be set |
| 16 | + this.options = { |
| 17 | + elementSelector: true, |
| 18 | + }; |
| 19 | + |
| 20 | + /** |
| 21 | + * Returns the message format which will be used to output the message in the |
| 22 | + * console and also the arguments which will be used for replace the place |
| 23 | + * holders, used in the order of appearance |
| 24 | + * |
| 25 | + * The message format also takes into account whether the `.not` negate has |
| 26 | + * been used |
| 27 | + * |
| 28 | + * @return {{args: [], message: string}} |
| 29 | + */ |
| 30 | + this.formatMessage = function () { |
| 31 | + if (!msg) { |
| 32 | + msg = `Testing if %s ${ |
| 33 | + this.negate ? "isn't" : 'is' |
| 34 | + } in intermediate state`; |
| 35 | + } |
| 36 | + |
| 37 | + return { |
| 38 | + message: msg, |
| 39 | + args: [this.elementSelector], |
| 40 | + }; |
| 41 | + }; |
| 42 | + |
| 43 | + /** |
| 44 | + * Returns the expected value of the assertion which is displayed in the case |
| 45 | + * of a failure |
| 46 | + * |
| 47 | + * @return {string} |
| 48 | + */ |
| 49 | + this.expected = function () { |
| 50 | + return `${this.negate ? "isn't" : 'is'} in intermediate state`; |
| 51 | + }; |
| 52 | + |
| 53 | + /** |
| 54 | + * Given the value, the condition used to evaluate if the assertion is passed |
| 55 | + * @param {*} value |
| 56 | + * @return {Boolean} |
| 57 | + */ |
| 58 | + this.evaluate = function (value) { |
| 59 | + return /.*\bg8-tree__node_entry_checker_checked_some\b.*/.test(value); |
| 60 | + }; |
| 61 | + |
| 62 | + /** |
| 63 | + * When defined, this method is called by the assertion runner with the |
| 64 | + * command result to determine the actual state of the assertion in the event |
| 65 | + * of a failure |
| 66 | + * |
| 67 | + * @param {Boolean} passed |
| 68 | + * @return {string} |
| 69 | + */ |
| 70 | + this.actual = function (passed) { |
| 71 | + return `${passed ? 'is' : "isn't"} in intermediate state`; |
| 72 | + }; |
| 73 | + |
| 74 | + /** |
| 75 | + * The command which is to be executed by the assertion runner; Nightwatch |
| 76 | + * api is available as `this.api` |
| 77 | + * @param {function} cb |
| 78 | + */ |
| 79 | + this.command = function (cb) { |
| 80 | + this.api.getAttribute(checkerSelector(selector), 'class', r => cb(r)); |
| 81 | + }; |
| 82 | +}; |
0 commit comments