53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
|
import {
|
||
|
attribute,
|
||
|
clickable,
|
||
|
collection,
|
||
|
create,
|
||
|
hasClass,
|
||
|
text,
|
||
|
visitable,
|
||
|
} from 'ember-cli-page-object';
|
||
|
|
||
|
import recommendationCard from 'nomad-ui/tests/pages/components/recommendation-card';
|
||
|
|
||
|
export default create({
|
||
|
visit: visitable('/optimize'),
|
||
|
|
||
|
breadcrumbs: collection('[data-test-breadcrumb]', {
|
||
|
id: attribute('data-test-breadcrumb'),
|
||
|
text: text(),
|
||
|
}),
|
||
|
|
||
|
breadcrumbFor(id) {
|
||
|
return this.breadcrumbs.toArray().find(crumb => crumb.id === id);
|
||
|
},
|
||
|
|
||
|
card: recommendationCard,
|
||
|
|
||
|
recommendationSummaries: collection('[data-test-recommendation-summary-row]', {
|
||
|
isActive: hasClass('is-active'),
|
||
|
isDisabled: hasClass('is-disabled'),
|
||
|
|
||
|
slug: text('[data-test-slug]'),
|
||
|
namespace: text('[data-test-namespace]'),
|
||
|
date: text('[data-test-date]'),
|
||
|
allocationCount: text('[data-test-allocation-count]'),
|
||
|
cpu: text('[data-test-cpu]'),
|
||
|
memory: text('[data-test-memory]'),
|
||
|
aggregateCpu: text('[data-test-aggregate-cpu]'),
|
||
|
aggregateMemory: text('[data-test-aggregate-memory]'),
|
||
|
}),
|
||
|
|
||
|
empty: {
|
||
|
scope: '[data-test-empty-recommendations]',
|
||
|
headline: text('[data-test-empty-recommendations-headline]'),
|
||
|
},
|
||
|
|
||
|
error: {
|
||
|
scope: '[data-test-recommendation-error]',
|
||
|
headline: text('[data-test-headline]'),
|
||
|
errors: text('[data-test-errors]'),
|
||
|
dismiss: clickable('[data-test-dismiss]'),
|
||
|
},
|
||
|
});
|