mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 17:26:20 +00:00
Roll the tree back to the pre-merge tip3b673150b, undoing the upstream sync merge72f4f186d(303 files) and the 13 post-merge commits layered on top of it. Purpose: restore the last pre-sync baseline so the reported OMEMO/OTR encryption regressions can be reproduced against a known-good state and the upstream sync ruled in or out as the cause. Nothing is dropped from history; the merge and every post-merge commit remain reachable and can be cherry-picked back selectively. Baseline:3b673150bchore(chatlog): disable background message file logging (stage 1) Undoes merge:72f4f186dmerge: sync upstream profanity-im/profanity
35 lines
902 B
C
35 lines
902 B
C
#include "prof_cmocka.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "xmpp/chat_session.h"
|
|
#include "command/cmd_funcs.h"
|
|
#include "xmpp/xmpp.h"
|
|
#include "xmpp/roster_list.h"
|
|
|
|
#include "ui/stub_ui.h"
|
|
|
|
#define CMD_DISCONNECT "/disconnect"
|
|
|
|
void
|
|
clears_chat_sessions(void** state)
|
|
{
|
|
chat_sessions_init();
|
|
roster_create();
|
|
chat_session_recipient_active("bob@server.org", "laptop", FALSE);
|
|
chat_session_recipient_active("mike@server.org", "work", FALSE);
|
|
|
|
will_return(connection_get_status, JABBER_CONNECTED);
|
|
will_return(connection_get_barejid, "myjid@myserver.com");
|
|
expect_any_cons_show();
|
|
|
|
gboolean result = cmd_disconnect(NULL, CMD_DISCONNECT, NULL);
|
|
|
|
assert_true(result);
|
|
|
|
ChatSession* session1 = chat_session_get("bob@server.org");
|
|
ChatSession* session2 = chat_session_get("mike@server.org");
|
|
assert_null(session1);
|
|
assert_null(session2);
|
|
}
|