mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 19:45:21 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
105 lines
2.8 KiB
JavaScript
105 lines
2.8 KiB
JavaScript
import componentTest, {
|
|
setupRenderingTest,
|
|
} from "discourse/tests/helpers/component-test";
|
|
import { query } from "discourse/tests/helpers/qunit-helpers";
|
|
import { click } from "@ember/test-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import fabricators from "../helpers/fabricators";
|
|
import I18n from "I18n";
|
|
import pretender from "discourse/tests/helpers/create-pretender";
|
|
import { module } from "qunit";
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-channel-toggle-view | closed channel",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
componentTest("texts", {
|
|
template: hbs`{{chat-channel-toggle-view channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
this.set("channel", fabricators.chatChannel({ status: "closed" }));
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.equal(
|
|
query("#chat-channel-toggle").innerText.trim(),
|
|
I18n.t("chat.channel_open.instructions")
|
|
);
|
|
assert.equal(
|
|
query("#chat-channel-toggle-btn").innerText.trim(),
|
|
I18n.t("chat.channel_settings.open_channel")
|
|
);
|
|
},
|
|
});
|
|
|
|
componentTest("action", {
|
|
template: hbs`{{chat-channel-toggle-view channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
this.set("channel", fabricators.chatChannel({ status: "closed" }));
|
|
},
|
|
|
|
async test(assert) {
|
|
pretender.put(
|
|
`/chat/chat_channels/${this.channel.id}/change_status.json`,
|
|
() => {
|
|
return [200, { "Content-Type": "application/json" }, {}];
|
|
}
|
|
);
|
|
|
|
await click("#chat-channel-toggle-btn");
|
|
|
|
assert.equal(this.channel.isClosed, false);
|
|
},
|
|
});
|
|
}
|
|
);
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-channel-toggle-view | opened channel",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
componentTest("texts", {
|
|
template: hbs`{{chat-channel-toggle-view channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
this.set("channel", fabricators.chatChannel({ status: "open" }));
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.equal(
|
|
query("#chat-channel-toggle").innerText.trim(),
|
|
I18n.t("chat.channel_close.instructions")
|
|
);
|
|
assert.equal(
|
|
query("#chat-channel-toggle-btn").innerText.trim(),
|
|
I18n.t("chat.channel_settings.close_channel")
|
|
);
|
|
},
|
|
});
|
|
|
|
componentTest("action", {
|
|
template: hbs`{{chat-channel-toggle-view channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
this.set("channel", fabricators.chatChannel({ status: "open" }));
|
|
},
|
|
|
|
async test(assert) {
|
|
pretender.put(
|
|
`/chat/chat_channels/${this.channel.id}/change_status.json`,
|
|
() => {
|
|
return [200, { "Content-Type": "application/json" }, {}];
|
|
}
|
|
);
|
|
|
|
await click("#chat-channel-toggle-btn");
|
|
|
|
assert.equal(this.channel.isClosed, true);
|
|
},
|
|
});
|
|
}
|
|
);
|