From af552e68f7ca2ad08a6f510a966f83272b925c78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marker=20dao=20=C2=AE?= Date: Wed, 24 Jul 2024 20:55:49 +0400 Subject: [PATCH] feat(chat): Add tests --- .../chat.markup.tests.js | 1 + .../tests/DevExpress.ui.widgets/chat.tests.js | 62 +++++++++++++++++++ 2 files changed, 63 insertions(+) diff --git a/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.markup.tests.js b/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.markup.tests.js index 926119642c44..b4f343c146d4 100644 --- a/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.markup.tests.js +++ b/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.markup.tests.js @@ -92,6 +92,7 @@ const moduleConfig = { ]; const options = { + user: userSecond, items: messages, }; diff --git a/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.tests.js b/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.tests.js index ae73be3fb6e5..cd0a49c39e9f 100644 --- a/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.tests.js +++ b/packages/devextreme/testing/tests/DevExpress.ui.widgets/chat.tests.js @@ -83,6 +83,51 @@ QUnit.module('Chat initialization', moduleConfig, () => { QUnit.test('Chat should be initialized with correct type', function(assert) { assert.ok(this.instance instanceof Chat); }); + + QUnit.test('currentUserId in message list should be equal chat user id', function(assert) { + const messageList = this.instance._messageList; + + const chatUserId = this.instance.option('user.id'); + const messageListUserId = messageList.option('currentUserId'); + + assert.strictEqual(chatUserId, messageListUserId); + }); + + QUnit.test('currentUserId in message list should be changed when user has been changed in runtime', function(assert) { + const newId = 'new id'; + + this.instance.option({ user: { id: newId } }); + + const { currentUserId } = this.instance._messageList.option(); + + assert.strictEqual(currentUserId, newId); + }); + + QUnit.test('items in message list should be changed when items has been changed in runtime', function(assert) { + const newItems = []; + + this.instance.option({ items: newItems }); + + const { items } = this.instance._messageList.option(); + + assert.strictEqual(items, newItems); + }); + + QUnit.test('Message list should run invalidate after changing user in runtime', function(assert) { + const invalidateStub = sinon.stub(this.instance._messageList, '_invalidate'); + + this.instance.option({ user: {} }); + + assert.strictEqual(invalidateStub.callCount, 1); + }); + + QUnit.test('Message list should run invalidate after changing items in runtime', function(assert) { + const invalidateStub = sinon.stub(this.instance._messageList, '_invalidate'); + + this.instance.option({ items: [] }); + + assert.strictEqual(invalidateStub.callCount, 1); + }); }); QUnit.module('Header', moduleConfig, () => { @@ -141,3 +186,20 @@ QUnit.module('Message group', moduleConfig, () => { assert.strictEqual($bubble.text(), 'userFirst'); }); }); + +QUnit.module('Default options', () => { + QUnit.test('There is an user id by default if user has not been set', function(assert) { + const instance = $('#chat').dxChat().dxChat('instance'); + + const { user } = instance.option(); + + // eslint-disable-next-line no-prototype-builtins + assert.strictEqual(user.hasOwnProperty('id'), true); + }); + + QUnit.test('User id should be generate as a string if user has not been set', function(assert) { + const instance = $('#chat').dxChat().dxChat('instance'); + + assert.strictEqual(typeof instance.option('user.id') === 'string', true); + }); +});