mirror of
https://github.com/discourse/discourse.git
synced 2026-08-14 13:58:53 +08:00
Currently, most of the JS test modules follow this
convention:
```
module("Integration | Component | topic-dismiss-buttons"
```
Which is a legacy from when ember components etc were
rendered in templates like this:
```
{{d-button title="foo"}}
```
Instead, this commit updates all of them to follow this
PascalCase convention:
```
module("Integration | Component | TopicDismissButtons", function (hooks) {
```
No linting is added to enforce this, we suspect that it's
mostly a result of cargo culting, and people will add new
tests following PascalCase convention.
Also adds an initial AI skill for writing JS tests.
81 lines
2.4 KiB
Text
Vendored
81 lines
2.4 KiB
Text
Vendored
import { getOwner } from "@ember/owner";
|
|
import { render } from "@ember/test-helpers";
|
|
import { module, test } from "qunit";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { i18n } from "discourse-i18n";
|
|
import ChatChannelStatus from "discourse/plugins/chat/discourse/components/chat-channel-status";
|
|
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
import {
|
|
CHANNEL_STATUSES,
|
|
channelStatusIcon,
|
|
} from "discourse/plugins/chat/discourse/models/chat-channel";
|
|
|
|
module("Component | ChatChannelStatus", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("renders nothing when channel is opened", async function (assert) {
|
|
this.channel = new ChatFabricators(getOwner(this)).channel();
|
|
|
|
await render(
|
|
<template><ChatChannelStatus @channel={{this.channel}} /></template>
|
|
);
|
|
|
|
assert.dom(".chat-channel-status").doesNotExist();
|
|
});
|
|
|
|
test("defaults to long format", async function (assert) {
|
|
this.channel = new ChatFabricators(getOwner(this)).channel({
|
|
status: CHANNEL_STATUSES.closed,
|
|
});
|
|
|
|
await render(
|
|
<template><ChatChannelStatus @channel={{this.channel}} /></template>
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-channel-status")
|
|
.hasText(i18n("chat.channel_status.closed_header"));
|
|
});
|
|
|
|
test("accepts a format argument", async function (assert) {
|
|
this.channel = new ChatFabricators(getOwner(this)).channel({
|
|
status: CHANNEL_STATUSES.archived,
|
|
});
|
|
|
|
await render(
|
|
<template>
|
|
<ChatChannelStatus @channel={{this.channel}} @format="short" />
|
|
</template>
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-channel-status")
|
|
.hasText(i18n("chat.channel_status.archived"));
|
|
});
|
|
|
|
test("renders the correct icon", async function (assert) {
|
|
this.channel = new ChatFabricators(getOwner(this)).channel({
|
|
status: CHANNEL_STATUSES.archived,
|
|
});
|
|
|
|
await render(
|
|
<template><ChatChannelStatus @channel={{this.channel}} /></template>
|
|
);
|
|
|
|
assert.dom(`.d-icon-${channelStatusIcon(this.channel.status)}`).exists();
|
|
});
|
|
|
|
test("renders archive status", async function (assert) {
|
|
this.currentUser.admin = true;
|
|
this.channel = new ChatFabricators(getOwner(this)).channel({
|
|
status: CHANNEL_STATUSES.archived,
|
|
archive_failed: true,
|
|
});
|
|
|
|
await render(
|
|
<template><ChatChannelStatus @channel={{this.channel}} /></template>
|
|
);
|
|
|
|
assert.dom(".chat-channel-retry-archive").exists();
|
|
});
|
|
});
|