2019-05-01 18:09:29 +00:00
|
|
|
export default function(scenario, assert, find, currentPage, pauseUntil, pluralize) {
|
2019-02-21 13:05:05 +00:00
|
|
|
scenario
|
|
|
|
.then('pause until I see $number $model model[s]?', function(num, model) {
|
2020-03-19 10:28:21 +00:00
|
|
|
return pauseUntil(function(resolve, reject, retry) {
|
2019-03-22 17:24:40 +00:00
|
|
|
const len = currentPage()[pluralize(model)].filter(function(item) {
|
|
|
|
return item.isVisible;
|
|
|
|
}).length;
|
|
|
|
if (len === num) {
|
2020-03-19 10:28:21 +00:00
|
|
|
return resolve();
|
2019-03-22 17:24:40 +00:00
|
|
|
}
|
2020-03-19 10:28:21 +00:00
|
|
|
return retry();
|
|
|
|
}, `Expected ${num} ${model}s`);
|
2019-02-21 13:05:05 +00:00
|
|
|
})
|
2020-11-11 16:59:15 +00:00
|
|
|
.then('pause until I see $number $model model[s]? on the $component component', function(
|
|
|
|
num,
|
|
|
|
model,
|
|
|
|
component
|
|
|
|
) {
|
2020-10-26 09:30:07 +00:00
|
|
|
return pauseUntil(function(resolve, reject, retry) {
|
|
|
|
const obj = find(component);
|
|
|
|
const len = obj[pluralize(model)].filter(function(item) {
|
|
|
|
return item.isVisible;
|
|
|
|
}).length;
|
|
|
|
if (len === num) {
|
|
|
|
return resolve();
|
|
|
|
}
|
|
|
|
return retry();
|
|
|
|
}, `Expected ${num} ${model}s`);
|
|
|
|
})
|
2019-03-07 10:51:39 +00:00
|
|
|
.then(['I see $num $model model[s]?'], function(num, model) {
|
2019-02-21 13:05:05 +00:00
|
|
|
const len = currentPage()[pluralize(model)].filter(function(item) {
|
|
|
|
return item.isVisible;
|
|
|
|
}).length;
|
|
|
|
assert.equal(len, num, `Expected ${num} ${pluralize(model)}, saw ${len}`);
|
|
|
|
})
|
2019-05-01 18:09:29 +00:00
|
|
|
.then(['I see $num $model model[s]? on the $component component'], function(
|
|
|
|
num,
|
|
|
|
model,
|
|
|
|
component
|
|
|
|
) {
|
|
|
|
const obj = find(component);
|
|
|
|
const len = obj[pluralize(model)].filter(function(item) {
|
|
|
|
return item.isVisible;
|
|
|
|
}).length;
|
|
|
|
|
|
|
|
assert.equal(len, num, `Expected ${num} ${pluralize(model)}, saw ${len}`);
|
|
|
|
})
|
2019-02-21 13:05:05 +00:00
|
|
|
// TODO: I${ dont } see
|
|
|
|
.then([`I see $num $model model[s]? with the $property "$value"`], function(
|
|
|
|
// negate,
|
|
|
|
num,
|
|
|
|
model,
|
|
|
|
property,
|
|
|
|
value
|
|
|
|
) {
|
|
|
|
const len = currentPage()[pluralize(model)].filter(function(item) {
|
2019-06-05 08:25:32 +00:00
|
|
|
if (item.isVisible) {
|
|
|
|
let prop = item[property];
|
|
|
|
// cope with pageObjects that can have a multiple: true
|
|
|
|
if (!Array.isArray(prop)) {
|
|
|
|
prop = [prop];
|
|
|
|
}
|
|
|
|
return prop.includes(value);
|
|
|
|
}
|
|
|
|
return false;
|
2019-02-21 13:05:05 +00:00
|
|
|
}).length;
|
|
|
|
assert.equal(
|
|
|
|
len,
|
|
|
|
num,
|
|
|
|
`Expected ${num} ${pluralize(model)} with ${property} set to "${value}", saw ${len}`
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|