mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-18 03:29:14 +00:00
* 🚑 Added ready selector for multi-device * SendMessage fix * File management system and some fixes * cleanup * cleanup again * eslint * critical fix for reloading the same session * Checking for valid folder name (regex) * ESLint hotfix (regex escapes) * Typings cleanup * cleanup listener * Multi-device Branch merge (#888) * Duplicate * qr fix and allow non-beta users to connect * urgent: selector fix * urgent: qr timeout fix * fix * Updated type so no TS error when sending list/buttons * Update index.d.ts * fix QueryExist for Multidevice (#928) * creates isRegisteredUserBeta * fix QueryExist * fix Error: GROUP_JID: invalid jid type: Not an instance of WID issue (#926) * fix Error: GROUP_JID: invalid jid type: Not an instance of WID issue * clean code * Cleanup * Fix for update chrome error * ESLint fix * :red_light: fix for RMDIR * Update README.md * Update README.md * fix: getProfilePicUrl fix by victormga (#941) * fix: MD presence available/unavailable (#942) * delete session when appropriate & fix for SW * ignore QR timeout errors * Presence and ChatState updates working for MD+Non-MD * shell uses new session storage * lint fix * support session.json-based auth for non-md * md fix * md fix * fix shell clientId * remove exclusive mocha test * make linkPreview default to false * remove ignored errors on getQuotedMessage * fix: dont modify existing this.options.puppeteer object * tests work with new dir auth * remove exclusive test * fixes and tests for group creation and participant functions * remove unused function * wip fix group settings functions * isRegisteredUser && getNumberId hotFix (#955) * isRegisteredUser && getNumberId hotFix A fix for client.isRegisteredUser and client.getNumberId. Use for reference or if you are stuck with MD and NEEDS this function. Problably Whatsapp will break this in a couple weeks * fix for non-md Co-authored-by: Rajeh Taher <rajeh@reforward.dev> * Fix WA 2.2146.9 MD + victormga branch (#991) * qrcode now uses observers instead of timeout * automatic auth/qrcode detection * Fix WA 2.2146.9 MD Got from github:victormga/whatsapp-web.js#multidevice maybe it's behind pedro branch Co-authored-by: victormga <victor_mga@hotmail.com> * fix * fix* * getnumberid to multidevice (#1027) * getNumberId to main isRegisteredUser && getNumberId hotFix #955 To main * Update Client.js Co-authored-by: tuyuribr <45042245+tuyuribr@users.noreply.github.com> * Update Client.js * Message.raw() (#1005) * Message.raw() * i just noticed * Update index.d.ts * Update index.d.ts * Update Message.js * Get rid of sharp now!!!!!!!! (#1045) * commit 1 * finally, gotten rid of sharp * pckg.json * service worker fix & disableMessage option * typings * Update example.js * clear session system * Update Client.js * Update Client.js * Fix accepting group private invite (#1094) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * [MD] Add getCommonGroups with specific user. (#1097) * Add getCommonGroups with specific user. * Fix * Fix * Fix Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * Fix getCommonGroups. (#1122) * Fix of Unexpected identifier async destroy() (#1123) * Fix of Unexpected identifier async destroy() * Fix made in #1107 * Temporary fix for "Sticker" module * some really quick changes * Update Injected.js * Update Injected.js * Update index.d.ts * fix: getNumberId Solved (#1142) * getNumberId Solved * isRegisteredUser Solved * formmated * Apply suggestions from code review * Update src/util/Injected.js Co-authored-by: Rajeh Taher <rajeh@reforward.dev> * Fix: "Chrome user data dir was not found ..." fixes the error caused by puppeteer. * Update Client.js (#1154) * fix: getNumberId and isRegisteredUser (#1159) * fix: getNumberId and isRegisteredUser * Apply suggestions from code review Co-authored-by: Rajeh Taher <rajeh@reforward.dev> * Update client.js * Update Injected.js * Update Client.js * Update index.d.ts * Update Client.js * Update Client.js * fix lint indentation * fix auth_failure event for non-md, tests * fix setting group subject * fix finding Label module * set remember-me after clearing localStorage * fix: send messages to groups correctly on MD, use new ID format * fix setting / getting contact status * fix msg.getInfo, add message tests * fix group settings functions * fix set group description, handle errors in setSubject * fix group invite functions * fix leaving group * bring back phone info for non-md users * remove unused option, update typings * add back jsdoc for qr event * fix setting sticker metadata, clean up sticker functions * rawData is a get only property * fix and simplify getNumberId/isRegisteredUser * fix getInviteInfo * setDisplayName returns bool, not yet implemented for md * fix: stream module (#1241) * linkPreview has no effect on MD, return default to true * fix: del linkPreview option on md * cleanup, types and docs updates * update readmes / test notes * remove DS_Store * DS_Store in gitignore * test stability (timeouts/sleeps) Co-authored-by: Rajeh Taher <rajeh@reforward.tk> Co-authored-by: Gustavo B <52040719+Gugabit@users.noreply.github.com> Co-authored-by: Maikel Ortega Hernández <maikeloh@gmail.com> Co-authored-by: victormga <victor_mga@hotmail.com> Co-authored-by: Pedro Lopez <pedroslopez@me.com> Co-authored-by: tuyuribr <45042245+tuyuribr@users.noreply.github.com> Co-authored-by: gon <68490103+nekiak@users.noreply.github.com> Co-authored-by: Alon Schwartzblat <63599777+Schwartzblat@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Šebestíček <44745014+SebestikCZ@users.noreply.github.com> Co-authored-by: Emmanuel Anaya Luna <38712443+KeruMx@users.noreply.github.com> Co-authored-by: L337C0D3R <51872799+L337C0D3R@users.noreply.github.com> Co-authored-by: Reni Delonzek <renidelonzek@gmail.com>
193 lines
6.2 KiB
JavaScript
193 lines
6.2 KiB
JavaScript
const { expect } = require('chai');
|
|
|
|
const helper = require('../helper');
|
|
const Message = require('../../src/structures/Message');
|
|
const { MessageTypes } = require('../../src/util/Constants');
|
|
const { Contact } = require('../../src/structures');
|
|
|
|
const remoteId = helper.remoteId;
|
|
|
|
describe('Chat', function () {
|
|
let client;
|
|
let chat;
|
|
|
|
before(async function() {
|
|
this.timeout(35000);
|
|
client = helper.createClient({ authenticated: true });
|
|
await client.initialize();
|
|
chat = await client.getChatById(remoteId);
|
|
});
|
|
|
|
after(async function () {
|
|
await client.destroy();
|
|
});
|
|
|
|
it('can send a message to a chat', async function () {
|
|
const msg = await chat.sendMessage('hello world');
|
|
expect(msg).to.be.instanceOf(Message);
|
|
expect(msg.type).to.equal(MessageTypes.TEXT);
|
|
expect(msg.fromMe).to.equal(true);
|
|
expect(msg.body).to.equal('hello world');
|
|
expect(msg.to).to.equal(remoteId);
|
|
});
|
|
|
|
it('can fetch messages sent in a chat', async function () {
|
|
await helper.sleep(1000);
|
|
const msg = await chat.sendMessage('another message');
|
|
await helper.sleep(500);
|
|
|
|
const messages = await chat.fetchMessages();
|
|
expect(messages.length).to.be.greaterThanOrEqual(2);
|
|
|
|
const fetchedMsg = messages[messages.length-1];
|
|
expect(fetchedMsg).to.be.instanceOf(Message);
|
|
expect(fetchedMsg.type).to.equal(MessageTypes.TEXT);
|
|
expect(fetchedMsg.id._serialized).to.equal(msg.id._serialized);
|
|
expect(fetchedMsg.body).to.equal(msg.body);
|
|
});
|
|
|
|
it('can use a limit when fetching messages sent in a chat', async function () {
|
|
await helper.sleep(1000);
|
|
const msg = await chat.sendMessage('yet another message');
|
|
await helper.sleep(500);
|
|
|
|
const messages = await chat.fetchMessages({limit: 1});
|
|
expect(messages).to.have.lengthOf(1);
|
|
|
|
const fetchedMsg = messages[0];
|
|
expect(fetchedMsg).to.be.instanceOf(Message);
|
|
expect(fetchedMsg.type).to.equal(MessageTypes.TEXT);
|
|
expect(fetchedMsg.id._serialized).to.equal(msg.id._serialized);
|
|
expect(fetchedMsg.body).to.equal(msg.body);
|
|
});
|
|
|
|
it('can get the related contact', async function () {
|
|
const contact = await chat.getContact();
|
|
expect(contact).to.be.instanceOf(Contact);
|
|
expect(contact.id._serialized).to.equal(chat.id._serialized);
|
|
});
|
|
|
|
describe('Seen', function () {
|
|
it('can mark a chat as unread', async function () {
|
|
await chat.markUnread();
|
|
await helper.sleep(500);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.unreadCount).to.equal(-1);
|
|
});
|
|
|
|
it('can mark a chat as seen', async function () {
|
|
const res = await chat.sendSeen();
|
|
expect(res).to.equal(true);
|
|
|
|
await helper.sleep(1000);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.unreadCount).to.equal(0);
|
|
});
|
|
});
|
|
|
|
describe('Archiving', function (){
|
|
it('can archive a chat', async function () {
|
|
const res = await chat.archive();
|
|
expect(res).to.equal(true);
|
|
|
|
await helper.sleep(1000);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.archived).to.equal(true);
|
|
});
|
|
|
|
it('can unarchive a chat', async function () {
|
|
const res = await chat.unarchive();
|
|
expect(res).to.equal(false);
|
|
|
|
await helper.sleep(1000);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.archived).to.equal(false);
|
|
});
|
|
});
|
|
|
|
describe('Pinning', function () {
|
|
it('can pin a chat', async function () {
|
|
const res = await chat.pin();
|
|
expect(res).to.equal(true);
|
|
|
|
await helper.sleep(1000);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.pinned).to.equal(true);
|
|
});
|
|
|
|
it('can unpin a chat', async function () {
|
|
const res = await chat.unpin();
|
|
expect(res).to.equal(false);
|
|
await helper.sleep(1000);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.pinned).to.equal(false);
|
|
});
|
|
});
|
|
|
|
describe('Muting', function () {
|
|
it('can mute a chat forever', async function() {
|
|
await chat.mute();
|
|
|
|
await helper.sleep(1000);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.isMuted).to.equal(true);
|
|
expect(chat.muteExpiration).to.equal(-1);
|
|
});
|
|
|
|
it('can mute a chat until a specific date', async function() {
|
|
const unmuteDate = new Date(new Date().getTime() + (1000*60*60));
|
|
await chat.mute(unmuteDate);
|
|
|
|
await helper.sleep(1000);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.isMuted).to.equal(true);
|
|
expect(chat.muteExpiration).to.equal(
|
|
Math.round(unmuteDate.getTime() / 1000)
|
|
);
|
|
});
|
|
|
|
it('can unmute a chat', async function () {
|
|
await chat.unmute();
|
|
await helper.sleep(500);
|
|
|
|
// refresh chat
|
|
chat = await client.getChatById(remoteId);
|
|
expect(chat.isMuted).to.equal(false);
|
|
expect(chat.muteExpiration).to.equal(0);
|
|
});
|
|
});
|
|
|
|
// eslint-disable-next-line mocha/no-skipped-tests
|
|
describe.skip('Destructive operations', function () {
|
|
it('can clear all messages from chat', async function () {
|
|
const res = await chat.clearMessages();
|
|
expect(res).to.equal(true);
|
|
|
|
await helper.sleep(3000);
|
|
|
|
const msgs = await chat.fetchMessages();
|
|
expect(msgs).to.have.lengthOf(0);
|
|
});
|
|
|
|
it('can delete a chat', async function () {
|
|
const res = await chat.delete();
|
|
expect(res).to.equal(true);
|
|
});
|
|
});
|
|
}); |