forked from webview/webview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebview_test.cc
executable file
·389 lines (371 loc) · 13.6 KB
/
webview_test.cc
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
//bin/echo; [ $(uname) = "Darwin" ] && FLAGS="-framework Webkit" || FLAGS="$(pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0)" ; c++ "$0" $FLAGS -std=c++11 -Wall -Wextra -pedantic -g -o webview_test && ./webview_test ; exit
// +build ignore
#define WEBVIEW_VERSION_MAJOR 1
#define WEBVIEW_VERSION_MINOR 2
#define WEBVIEW_VERSION_PATCH 3
#define WEBVIEW_VERSION_PRE_RELEASE "-test"
#define WEBVIEW_VERSION_BUILD_METADATA "+gaabbccd"
#include "webview.h"
#include <cassert>
#include <cstdint>
#include <cstring>
#include <iostream>
#include <thread>
#include <unordered_map>
// =================================================================
// TEST: start app loop and terminate it.
// =================================================================
static void test_terminate() {
webview::webview w(false, nullptr);
w.dispatch([&]() { w.terminate(); });
w.run();
}
// =================================================================
// TEST: use C API to create a window, run app and terminate it.
// =================================================================
static void cb_assert_arg(webview_t w, void *arg) {
assert(w != nullptr);
assert(memcmp(arg, "arg", 3) == 0);
}
static void cb_terminate(webview_t w, void *arg) {
assert(arg == nullptr);
webview_terminate(w);
}
static void test_c_api() {
webview_t w;
w = webview_create(false, nullptr);
webview_set_size(w, 480, 320, 0);
webview_set_title(w, "Test");
webview_navigate(w, "https://github.com/zserge/webview");
webview_dispatch(w, cb_assert_arg, (void *)"arg");
webview_dispatch(w, cb_terminate, nullptr);
webview_run(w);
webview_destroy(w);
}
// =================================================================
// TEST: use C API to test binding and unbinding.
// =================================================================
static void test_c_api_bind() {
struct context_t {
webview_t w;
unsigned int number;
} context{};
auto test = +[](const char *seq, const char *req, void *arg) {
auto increment =
+[](const char * /*seq*/, const char * /*req*/, void *arg) {
++static_cast<context_t *>(arg)->number;
};
auto context = static_cast<context_t *>(arg);
std::string req_(req);
// Bind and increment number.
if (req_ == "[0]") {
assert(context->number == 0);
webview_bind(context->w, "increment", increment, context);
webview_return(
context->w, seq, 0,
"(() => {try{window.increment()}catch{}window.test(1)})()");
return;
}
// Unbind and make sure that we cannot increment even if we try.
if (req_ == "[1]") {
assert(context->number == 1);
webview_unbind(context->w, "increment");
webview_return(
context->w, seq, 0,
"(() => {try{window.increment()}catch{}window.test(2)})()");
return;
}
// Number should not have changed but we can bind again and change the number.
if (req_ == "[2]") {
assert(context->number == 1);
webview_bind(context->w, "increment", increment, context);
webview_return(
context->w, seq, 0,
"(() => {try{window.increment()}catch{}window.test(3)})()");
return;
}
// Finish test.
if (req_ == "[3]") {
assert(context->number == 2);
webview_terminate(context->w);
return;
}
assert(!"Should not reach here");
};
auto html = "<script>\n"
" window.test(0);\n"
"</script>";
auto w = webview_create(false, nullptr);
context.w = w;
// Attempting to remove non-existing binding is OK
webview_unbind(w, "test");
webview_bind(w, "test", test, &context);
// Attempting to bind multiple times only binds once
webview_bind(w, "test", test, &context);
webview_set_html(w, html);
webview_run(w);
}
// =================================================================
// TEST: test synchronous binding and unbinding.
// =================================================================
static void test_sync_bind() {
unsigned int number = 0;
webview::webview w(false, nullptr);
auto test = [&](const std::string &req) -> std::string {
auto increment = [&](const std::string & /*req*/) -> std::string {
++number;
return "";
};
// Bind and increment number.
if (req == "[0]") {
assert(number == 0);
w.bind("increment", increment);
return "(() => {try{window.increment()}catch{}window.test(1)})()";
}
// Unbind and make sure that we cannot increment even if we try.
if (req == "[1]") {
assert(number == 1);
w.unbind("increment");
return "(() => {try{window.increment()}catch{}window.test(2)})()";
}
// Number should not have changed but we can bind again and change the number.
if (req == "[2]") {
assert(number == 1);
w.bind("increment", increment);
return "(() => {try{window.increment()}catch{}window.test(3)})()";
}
// Finish test.
if (req == "[3]") {
assert(number == 2);
w.terminate();
return "";
}
assert(!"Should not reach here");
return "";
};
auto html = "<script>\n"
" window.test(0);\n"
"</script>";
// Attempting to remove non-existing binding is OK
w.unbind("test");
w.bind("test", test);
// Attempting to bind multiple times only binds once
w.bind("test", test);
w.set_html(html);
w.run();
}
// =================================================================
// TEST: webview_version().
// =================================================================
static void test_c_api_version() {
auto vi = webview_version();
assert(vi);
assert(vi->version.major == 1);
assert(vi->version.minor == 2);
assert(vi->version.patch == 3);
assert(std::string(vi->version_number) == "1.2.3");
assert(std::string(vi->pre_release) == "-test");
assert(std::string(vi->build_metadata) == "+gaabbccd");
// The function should return the same pointer when called again.
assert(webview_version() == vi);
}
// =================================================================
// TEST: ensure that JS code can call native code and vice versa.
// =================================================================
struct test_webview : webview::browser_engine {
using cb_t = std::function<void(test_webview *, int, const std::string &)>;
test_webview(cb_t cb) : webview::browser_engine(true, nullptr), m_cb(cb) {}
void on_message(const std::string &msg) override { m_cb(this, i++, msg); }
int i = 0;
cb_t m_cb;
};
static void test_bidir_comms() {
test_webview browser([](test_webview *w, int i, const std::string &msg) {
std::cout << msg << std::endl;
switch (i) {
case 0:
assert(msg == "loaded");
w->eval("window.external.invoke('exiting ' + window.x)");
break;
case 1:
assert(msg == "exiting 42");
w->terminate();
break;
default:
assert(0);
}
});
browser.init(R"(
window.x = 42;
window.onload = () => {
window.external.invoke('loaded');
};
)");
browser.navigate("data:text/html,%3Chtml%3Ehello%3C%2Fhtml%3E");
browser.run();
}
// =================================================================
// TEST: ensure that JSON parsing works.
// =================================================================
static void test_json() {
auto J = webview::detail::json_parse;
// Valid input with expected output
assert(J(R"({"foo":"bar"})", "foo", -1) == "bar");
assert(J(R"({"foo":""})", "foo", -1).empty());
assert(J(R"({"foo":{}")", "foo", -1) == "{}");
assert(J(R"({"foo": {"bar": 1}})", "foo", -1) == R"({"bar": 1})");
assert(J(R"(["foo", "bar", "baz"])", "", 0) == "foo");
assert(J(R"(["foo", "bar", "baz"])", "", 2) == "baz");
// Valid UTF-8 with expected output
assert(J(R"({"フー":"バー"})", "フー", -1) == "バー");
assert(J(R"(["フー", "バー", "バズ"])", "", 2) == "バズ");
// Invalid input with valid output - should probably fail
assert(J(R"({"foo":"bar")", "foo", -1) == "bar");
// Valid input with other invalid parameters - should fail
assert(J(R"([])", "", 0).empty());
assert(J(R"({})", "foo", -1).empty());
assert(J(R"(["foo", "bar", "baz"])", "", -1).empty());
assert(J(R"(["foo"])", "", 1234).empty());
assert(J(R"(["foo"])", "", -1234).empty());
// Invalid input - should fail
assert(J("", "", 0).empty());
assert(J("", "foo", -1).empty());
assert(J(R"({"foo":")", "foo", -1).empty());
assert(J(R"({"foo":{)", "foo", -1).empty());
assert(J(R"({"foo":{")", "foo", -1).empty());
assert(J(R"(}")", "foo", -1).empty());
assert(J(R"({}}")", "foo", -1).empty());
assert(J(R"("foo)", "foo", -1).empty());
assert(J(R"(foo)", "foo", -1).empty());
assert(J(R"({{[[""foo""]]}})", "", 1234).empty());
assert(J("bad", "", 0).empty());
assert(J("bad", "foo", -1).empty());
}
static void run_with_timeout(std::function<void()> fn, int timeout_ms) {
std::atomic_flag flag_running = ATOMIC_FLAG_INIT;
flag_running.test_and_set();
std::thread timeout_thread([&]() {
for (int i = 0; i < timeout_ms / 100; i++) {
if (!flag_running.test_and_set()) {
return;
}
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
std::cout << "Exiting due to a timeout." << std::endl;
exit(1);
});
fn();
flag_running.clear();
timeout_thread.join();
}
#if _WIN32
// =================================================================
// TEST: ensure that version number parsing works on Windows.
// =================================================================
static void test_parse_version() {
using namespace webview::detail;
auto v = parse_version("");
assert(v.size() == 4);
assert(v[0] == 0 && v[1] == 0 && v[2] == 0 && v[3] == 0);
v = parse_version("1");
assert(v[0] == 1 && v[1] == 0 && v[2] == 0 && v[3] == 0);
v = parse_version("0.2");
assert(v[0] == 0 && v[1] == 2 && v[2] == 0 && v[3] == 0);
v = parse_version("0.0.3");
assert(v[0] == 0 && v[1] == 0 && v[2] == 3 && v[3] == 0);
v = parse_version("0.0.0.4");
assert(v[0] == 0 && v[1] == 0 && v[2] == 0 && v[3] == 4);
v = parse_version("1.2.3.4.5");
assert(v.size() == 4);
assert(v[0] == 1 && v[1] == 2 && v[2] == 3 && v[3] == 4);
v = parse_version("1.2.3.4.5.6");
assert(v[0] == 1 && v[1] == 2 && v[2] == 3 && v[3] == 4);
v = parse_version("11.22.33.44");
assert(v[0] == 11 && v[1] == 22 && v[2] == 33 && v[3] == 44);
v = parse_version("0.0.0.0");
assert(v[0] == 0 && v[1] == 0 && v[2] == 0 && v[3] == 0);
v = parse_version("-1.-2.-3.-4");
assert(v[0] == 0 && v[1] == 0 && v[2] == 0 && v[3] == 0);
v = parse_version("a.b.c.d");
assert(v[0] == 0 && v[1] == 0 && v[2] == 0 && v[3] == 0);
v = parse_version("...");
assert(v[0] == 0 && v[1] == 0 && v[2] == 0 && v[3] == 0);
}
// =================================================================
// TEST: ensure that narrow/wide string conversion works on Windows.
// =================================================================
static void test_win32_narrow_wide_string_conversion() {
using namespace webview::detail;
assert(widen_string("").empty());
assert(narrow_string(L"").empty());
assert(widen_string("foo") == L"foo");
assert(narrow_string(L"foo") == "foo");
assert(widen_string("フー") == L"フー");
assert(narrow_string(L"フー") == "フー");
assert(widen_string("æøå") == L"æøå");
assert(narrow_string(L"æøå") == "æøå");
// Unicode number for the smiley face below: U+1F600
assert(widen_string("😀") == L"😀");
assert(narrow_string(L"😀") == "😀");
// Ensure that elements of wide string are correct
{
auto s = widen_string("😀");
assert(s.size() == 2);
assert(static_cast<std::uint16_t>(s[0]) == 0xD83D);
assert(static_cast<std::uint16_t>(s[1]) == 0xDE00);
}
// Ensure that elements of narrow string are correct
{
auto s = narrow_string(L"😀");
assert(s.size() == 4);
assert(static_cast<std::uint8_t>(s[0]) == 0xf0);
assert(static_cast<std::uint8_t>(s[1]) == 0x9f);
assert(static_cast<std::uint8_t>(s[2]) == 0x98);
assert(static_cast<std::uint8_t>(s[3]) == 0x80);
}
// Null-characters must also be converted
assert(widen_string(std::string(2, '\0')) == std::wstring(2, L'\0'));
assert(narrow_string(std::wstring(2, L'\0')) == std::string(2, '\0'));
}
#endif
int main(int argc, char *argv[]) {
std::unordered_map<std::string, std::function<void()>> all_tests = {
{"terminate", test_terminate}, {"c_api", test_c_api},
{"c_api_bind", test_c_api_bind}, {"c_api_version", test_c_api_version},
{"bidir_comms", test_bidir_comms}, {"json", test_json},
{"sync_bind", test_sync_bind}};
#if _WIN32
all_tests.emplace("parse_version", test_parse_version);
all_tests.emplace("win32_narrow_wide_string_conversion",
test_win32_narrow_wide_string_conversion);
#endif
// Without arguments run all tests, one-by-one by forking itself.
// With a single argument - run the requested test
if (argc == 1) {
int failed = 0;
for (const auto &test : all_tests) {
std::cout << "TEST: " << test.first << std::endl;
int status = system((std::string(argv[0]) + " " + test.first).c_str());
if (status == 0) {
std::cout << " PASS " << std::endl;
} else {
std::cout << " FAIL: " << status << std::endl;
failed = 1;
}
}
return failed;
}
if (argc == 2) {
auto it = all_tests.find(argv[1]);
if (it != all_tests.end()) {
run_with_timeout(it->second, 60000);
return 0;
}
}
std::cout << "USAGE: " << argv[0] << " [test name]" << std::endl;
std::cout << "Tests: " << std::endl;
for (const auto &test : all_tests) {
std::cout << " " << test.first << std::endl;
}
return 1;
}