2018-06-15 11:03:24 -04:00
|
|
|
|
import componentTest from "helpers/component-test";
|
|
|
|
|
import Topic from "discourse/models/topic";
|
2017-10-19 15:51:08 -04:00
|
|
|
|
|
|
|
|
|
const buildTopic = function() {
|
|
|
|
|
return Topic.create({
|
|
|
|
|
id: 1234,
|
2018-06-15 11:03:24 -04:00
|
|
|
|
title: "Qunit Test Topic"
|
2017-10-19 15:51:08 -04:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
|
moduleForComponent("topic-footer-mobile-dropdown", {
|
2017-12-22 07:08:12 -05:00
|
|
|
|
integration: true,
|
|
|
|
|
beforeEach: function() {
|
2018-06-15 11:03:24 -04:00
|
|
|
|
this.set("subject", selectKit());
|
2017-12-22 07:08:12 -05:00
|
|
|
|
}
|
|
|
|
|
});
|
2017-10-19 15:51:08 -04:00
|
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
|
componentTest("default", {
|
|
|
|
|
template: "{{topic-footer-mobile-dropdown topic=topic}}",
|
2017-10-19 15:51:08 -04:00
|
|
|
|
beforeEach() {
|
2018-06-15 11:03:24 -04:00
|
|
|
|
this.set("topic", buildTopic());
|
2017-10-19 15:51:08 -04:00
|
|
|
|
},
|
|
|
|
|
|
2018-07-24 14:12:09 -04:00
|
|
|
|
async test(assert) {
|
2018-07-29 16:51:32 -04:00
|
|
|
|
await this.get("subject").expand();
|
2017-10-19 15:51:08 -04:00
|
|
|
|
|
2018-07-24 14:12:09 -04:00
|
|
|
|
assert.equal(
|
|
|
|
|
this.get("subject")
|
|
|
|
|
.header()
|
|
|
|
|
.title(),
|
|
|
|
|
"Topic Controls"
|
|
|
|
|
);
|
|
|
|
|
assert.equal(
|
|
|
|
|
this.get("subject")
|
|
|
|
|
.header()
|
|
|
|
|
.value(),
|
|
|
|
|
null
|
|
|
|
|
);
|
|
|
|
|
assert.equal(
|
|
|
|
|
this.get("subject")
|
|
|
|
|
.rowByIndex(0)
|
|
|
|
|
.name(),
|
|
|
|
|
"Bookmark"
|
|
|
|
|
);
|
|
|
|
|
assert.equal(
|
|
|
|
|
this.get("subject")
|
|
|
|
|
.rowByIndex(1)
|
|
|
|
|
.name(),
|
|
|
|
|
"Share"
|
|
|
|
|
);
|
|
|
|
|
assert.notOk(
|
|
|
|
|
this.get("subject")
|
|
|
|
|
.selectedRow()
|
|
|
|
|
.exists(),
|
|
|
|
|
"it doesn’t preselect first row"
|
|
|
|
|
);
|
2017-10-20 16:40:56 -04:00
|
|
|
|
|
2018-07-29 16:51:32 -04:00
|
|
|
|
await this.get("subject").selectRowByValue("share");
|
2017-10-20 16:40:56 -04:00
|
|
|
|
|
2018-07-24 14:12:09 -04:00
|
|
|
|
assert.equal(this.get("value"), null, "it resets the value");
|
2017-10-19 15:51:08 -04:00
|
|
|
|
}
|
|
|
|
|
});
|