2018-06-15 23:03:24 +08:00
|
|
|
import componentTest from "helpers/component-test";
|
|
|
|
moduleForComponent("value-list", { integration: true });
|
2015-06-10 00:19:41 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
componentTest("adding a value", {
|
|
|
|
template: "{{value-list values=values}}",
|
|
|
|
|
2018-07-25 02:12:09 +08:00
|
|
|
async test(assert) {
|
2018-08-04 04:41:37 +08:00
|
|
|
this.set("values", "vinkas\nosama");
|
|
|
|
|
|
|
|
await selectKit().expand();
|
|
|
|
await selectKit().fillInFilter("eviltrout");
|
|
|
|
await selectKit().keyboard("enter");
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.ok(
|
2018-08-04 04:41:37 +08:00
|
|
|
find(".values .value").length === 3,
|
|
|
|
"it adds the value to the list of values"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.deepEqual(
|
|
|
|
this.get("values"),
|
|
|
|
"vinkas\nosama\neviltrout",
|
|
|
|
"it adds the value to the list of values"
|
2018-06-15 23:03:24 +08:00
|
|
|
);
|
2018-08-04 04:41:37 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
componentTest("removing a value", {
|
|
|
|
template: "{{value-list values=values}}",
|
|
|
|
|
|
|
|
async test(assert) {
|
|
|
|
this.set("values", "vinkas\nosama");
|
|
|
|
|
|
|
|
await click(".values .value[data-index='0'] .remove-value-btn");
|
2015-06-10 00:19:41 +08:00
|
|
|
|
2018-07-25 02:12:09 +08:00
|
|
|
assert.ok(
|
2018-08-04 04:41:37 +08:00
|
|
|
find(".values .value").length === 1,
|
|
|
|
"it removes the value from the list of values"
|
2018-07-25 02:12:09 +08:00
|
|
|
);
|
2015-06-10 00:19:41 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
assert.equal(this.get("values"), "osama", "it removes the expected value");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
componentTest("selecting a value", {
|
|
|
|
template: "{{value-list values=values choices=choices}}",
|
2015-06-10 00:19:41 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
async test(assert) {
|
|
|
|
this.set("values", "vinkas\nosama");
|
|
|
|
this.set("choices", ["maja", "michael"]);
|
|
|
|
|
|
|
|
await selectKit().expand();
|
|
|
|
await selectKit().selectRowByValue("maja");
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
find(".values .value").length === 3,
|
|
|
|
"it adds the value to the list of values"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.deepEqual(
|
|
|
|
this.get("values"),
|
|
|
|
"vinkas\nosama\nmaja",
|
|
|
|
"it adds the value to the list of values"
|
|
|
|
);
|
2015-07-15 01:56:59 +08:00
|
|
|
}
|
2015-06-10 00:19:41 +08:00
|
|
|
});
|
2015-07-29 00:29:40 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
componentTest("array support", {
|
|
|
|
template: "{{value-list values=values inputType='array'}}",
|
2015-07-29 00:29:40 +08:00
|
|
|
|
2018-07-25 02:12:09 +08:00
|
|
|
async test(assert) {
|
2018-08-04 04:41:37 +08:00
|
|
|
this.set("values", ["vinkas", "osama"]);
|
|
|
|
|
|
|
|
await selectKit().expand();
|
|
|
|
await selectKit().fillInFilter("eviltrout");
|
|
|
|
await selectKit().keyboard("enter");
|
2015-07-29 00:29:40 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
assert.ok(
|
|
|
|
find(".values .value").length === 3,
|
|
|
|
"it adds the value to the list of values"
|
|
|
|
);
|
2015-07-29 00:29:40 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
assert.deepEqual(
|
|
|
|
this.get("values"),
|
|
|
|
["vinkas", "osama", "eviltrout"],
|
|
|
|
"it adds the value to the list of values"
|
|
|
|
);
|
2015-07-29 00:29:40 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
componentTest("delimiter support", {
|
|
|
|
template: "{{value-list values=values inputDelimiter='|'}}",
|
2015-07-29 00:29:40 +08:00
|
|
|
|
2018-07-25 02:12:09 +08:00
|
|
|
async test(assert) {
|
2018-08-04 04:41:37 +08:00
|
|
|
this.set("values", "vinkas|osama");
|
2015-07-29 00:29:40 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
await selectKit().expand();
|
|
|
|
await selectKit().fillInFilter("eviltrout");
|
|
|
|
await selectKit().keyboard("enter");
|
2015-07-29 00:29:40 +08:00
|
|
|
|
2018-08-04 04:41:37 +08:00
|
|
|
assert.ok(
|
|
|
|
find(".values .value").length === 3,
|
|
|
|
"it adds the value to the list of values"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.deepEqual(
|
|
|
|
this.get("values"),
|
|
|
|
"vinkas|osama|eviltrout",
|
|
|
|
"it adds the value to the list of values"
|
|
|
|
);
|
2015-07-29 00:29:40 +08:00
|
|
|
}
|
|
|
|
});
|