about summary refs log tree commit diff stats
path: root/tests/functionaltests/test_muc.h
Commit message (Collapse)AuthorAgeFilesLines
* Added functional tests for /console commandJames Booth2015-12-301-1/+3
|
* Added functional test for muc console messageJames Booth2015-12-201-0/+1
|
* Added more muc functional testsJames Booth2015-12-201-2/+5
|
* Removed whitespaceJames Booth2015-12-201-5/+0
|
* Added muc functional testsJames Booth2015-12-201-0/+12
5f9c0a0abdc82426ab2eaaeb9416da28'>ab7bd6fe ^
81190251 ^

ab7bd6fe ^

ab7bd6fe ^
055a5f71 ^
51bd4ed3 ^

ab7bd6fe ^
3bb1f124 ^
d1c71e98 ^
ab7bd6fe ^

81190251 ^
ab7bd6fe ^


f180925c ^



2215a379 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36






                   
                              
                              
                      
                             


                       

                                    

                                       
                         
                    

                                                                     
 
                                                         
                                                              

                           
                                                                 


                        



                                                                
 
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <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_fulljid, "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);
}