mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-15 17:05:16 +08:00
Bumps the lint group with 4 updates in the / directory: [@discourse/lint-configs](https://github.com/discourse/lint-configs), [ember-template-lint](https://github.com/ember-template-lint/ember-template-lint), [eslint](https://github.com/eslint/eslint) and [stylelint](https://github.com/stylelint/stylelint). Updates `@discourse/lint-configs` from 2.22.0 to 2.28.0 - [Commits](https://github.com/discourse/lint-configs/commits) Updates `ember-template-lint` from 7.7.0 to 7.9.1 - [Release notes](https://github.com/ember-template-lint/ember-template-lint/releases) - [Changelog](https://github.com/ember-template-lint/ember-template-lint/blob/master/CHANGELOG.md) - [Commits](https://github.com/ember-template-lint/ember-template-lint/commits) Updates `eslint` from 9.27.0 to 9.32.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.27.0...v9.32.0) Updates `stylelint` from 16.19.1 to 16.22.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.19.1...16.22.0) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Discourse CI <ci@ci.invalid> Co-authored-by: Jarek Radosz <jarek@cvx.dev>
113 lines
3.6 KiB
JavaScript
113 lines
3.6 KiB
JavaScript
import { getOwner } from "@ember/owner";
|
|
import { module, test } from "qunit";
|
|
import sinon from "sinon";
|
|
import { withPluginApi } from "discourse/lib/plugin-api";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import chatAudioInitializer from "discourse/plugins/chat/discourse/initializers/chat-audio";
|
|
|
|
module("Discourse Chat | Unit | chat-audio", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
const chatAudioManager = getOwner(this).lookup(
|
|
"service:chat-audio-manager"
|
|
);
|
|
|
|
this.chat = getOwner(this).lookup("service:chat");
|
|
sinon.stub(this.chat, "userCanChat").value(true);
|
|
|
|
this.siteSettings = getOwner(this).lookup("service:site-settings");
|
|
this.siteSettings.chat_enabled = true;
|
|
|
|
this.currentUser.chat_sound = "ding";
|
|
this.currentUser.user_option.has_chat_enabled = true;
|
|
this.currentUser.user_option.chat_header_indicator_preference = "all_new";
|
|
|
|
withPluginApi(async (api) => {
|
|
this.stub = sinon.spy(api, "registerDesktopNotificationHandler");
|
|
chatAudioInitializer.initialize(getOwner(this));
|
|
|
|
// stub the service worker response
|
|
sinon
|
|
.stub(chatAudioInitializer, "canPlaySound")
|
|
.returns(Promise.resolve(true));
|
|
|
|
this.notificationHandler = this.stub.getCall(0).callback;
|
|
this.playStub = sinon.stub(chatAudioManager, "play");
|
|
|
|
this.handleNotification = (data = {}) => {
|
|
if (!data.notification_type) {
|
|
data.notification_type = 30;
|
|
}
|
|
this.notificationHandler(data, this.siteSettings, this.currentUser);
|
|
};
|
|
});
|
|
});
|
|
|
|
test("registers desktop notification handler", function (assert) {
|
|
assert.true(this.stub.calledOnce);
|
|
});
|
|
|
|
test("plays chat sound", async function (assert) {
|
|
await this.handleNotification();
|
|
|
|
assert.true(this.playStub.calledOnce);
|
|
});
|
|
|
|
test("skips chat sound for user in DND mode", async function (assert) {
|
|
this.currentUser.isInDoNotDisturb = () => true;
|
|
await this.handleNotification();
|
|
|
|
assert.true(this.playStub.notCalled);
|
|
});
|
|
|
|
test("skips chat sound for user with no chat sound set", async function (assert) {
|
|
this.currentUser.chat_sound = null;
|
|
await this.handleNotification();
|
|
|
|
assert.true(this.playStub.notCalled);
|
|
});
|
|
|
|
test("plays a chat sound for mentions", async function (assert) {
|
|
this.currentUser.user_option.chat_header_indicator_preference =
|
|
"only_mentions";
|
|
|
|
await this.handleNotification({ notification_type: 29 });
|
|
|
|
assert.true(this.playStub.calledOnce);
|
|
});
|
|
|
|
test("skips chat sound for non-mentions", async function (assert) {
|
|
this.currentUser.user_option.chat_header_indicator_preference =
|
|
"only_mentions";
|
|
|
|
await this.handleNotification();
|
|
|
|
assert.true(this.playStub.notCalled);
|
|
});
|
|
|
|
test("plays a chat sound for DMs", async function (assert) {
|
|
this.currentUser.user_option.chat_header_indicator_preference =
|
|
"dm_and_mentions";
|
|
|
|
await this.handleNotification({ is_direct_message_channel: true });
|
|
|
|
assert.true(this.playStub.calledOnce);
|
|
});
|
|
|
|
test("skips chat sound for non-DM messages", async function (assert) {
|
|
this.currentUser.user_option.chat_header_indicator_preference =
|
|
"dm_and_mentions";
|
|
|
|
await this.handleNotification({ is_direct_message_channel: false });
|
|
|
|
assert.true(this.playStub.notCalled);
|
|
});
|
|
|
|
test("skips chat sound when service worker returns false", async function (assert) {
|
|
chatAudioInitializer.canPlaySound.returns(Promise.resolve(false));
|
|
await this.handleNotification();
|
|
|
|
assert.true(this.playStub.notCalled);
|
|
});
|
|
});
|