discourse/test/javascripts/models/site-test.js.es6

70 lines
1.9 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import createStore from "helpers/create-store";
2017-06-14 13:57:58 -04:00
QUnit.module("model:site");
2018-06-15 11:03:24 -04:00
QUnit.test("create", assert => {
assert.ok(Discourse.Site.create(), "it can create with no parameters");
2013-10-29 13:01:42 -04:00
});
2018-06-15 11:03:24 -04:00
QUnit.test("instance", assert => {
const site = Discourse.Site.current();
2017-06-14 13:57:58 -04:00
assert.present(site, "We have a current site singleton");
2018-06-15 11:03:24 -04:00
assert.present(
site.get("categories"),
"The instance has a list of categories"
);
assert.present(
site.get("flagTypes"),
"The instance has a list of flag types"
);
assert.present(
site.get("trustLevels"),
"The instance has a list of trust levels"
);
2013-10-23 13:29:20 -04:00
});
2018-06-15 11:03:24 -04:00
QUnit.test("create categories", assert => {
const store = createStore();
2018-06-15 11:03:24 -04:00
const site = store.createRecord("site", {
categories: [
{ id: 1234, name: "Test" },
{ id: 3456, name: "Test Subcategory", parent_category_id: 1234 },
{ id: 3458, name: "Invalid Subcategory", parent_category_id: 6666 }
]
2013-10-23 13:29:20 -04:00
});
2018-06-15 11:03:24 -04:00
const categories = site.get("categories");
site.get("sortedCategories");
2013-10-23 13:29:20 -04:00
2017-06-14 13:57:58 -04:00
assert.present(categories, "The categories are present");
assert.equal(categories.length, 3, "it loaded all three categories");
2013-10-23 13:29:20 -04:00
2018-06-15 11:03:24 -04:00
const parent = categories.findBy("id", 1234);
2017-06-14 13:57:58 -04:00
assert.present(parent, "it loaded the parent category");
2018-06-15 11:03:24 -04:00
assert.blank(parent.get("parentCategory"), "it has no parent category");
2013-10-23 13:29:20 -04:00
2018-06-15 11:03:24 -04:00
const subcategory = categories.findBy("id", 3456);
2017-06-14 13:57:58 -04:00
assert.present(subcategory, "it loaded the subcategory");
2018-06-15 11:03:24 -04:00
assert.equal(
subcategory.get("parentCategory"),
parent,
"it has associated the child with the parent"
);
2013-10-23 13:29:20 -04:00
// remove invalid category and child
categories.removeObject(categories[2]);
categories.removeObject(categories[1]);
2018-06-15 11:03:24 -04:00
assert.equal(
categories.length,
site.get("categoriesByCount").length,
"categories by count should change on removal"
);
assert.equal(
categories.length,
site.get("sortedCategories").length,
"sorted categories should change on removal"
);
});