mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
dc3473fe06
1. `test()` and `render()` instead of `componentTest()` 2. Angle brackets 3. `strictEqual()`/`true()`/`false()` assertions This removes all remaining uses of `componentTest` from core
60 lines
1.8 KiB
JavaScript
60 lines
1.8 KiB
JavaScript
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { query } from "discourse/tests/helpers/qunit-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module, test } from "qunit";
|
|
import { render } from "@ember/test-helpers";
|
|
|
|
function displayName() {
|
|
return query(".chat-user-display-name").innerText.trim();
|
|
}
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-user-display-name | prioritize username in UX",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("username and no name", async function (assert) {
|
|
this.siteSettings.prioritize_username_in_ux = true;
|
|
this.set("user", { username: "bob", name: null });
|
|
|
|
await render(hbs`<ChatUserDisplayName @user={{this.user}} />`);
|
|
|
|
assert.strictEqual(displayName(), "bob");
|
|
});
|
|
|
|
test("username and name", async function (assert) {
|
|
this.siteSettings.prioritize_username_in_ux = true;
|
|
this.set("user", { username: "bob", name: "Bobcat" });
|
|
|
|
await render(hbs`<ChatUserDisplayName @user={{this.user}} />`);
|
|
|
|
assert.strictEqual(displayName(), "bob — Bobcat");
|
|
});
|
|
}
|
|
);
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-user-display-name | prioritize name in UX",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("no name", async function (assert) {
|
|
this.siteSettings.prioritize_username_in_ux = false;
|
|
this.set("user", { username: "bob", name: null });
|
|
|
|
await render(hbs`<ChatUserDisplayName @user={{this.user}} />`);
|
|
|
|
assert.strictEqual(displayName(), "bob");
|
|
});
|
|
|
|
test("name and username", async function (assert) {
|
|
this.siteSettings.prioritize_username_in_ux = false;
|
|
this.set("user", { username: "bob", name: "Bobcat" });
|
|
|
|
await render(hbs`<ChatUserDisplayName @user={{this.user}} />`);
|
|
|
|
assert.strictEqual(displayName(), "Bobcat — bob");
|
|
});
|
|
}
|
|
);
|