mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 21:36:11 +08:00
76 lines
2.0 KiB
JavaScript
76 lines
2.0 KiB
JavaScript
import {
|
|
acceptance,
|
|
exists,
|
|
loggedInUser,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
import { click, currentURL, visit } from "@ember/test-helpers";
|
|
import {
|
|
chatChannels,
|
|
generateChatView,
|
|
} from "discourse/plugins/chat/chat-fixtures";
|
|
import { test } from "qunit";
|
|
|
|
acceptance("Discourse Chat - Mobile test", function (needs) {
|
|
needs.user({ can_chat: true, has_chat_enabled: true });
|
|
|
|
needs.mobileView();
|
|
|
|
needs.pretender((server, helper) => {
|
|
server.get("/chat/chat_channels.json", () => helper.response(chatChannels));
|
|
server.get("/chat/:id/messages.json", () =>
|
|
helper.response(generateChatView(loggedInUser()))
|
|
);
|
|
server.get("/u/search/users", () => {
|
|
return helper.response([]);
|
|
});
|
|
|
|
server.get("/chat/api/chat_channels.json", () => {
|
|
const channels = [];
|
|
return helper.response(channels);
|
|
});
|
|
});
|
|
|
|
needs.settings({
|
|
chat_enabled: true,
|
|
});
|
|
|
|
test("Chat index route shows channels list", async function (assert) {
|
|
await visit("/latest");
|
|
await click(".header-dropdown-toggle.open-chat");
|
|
assert.equal(currentURL(), "/chat");
|
|
assert.ok(exists(".channels-list"));
|
|
await click('.chat-channel-row[data-chat-channel-id="7"]');
|
|
assert.notOk(exists(".open-drawer-btn"));
|
|
});
|
|
|
|
test("Chat new personal chat buttons", async function (assert) {
|
|
await visit("/chat");
|
|
await click(".open-draft-channel-page-btn.btn-floating");
|
|
|
|
assert.strictEqual(
|
|
currentURL(),
|
|
"/chat/draft-channel",
|
|
"Clicking the floating + button opens the new chat screen"
|
|
);
|
|
|
|
await click(".chat-draft-header__btn");
|
|
|
|
assert.strictEqual(
|
|
currentURL(),
|
|
"/chat",
|
|
"Clicking the left arrow button returns to the channels list"
|
|
);
|
|
});
|
|
|
|
test("Chat browse screen back button", async function (assert) {
|
|
await visit("/chat/browse");
|
|
await click(".chat-full-page-header__back-btn");
|
|
|
|
assert.strictEqual(
|
|
currentURL(),
|
|
"/chat",
|
|
"Clicking the back button returns to the channels list"
|
|
);
|
|
});
|
|
});
|