about summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-06-29 21:21:16 +0200
committerMichael Vetter <jubalh@iodoru.org>2020-06-29 21:21:16 +0200
commit60f40988462c4d0fe4645839b866c576a2536aef (patch)
tree9b06efaf386227756fba193f296001bf13bd81cb /tests
parent31ec640d051b58b13868340741957e4066274b21 (diff)
downloadprofani-tty-60f40988462c4d0fe4645839b866c576a2536aef.tar.gz
Add OX test stubs
Diffstat (limited to 'tests')
-rw-r--r--tests/unittests/pgp/stub_gpg.c11
-rw-r--r--tests/unittests/xmpp/stub_xmpp.c5
2 files changed, 16 insertions, 0 deletions
diff --git a/tests/unittests/pgp/stub_gpg.c b/tests/unittests/pgp/stub_gpg.c
index f5c63930..efa6dcd3 100644
--- a/tests/unittests/pgp/stub_gpg.c
+++ b/tests/unittests/pgp/stub_gpg.c
@@ -67,3 +67,14 @@ p_gpg_format_fp_str(char *fp)
     return NULL;
 }
 
+gboolean ox_is_private_key_available(const char *const barejid) {
+    return FALSE;
+}
+
+gboolean ox_is_public_key_available(const char *const barejid) {
+    return FALSE;
+}
+
+GHashTable* ox_gpg_public_keys(void) {
+    return NULL;
+}
diff --git a/tests/unittests/xmpp/stub_xmpp.c b/tests/unittests/xmpp/stub_xmpp.c
index 668e8725..16392283 100644
--- a/tests/unittests/xmpp/stub_xmpp.c
+++ b/tests/unittests/xmpp/stub_xmpp.c
@@ -122,6 +122,11 @@ char* message_send_chat_pgp(const char * const barejid, const char * const msg,
     return NULL;
 }
 
+char* message_send_chat_ox(const char * const barejid, const char * const msg, gboolean request_receipt, const char *const replace_id)
+{
+    return NULL;
+}
+
 char* message_send_private(const char *const fulljid, const char *const msg, const char *const oob_url)
 {
     return NULL;
.1.3&id=56ea7f0e430bc44f8b652ef88bedb186b6b3e0df'>^
0abafa6 ^



fa04a1e ^

27b2517 ^















fa04a1e ^
27b2517 ^

fa04a1e ^
fa04a1e ^
27b2517 ^
fa04a1e ^




27b2517 ^
fa04a1e ^










27b2517 ^
fa04a1e ^



27b2517 ^
fa04a1e ^


27b2517 ^

fa04a1e ^
27b2517 ^
337dd18 ^






fa04a1e ^
27b2517 ^
fa04a1e ^

27b2517 ^






0abafa6 ^
27b2517 ^
711d228 ^

27b2517 ^



0abafa6 ^

27b2517 ^
fa04a1e ^
0abafa6 ^



27b2517 ^
fa04a1e ^

0abafa6 ^

711d228 ^




0abafa6 ^
711d228 ^











0abafa6 ^




fa04a1e ^





























27b2517 ^



4bdc0f3 ^




337dd18 ^
4bdc0f3 ^

337dd18 ^
4bdc0f3 ^

337dd18 ^
4bdc0f3 ^
27b2517 ^

fa04a1e ^










337dd18 ^





















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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224