mirror of
https://github.com/discourse/discourse.git
synced 2025-03-26 14:50:09 +08:00

This structure is closer to how ember-cli expects tests to be placed. It is not their final position, just the first step towards it.
96 lines
2.1 KiB
JavaScript
96 lines
2.1 KiB
JavaScript
import I18n from "I18n";
|
|
import componentTest from "helpers/component-test";
|
|
import Theme from "admin/models/theme";
|
|
|
|
moduleForComponent("themes-list-item", { integration: true });
|
|
|
|
componentTest("default theme", {
|
|
template: "{{themes-list-item theme=theme}}",
|
|
beforeEach() {
|
|
this.set("theme", Theme.create({ name: "Test", default: true }));
|
|
},
|
|
|
|
test(assert) {
|
|
assert.expect(1);
|
|
assert.equal(find(".d-icon-check").length, 1, "shows default theme icon");
|
|
},
|
|
});
|
|
|
|
componentTest("pending updates", {
|
|
template: "{{themes-list-item theme=theme}}",
|
|
beforeEach() {
|
|
this.set(
|
|
"theme",
|
|
Theme.create({ name: "Test", remote_theme: { commits_behind: 6 } })
|
|
);
|
|
},
|
|
|
|
test(assert) {
|
|
assert.expect(1);
|
|
assert.equal(find(".d-icon-sync").length, 1, "shows pending update icon");
|
|
},
|
|
});
|
|
|
|
componentTest("broken theme", {
|
|
template: "{{themes-list-item theme=theme}}",
|
|
beforeEach() {
|
|
this.set(
|
|
"theme",
|
|
Theme.create({
|
|
name: "Test",
|
|
theme_fields: [{ name: "scss", type_id: 1, error: "something" }],
|
|
})
|
|
);
|
|
},
|
|
|
|
test(assert) {
|
|
assert.expect(1);
|
|
assert.equal(
|
|
find(".d-icon-exclamation-circle").length,
|
|
1,
|
|
"shows broken theme icon"
|
|
);
|
|
},
|
|
});
|
|
|
|
componentTest("with children", {
|
|
template: "{{themes-list-item theme=theme}}",
|
|
|
|
beforeEach() {
|
|
this.childrenList = [1, 2, 3, 4, 5].map((num) =>
|
|
Theme.create({ name: `Child ${num}`, component: true })
|
|
);
|
|
|
|
this.set(
|
|
"theme",
|
|
Theme.create({
|
|
name: "Test",
|
|
childThemes: this.childrenList,
|
|
default: true,
|
|
})
|
|
);
|
|
},
|
|
|
|
test(assert) {
|
|
assert.expect(2);
|
|
assert.deepEqual(
|
|
find(".components")
|
|
.text()
|
|
.trim()
|
|
.split(",")
|
|
.map((n) => n.trim())
|
|
.join(","),
|
|
this.childrenList
|
|
.splice(0, 4)
|
|
.map((theme) => theme.get("name"))
|
|
.join(","),
|
|
"lists the first 4 children"
|
|
);
|
|
assert.deepEqual(
|
|
find(".others-count").text().trim(),
|
|
I18n.t("admin.customize.theme.and_x_more", { count: 1 }),
|
|
"shows count of remaining children"
|
|
);
|
|
},
|
|
});
|