2018-06-15 23:03:24 +08:00
|
|
|
import createStore from "helpers/create-store";
|
2015-08-12 00:27:07 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.module("lib:category-link");
|
2015-01-21 00:36:28 +08:00
|
|
|
|
|
|
|
import { categoryBadgeHTML } from "discourse/helpers/category-link";
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("categoryBadge without a category", assert => {
|
|
|
|
assert.blank(categoryBadgeHTML(), "it returns no HTML");
|
2015-01-21 00:36:28 +08:00
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("Regular categoryBadge", assert => {
|
2015-09-04 04:55:55 +08:00
|
|
|
const store = createStore();
|
2018-06-15 23:03:24 +08:00
|
|
|
const category = store.createRecord("category", {
|
|
|
|
name: "hello",
|
|
|
|
id: 123,
|
|
|
|
description_text: "cool description",
|
|
|
|
color: "ff0",
|
|
|
|
text_color: "f00"
|
|
|
|
});
|
2019-04-10 17:21:22 +08:00
|
|
|
const tag = $.parseHTML(categoryBadgeHTML(category))[0];
|
2015-01-21 00:36:28 +08:00
|
|
|
|
2019-04-10 17:21:22 +08:00
|
|
|
assert.equal(tag.tagName, "A", "it creates a `a` wrapper tag");
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.equal(
|
2019-04-10 17:21:22 +08:00
|
|
|
tag.className.trim(),
|
2018-06-15 23:03:24 +08:00
|
|
|
"badge-wrapper",
|
|
|
|
"it has the correct class"
|
|
|
|
);
|
2015-01-21 00:36:28 +08:00
|
|
|
|
2015-09-04 04:55:55 +08:00
|
|
|
const label = tag.children[1];
|
2019-04-10 17:21:22 +08:00
|
|
|
assert.equal(label.title, "cool description", "it has the correct title");
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.equal(
|
2019-04-10 17:21:22 +08:00
|
|
|
label.children[0].innerText,
|
2018-06-15 23:03:24 +08:00
|
|
|
"hello",
|
|
|
|
"it has the category name"
|
|
|
|
);
|
2015-01-21 00:36:28 +08:00
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("undefined color", assert => {
|
2015-09-04 04:55:55 +08:00
|
|
|
const store = createStore();
|
2018-06-15 23:03:24 +08:00
|
|
|
const noColor = store.createRecord("category", { name: "hello", id: 123 });
|
2019-04-10 17:21:22 +08:00
|
|
|
const tag = $.parseHTML(categoryBadgeHTML(noColor))[0];
|
2015-01-21 00:36:28 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.blank(
|
2019-04-10 17:21:22 +08:00
|
|
|
tag.attributes["style"],
|
2018-06-15 23:03:24 +08:00
|
|
|
"it has no color style because there are no colors"
|
|
|
|
);
|
2015-01-21 00:36:28 +08:00
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("allowUncategorized", assert => {
|
2015-09-04 04:55:55 +08:00
|
|
|
const store = createStore();
|
2018-06-15 23:03:24 +08:00
|
|
|
const uncategorized = store.createRecord("category", {
|
|
|
|
name: "uncategorized",
|
|
|
|
id: 345
|
|
|
|
});
|
|
|
|
sandbox
|
|
|
|
.stub(Discourse.Site, "currentProp")
|
|
|
|
.withArgs("uncategorized_category_id")
|
|
|
|
.returns(345);
|
2015-01-21 00:36:28 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.blank(
|
|
|
|
categoryBadgeHTML(uncategorized),
|
|
|
|
"it doesn't return HTML for uncategorized by default"
|
|
|
|
);
|
|
|
|
assert.present(
|
|
|
|
categoryBadgeHTML(uncategorized, { allowUncategorized: true }),
|
|
|
|
"it returns HTML"
|
|
|
|
);
|
2017-12-15 12:58:20 +08:00
|
|
|
});
|
2018-01-30 09:42:19 +08:00
|
|
|
|
|
|
|
QUnit.test("category names are wrapped in dir-spans", assert => {
|
|
|
|
Discourse.SiteSettings.support_mixed_text_direction = true;
|
|
|
|
const store = createStore();
|
2018-06-15 23:03:24 +08:00
|
|
|
const rtlCategory = store.createRecord("category", {
|
|
|
|
name: "תכנות עם Ruby",
|
2018-01-30 09:42:19 +08:00
|
|
|
id: 123,
|
2018-06-15 23:03:24 +08:00
|
|
|
description_text: "cool description",
|
|
|
|
color: "ff0",
|
|
|
|
text_color: "f00"
|
2018-01-30 09:42:19 +08:00
|
|
|
});
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
const ltrCategory = store.createRecord("category", {
|
|
|
|
name: "Programming in Ruby",
|
2018-01-30 09:42:19 +08:00
|
|
|
id: 234
|
|
|
|
});
|
|
|
|
|
2019-04-10 17:21:22 +08:00
|
|
|
let tag = $.parseHTML(categoryBadgeHTML(rtlCategory))[0];
|
2018-01-30 09:42:19 +08:00
|
|
|
let dirSpan = tag.children[1].children[0];
|
2019-04-10 17:21:22 +08:00
|
|
|
assert.equal(dirSpan.dir, "rtl");
|
2018-01-30 09:42:19 +08:00
|
|
|
|
2019-04-10 17:21:22 +08:00
|
|
|
tag = $.parseHTML(categoryBadgeHTML(ltrCategory))[0];
|
2018-01-30 09:42:19 +08:00
|
|
|
dirSpan = tag.children[1].children[0];
|
2019-04-10 17:21:22 +08:00
|
|
|
assert.equal(dirSpan.dir, "ltr");
|
2018-01-30 09:42:19 +08:00
|
|
|
});
|