about summary refs log tree commit diff stats
path: root/src/tools/parser.h
Commit message (Expand)AuthorAgeFilesLines
* Applied coding style to src/tools/James Booth2015-10-251-5/+5
* Updated copyrightJames Booth2015-02-101-1/+1
* Simplified autocompleters and command historyJames Booth2015-01-161-2/+2
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* Simplified parse_options to take first option as argumentJames Booth2014-04-151-1/+1
* Simplified parse_options to take gchar**James Booth2014-04-151-1/+1
* Added parse_optionsJames Booth2014-04-141-1/+3
* Command argument parsers set result argumentJames Booth2014-04-091-2/+2
* Updated copyrightJames Booth2014-03-091-1/+1
* Moved functions to parser.c, moved parser to toolsJames Booth2013-07-111-0/+33
danisanti/profani-tty/blame/tests/unittests/test_cmd_disconnect.c?id=59d5dd73a77b2a85e199ad43e9ba4591b2bfbe08'>^
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);
}