about summary refs log tree commit diff stats
path: root/src/xmpp/message.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmpp/message.h')
0 files changed, 0 insertions, 0 deletions
span class='oid'>a21ab6d4 ^
e10ea1be ^
a21ab6d4 ^

e10ea1be ^
a21ab6d4 ^








52f66fde ^
a21ab6d4 ^

82ad0cd3 ^

a21ab6d4 ^
52f66fde ^
a21ab6d4 ^

037ca818 ^



52f66fde ^
037ca818 ^

18e0884f ^





c0037608 ^


52f66fde ^
c0037608 ^

a21ab6d4 ^


4eac5c0d ^
a21ab6d4 ^





82ad0cd3 ^
a21ab6d4 ^

82ad0cd3 ^






037ca818 ^







18e0884f ^






c0037608 ^






e10ea1be ^
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97







                   


                   
                  
                    
      

                           
                  








                                      
                                 

 

                                  
 
                                 

 



                                                             
                                 

 





                            


                           
                                 

 


                                       
                                  





                                                                           
                                                  

                                                   






                                                           







                                                                               






                                              






                                              
      
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>


#include "config.h"

#ifdef HAVE_LIBOTR
#include "otr/otr.h"
#endif
#include "config/account.h"

#ifdef HAVE_LIBOTR
static void
_mock_otr_keygen(ProfAccount *account)
{
    check_expected(account);
}

static char *
_mock_otr_libotr_version(void)
{
    return mock_ptr_type(char *);
}

static char *
_mock_otr_get_my_fingerprint(void)
{
    return mock_ptr_type(char *);
}

static char *
_mock_otr_get_their_fingerprint(const char * const recipient)
{
    check_expected(recipient);
    return mock_ptr_type(char *);
}

static gboolean
_mock_otr_key_loaded(void)
{
    return (gboolean)mock();
}

static char *
_mock_otr_start_query(void)
{
    return mock_ptr_type(char *);
}

void
otr_keygen_expect(ProfAccount *account)
{
    otr_keygen = _mock_otr_keygen;
    expect_memory(_mock_otr_keygen, account, account, sizeof(ProfAccount));
}

void
otr_libotr_version_returns(char *version)
{
    otr_libotr_version = _mock_otr_libotr_version;
    will_return(_mock_otr_libotr_version, version);
}

void
otr_get_my_fingerprint_returns(char *fingerprint)
{
    otr_get_my_fingerprint = _mock_otr_get_my_fingerprint;
    will_return(_mock_otr_get_my_fingerprint, fingerprint);
}

void
otr_get_their_fingerprint_expect_and_return(char *recipient, char *fingerprint)
{
    otr_get_their_fingerprint = _mock_otr_get_their_fingerprint;
    expect_string(_mock_otr_get_their_fingerprint, recipient, recipient);
    will_return(_mock_otr_get_their_fingerprint, fingerprint);
}

void
otr_key_loaded_returns(gboolean loaded)
{
    otr_key_loaded = _mock_otr_key_loaded;
    will_return(_mock_otr_key_loaded, loaded);
}

void
otr_start_query_returns(char *query)
{
    otr_start_query = _mock_otr_start_query;
    will_return(_mock_otr_start_query, query);
}
#endif