1 #include "qemu/osdep.h"
3 #include <glib/gstdio.h>
4 #include <sys/socket.h>
8 #include "qapi/qmp/qdict.h"
9 #include "qapi/qmp/qlist.h"
18 static int connect_qga(char *path
)
20 int s
, ret
, len
, i
= 0;
21 struct sockaddr_un remote
;
23 s
= socket(AF_UNIX
, SOCK_STREAM
, 0);
26 remote
.sun_family
= AF_UNIX
;
28 strcpy(remote
.sun_path
, path
);
29 len
= strlen(remote
.sun_path
) + sizeof(remote
.sun_family
);
30 ret
= connect(s
, (struct sockaddr
*)&remote
, len
);
32 g_usleep(G_USEC_PER_SEC
);
42 static void qga_watch(GPid pid
, gint status
, gpointer user_data
)
44 TestFixture
*fixture
= user_data
;
46 g_assert_cmpint(status
, ==, 0);
47 g_main_loop_quit(fixture
->loop
);
51 fixture_setup(TestFixture
*fixture
, gconstpointer data
, gchar
**envp
)
53 const gchar
*extra_arg
= data
;
55 gchar
*cwd
, *path
, *cmd
, **argv
= NULL
;
57 fixture
->loop
= g_main_loop_new(NULL
, FALSE
);
59 fixture
->test_dir
= g_strdup("/tmp/qgatest.XXXXXX");
60 g_assert_nonnull(mkdtemp(fixture
->test_dir
));
62 path
= g_build_filename(fixture
->test_dir
, "sock", NULL
);
63 cwd
= g_get_current_dir();
64 cmd
= g_strdup_printf("%s%cqemu-ga -m unix-listen -t %s -p %s %s %s",
66 fixture
->test_dir
, path
,
67 getenv("QTEST_LOG") ? "-v" : "",
69 g_shell_parse_argv(cmd
, NULL
, &argv
, &error
);
70 g_assert_no_error(error
);
72 g_spawn_async(fixture
->test_dir
, argv
, envp
,
73 G_SPAWN_SEARCH_PATH
|G_SPAWN_DO_NOT_REAP_CHILD
,
74 NULL
, NULL
, &fixture
->pid
, &error
);
75 g_assert_no_error(error
);
77 g_child_watch_add(fixture
->pid
, qga_watch
, fixture
);
79 fixture
->fd
= connect_qga(path
);
80 g_assert_cmpint(fixture
->fd
, !=, -1);
89 fixture_tear_down(TestFixture
*fixture
, gconstpointer data
)
93 kill(fixture
->pid
, SIGTERM
);
95 g_main_loop_run(fixture
->loop
);
96 g_main_loop_unref(fixture
->loop
);
98 g_spawn_close_pid(fixture
->pid
);
100 tmp
= g_build_filename(fixture
->test_dir
, "foo", NULL
);
104 tmp
= g_build_filename(fixture
->test_dir
, "qga.state", NULL
);
108 tmp
= g_build_filename(fixture
->test_dir
, "sock", NULL
);
112 g_rmdir(fixture
->test_dir
);
113 g_free(fixture
->test_dir
);
116 static void qmp_assertion_message_error(const char *domain
,
123 const char *class, *desc
;
127 error
= qdict_get_qdict(dict
, "error");
128 class = qdict_get_try_str(error
, "class");
129 desc
= qdict_get_try_str(error
, "desc");
131 s
= g_strdup_printf("assertion failed %s: %s %s", expr
, class, desc
);
132 g_assertion_message(domain
, file
, line
, func
, s
);
136 #define qmp_assert_no_error(err) do { \
137 if (qdict_haskey(err, "error")) { \
138 qmp_assertion_message_error(G_LOG_DOMAIN, __FILE__, __LINE__, \
139 G_STRFUNC, #err, err); \
143 static void test_qga_sync_delimited(gconstpointer fix
)
145 const TestFixture
*fixture
= fix
;
146 guint32 v
, r
= g_random_int();
151 cmd
= g_strdup_printf("\xff{'execute': 'guest-sync-delimited',"
152 " 'arguments': {'id': %u } }", r
);
153 qmp_fd_send(fixture
->fd
, cmd
);
157 * Read and ignore garbage until resynchronized.
159 * Note that the full reset sequence would involve checking the
160 * response of guest-sync-delimited and repeating the loop if
161 * 'id' field of the response does not match the 'id' field of
162 * the request. Testing this fully would require inserting
163 * garbage in the response stream and is left as a future test
166 * TODO: The server shouldn't emit so much garbage (among other
167 * things, it loudly complains about the client's \xff being
168 * invalid JSON, even though it is a documented part of the
172 v
= read(fixture
->fd
, &c
, 1);
173 g_assert_cmpint(v
, ==, 1);
176 ret
= qmp_fd_receive(fixture
->fd
);
177 g_assert_nonnull(ret
);
178 qmp_assert_no_error(ret
);
180 v
= qdict_get_int(ret
, "return");
181 g_assert_cmpint(r
, ==, v
);
186 static void test_qga_sync(gconstpointer fix
)
188 const TestFixture
*fixture
= fix
;
189 guint32 v
, r
= g_random_int();
194 * TODO guest-sync is inherently limited: we cannot distinguish
195 * failure caused by reacting to garbage on the wire prior to this
196 * command, from failure of this actual command. Clients are
197 * supposed to be able to send a raw '\xff' byte to at least
198 * re-synchronize the server's parser prior to this command, but
199 * we are not in a position to test that here because (at least
200 * for now) it causes the server to issue an error message about
201 * invalid JSON. Testing of '\xff' handling is done in
202 * guest-sync-delimited instead.
204 cmd
= g_strdup_printf("{'execute': 'guest-sync',"
205 " 'arguments': {'id': %u } }", r
);
206 ret
= qmp_fd(fixture
->fd
, cmd
);
209 g_assert_nonnull(ret
);
210 qmp_assert_no_error(ret
);
212 v
= qdict_get_int(ret
, "return");
213 g_assert_cmpint(r
, ==, v
);
218 static void test_qga_ping(gconstpointer fix
)
220 const TestFixture
*fixture
= fix
;
223 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-ping'}");
224 g_assert_nonnull(ret
);
225 qmp_assert_no_error(ret
);
230 static void test_qga_invalid_id(gconstpointer fix
)
232 const TestFixture
*fixture
= fix
;
236 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-ping', 'id': 1}");
237 g_assert_nonnull(ret
);
239 error
= qdict_get_qdict(ret
, "error");
240 class = qdict_get_try_str(error
, "class");
241 g_assert_cmpstr(class, ==, "GenericError");
246 static void test_qga_invalid_oob(gconstpointer fix
)
248 const TestFixture
*fixture
= fix
;
252 ret
= qmp_fd(fixture
->fd
, "{'exec-oob': 'guest-ping'}");
253 g_assert_nonnull(ret
);
255 error
= qdict_get_qdict(ret
, "error");
256 class = qdict_get_try_str(error
, "class");
257 g_assert_cmpstr(class, ==, "GenericError");
262 static void test_qga_invalid_args(gconstpointer fix
)
264 const TestFixture
*fixture
= fix
;
266 const gchar
*class, *desc
;
268 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-ping', "
269 "'arguments': {'foo': 42 }}");
270 g_assert_nonnull(ret
);
272 error
= qdict_get_qdict(ret
, "error");
273 class = qdict_get_try_str(error
, "class");
274 desc
= qdict_get_try_str(error
, "desc");
276 g_assert_cmpstr(class, ==, "GenericError");
277 g_assert_cmpstr(desc
, ==, "Parameter 'foo' is unexpected");
282 static void test_qga_invalid_cmd(gconstpointer fix
)
284 const TestFixture
*fixture
= fix
;
286 const gchar
*class, *desc
;
288 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-invalid-cmd'}");
289 g_assert_nonnull(ret
);
291 error
= qdict_get_qdict(ret
, "error");
292 class = qdict_get_try_str(error
, "class");
293 desc
= qdict_get_try_str(error
, "desc");
295 g_assert_cmpstr(class, ==, "CommandNotFound");
296 g_assert_cmpint(strlen(desc
), >, 0);
301 static void test_qga_info(gconstpointer fix
)
303 const TestFixture
*fixture
= fix
;
305 const gchar
*version
;
307 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-info'}");
308 g_assert_nonnull(ret
);
309 qmp_assert_no_error(ret
);
311 val
= qdict_get_qdict(ret
, "return");
312 version
= qdict_get_try_str(val
, "version");
313 g_assert_cmpstr(version
, ==, QEMU_VERSION
);
318 static void test_qga_get_vcpus(gconstpointer fix
)
320 const TestFixture
*fixture
= fix
;
323 const QListEntry
*entry
;
325 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-vcpus'}");
326 g_assert_nonnull(ret
);
327 qmp_assert_no_error(ret
);
329 /* check there is at least a cpu */
330 list
= qdict_get_qlist(ret
, "return");
331 entry
= qlist_first(list
);
332 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "online"));
333 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "logical-id"));
338 static void test_qga_get_fsinfo(gconstpointer fix
)
340 const TestFixture
*fixture
= fix
;
343 const QListEntry
*entry
;
345 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-fsinfo'}");
346 g_assert_nonnull(ret
);
347 qmp_assert_no_error(ret
);
349 /* sanity-check the response if there are any filesystems */
350 list
= qdict_get_qlist(ret
, "return");
351 entry
= qlist_first(list
);
353 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "name"));
354 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "mountpoint"));
355 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "type"));
356 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "disk"));
362 static void test_qga_get_memory_block_info(gconstpointer fix
)
364 const TestFixture
*fixture
= fix
;
368 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-memory-block-info'}");
369 g_assert_nonnull(ret
);
371 /* some systems might not expose memory block info in sysfs */
372 if (!qdict_haskey(ret
, "error")) {
373 /* check there is at least some memory */
374 val
= qdict_get_qdict(ret
, "return");
375 size
= qdict_get_int(val
, "size");
376 g_assert_cmpint(size
, >, 0);
382 static void test_qga_get_memory_blocks(gconstpointer fix
)
384 const TestFixture
*fixture
= fix
;
387 const QListEntry
*entry
;
389 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-memory-blocks'}");
390 g_assert_nonnull(ret
);
392 /* some systems might not expose memory block info in sysfs */
393 if (!qdict_haskey(ret
, "error")) {
394 list
= qdict_get_qlist(ret
, "return");
395 entry
= qlist_first(list
);
396 /* newer versions of qga may return empty list without error */
398 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
),
400 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "online"));
407 static void test_qga_network_get_interfaces(gconstpointer fix
)
409 const TestFixture
*fixture
= fix
;
412 const QListEntry
*entry
;
414 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-network-get-interfaces'}");
415 g_assert_nonnull(ret
);
416 qmp_assert_no_error(ret
);
418 /* check there is at least an interface */
419 list
= qdict_get_qlist(ret
, "return");
420 entry
= qlist_first(list
);
421 g_assert(qdict_haskey(qobject_to(QDict
, entry
->value
), "name"));
426 static void test_qga_file_ops(gconstpointer fix
)
428 const TestFixture
*fixture
= fix
;
429 const unsigned char helloworld
[] = "Hello World!\n";
431 gchar
*cmd
, *path
, *enc
;
440 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-file-open',"
441 " 'arguments': { 'path': 'foo', 'mode': 'w+' } }");
442 g_assert_nonnull(ret
);
443 qmp_assert_no_error(ret
);
444 id
= qdict_get_int(ret
, "return");
447 enc
= g_base64_encode(helloworld
, sizeof(helloworld
));
449 cmd
= g_strdup_printf("{'execute': 'guest-file-write',"
450 " 'arguments': { 'handle': %" PRId64
","
451 " 'buf-b64': '%s' } }", id
, enc
);
452 ret
= qmp_fd(fixture
->fd
, cmd
);
453 g_assert_nonnull(ret
);
454 qmp_assert_no_error(ret
);
456 val
= qdict_get_qdict(ret
, "return");
457 count
= qdict_get_int(val
, "count");
458 eof
= qdict_get_bool(val
, "eof");
459 g_assert_cmpint(count
, ==, sizeof(helloworld
));
460 g_assert_cmpint(eof
, ==, 0);
465 cmd
= g_strdup_printf("{'execute': 'guest-file-flush',"
466 " 'arguments': {'handle': %" PRId64
"} }",
468 ret
= qmp_fd(fixture
->fd
, cmd
);
473 cmd
= g_strdup_printf("{'execute': 'guest-file-close',"
474 " 'arguments': {'handle': %" PRId64
"} }",
476 ret
= qmp_fd(fixture
->fd
, cmd
);
481 path
= g_build_filename(fixture
->test_dir
, "foo", NULL
);
482 f
= fopen(path
, "r");
485 count
= fread(tmp
, 1, sizeof(tmp
), f
);
486 g_assert_cmpint(count
, ==, sizeof(helloworld
));
488 g_assert_cmpstr(tmp
, ==, (char *)helloworld
);
492 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-file-open',"
493 " 'arguments': { 'path': 'foo', 'mode': 'r' } }");
494 g_assert_nonnull(ret
);
495 qmp_assert_no_error(ret
);
496 id
= qdict_get_int(ret
, "return");
500 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
501 " 'arguments': { 'handle': %" PRId64
"} }",
503 ret
= qmp_fd(fixture
->fd
, cmd
);
504 val
= qdict_get_qdict(ret
, "return");
505 count
= qdict_get_int(val
, "count");
506 eof
= qdict_get_bool(val
, "eof");
507 b64
= qdict_get_str(val
, "buf-b64");
508 g_assert_cmpint(count
, ==, sizeof(helloworld
));
510 g_assert_cmpstr(b64
, ==, enc
);
517 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
518 " 'arguments': { 'handle': %" PRId64
"} }",
520 ret
= qmp_fd(fixture
->fd
, cmd
);
521 val
= qdict_get_qdict(ret
, "return");
522 count
= qdict_get_int(val
, "count");
523 eof
= qdict_get_bool(val
, "eof");
524 b64
= qdict_get_str(val
, "buf-b64");
525 g_assert_cmpint(count
, ==, 0);
527 g_assert_cmpstr(b64
, ==, "");
532 cmd
= g_strdup_printf("{'execute': 'guest-file-seek',"
533 " 'arguments': { 'handle': %" PRId64
", "
534 " 'offset': %d, 'whence': '%s' } }",
536 ret
= qmp_fd(fixture
->fd
, cmd
);
537 qmp_assert_no_error(ret
);
538 val
= qdict_get_qdict(ret
, "return");
539 count
= qdict_get_int(val
, "position");
540 eof
= qdict_get_bool(val
, "eof");
541 g_assert_cmpint(count
, ==, 6);
547 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
548 " 'arguments': { 'handle': %" PRId64
"} }",
550 ret
= qmp_fd(fixture
->fd
, cmd
);
551 val
= qdict_get_qdict(ret
, "return");
552 count
= qdict_get_int(val
, "count");
553 eof
= qdict_get_bool(val
, "eof");
554 b64
= qdict_get_str(val
, "buf-b64");
555 g_assert_cmpint(count
, ==, sizeof(helloworld
) - 6);
557 dec
= g_base64_decode(b64
, &count
);
558 g_assert_cmpint(count
, ==, sizeof(helloworld
) - 6);
559 g_assert_cmpmem(dec
, count
, helloworld
+ 6, sizeof(helloworld
) - 6);
566 cmd
= g_strdup_printf("{'execute': 'guest-file-close',"
567 " 'arguments': {'handle': %" PRId64
"} }",
569 ret
= qmp_fd(fixture
->fd
, cmd
);
574 static void test_qga_file_write_read(gconstpointer fix
)
576 const TestFixture
*fixture
= fix
;
577 const unsigned char helloworld
[] = "Hello World!\n";
585 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-file-open',"
586 " 'arguments': { 'path': 'foo', 'mode': 'w+' } }");
587 g_assert_nonnull(ret
);
588 qmp_assert_no_error(ret
);
589 id
= qdict_get_int(ret
, "return");
592 enc
= g_base64_encode(helloworld
, sizeof(helloworld
));
594 cmd
= g_strdup_printf("{'execute': 'guest-file-write',"
595 " 'arguments': { 'handle': %" PRId64
","
596 " 'buf-b64': '%s' } }", id
, enc
);
597 ret
= qmp_fd(fixture
->fd
, cmd
);
598 g_assert_nonnull(ret
);
599 qmp_assert_no_error(ret
);
601 val
= qdict_get_qdict(ret
, "return");
602 count
= qdict_get_int(val
, "count");
603 eof
= qdict_get_bool(val
, "eof");
604 g_assert_cmpint(count
, ==, sizeof(helloworld
));
605 g_assert_cmpint(eof
, ==, 0);
609 /* read (check implicit flush) */
610 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
611 " 'arguments': { 'handle': %" PRId64
"} }",
613 ret
= qmp_fd(fixture
->fd
, cmd
);
614 val
= qdict_get_qdict(ret
, "return");
615 count
= qdict_get_int(val
, "count");
616 eof
= qdict_get_bool(val
, "eof");
617 b64
= qdict_get_str(val
, "buf-b64");
618 g_assert_cmpint(count
, ==, 0);
620 g_assert_cmpstr(b64
, ==, "");
625 cmd
= g_strdup_printf("{'execute': 'guest-file-seek',"
626 " 'arguments': { 'handle': %" PRId64
", "
627 " 'offset': %d, 'whence': '%s' } }",
629 ret
= qmp_fd(fixture
->fd
, cmd
);
630 qmp_assert_no_error(ret
);
631 val
= qdict_get_qdict(ret
, "return");
632 count
= qdict_get_int(val
, "position");
633 eof
= qdict_get_bool(val
, "eof");
634 g_assert_cmpint(count
, ==, 0);
640 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
641 " 'arguments': { 'handle': %" PRId64
"} }",
643 ret
= qmp_fd(fixture
->fd
, cmd
);
644 val
= qdict_get_qdict(ret
, "return");
645 count
= qdict_get_int(val
, "count");
646 eof
= qdict_get_bool(val
, "eof");
647 b64
= qdict_get_str(val
, "buf-b64");
648 g_assert_cmpint(count
, ==, sizeof(helloworld
));
650 g_assert_cmpstr(b64
, ==, enc
);
656 cmd
= g_strdup_printf("{'execute': 'guest-file-close',"
657 " 'arguments': {'handle': %" PRId64
"} }",
659 ret
= qmp_fd(fixture
->fd
, cmd
);
664 static void test_qga_get_time(gconstpointer fix
)
666 const TestFixture
*fixture
= fix
;
670 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-time'}");
671 g_assert_nonnull(ret
);
672 qmp_assert_no_error(ret
);
674 time
= qdict_get_int(ret
, "return");
675 g_assert_cmpint(time
, >, 0);
680 static void test_qga_blacklist(gconstpointer data
)
684 const gchar
*class, *desc
;
686 fixture_setup(&fix
, "-b guest-ping,guest-get-time", NULL
);
688 /* check blacklist */
689 ret
= qmp_fd(fix
.fd
, "{'execute': 'guest-ping'}");
690 g_assert_nonnull(ret
);
691 error
= qdict_get_qdict(ret
, "error");
692 class = qdict_get_try_str(error
, "class");
693 desc
= qdict_get_try_str(error
, "desc");
694 g_assert_cmpstr(class, ==, "GenericError");
695 g_assert_nonnull(g_strstr_len(desc
, -1, "has been disabled"));
698 ret
= qmp_fd(fix
.fd
, "{'execute': 'guest-get-time'}");
699 g_assert_nonnull(ret
);
700 error
= qdict_get_qdict(ret
, "error");
701 class = qdict_get_try_str(error
, "class");
702 desc
= qdict_get_try_str(error
, "desc");
703 g_assert_cmpstr(class, ==, "GenericError");
704 g_assert_nonnull(g_strstr_len(desc
, -1, "has been disabled"));
707 /* check something work */
708 ret
= qmp_fd(fix
.fd
, "{'execute': 'guest-get-fsinfo'}");
709 qmp_assert_no_error(ret
);
712 fixture_tear_down(&fix
, NULL
);
715 static void test_qga_config(gconstpointer data
)
717 GError
*error
= NULL
;
718 char *cwd
, *cmd
, *out
, *err
, *str
, **strv
, **argv
= NULL
;
724 cwd
= g_get_current_dir();
725 cmd
= g_strdup_printf("%s%cqemu-ga -D",
726 cwd
, G_DIR_SEPARATOR
);
728 g_shell_parse_argv(cmd
, NULL
, &argv
, &error
);
730 g_assert_no_error(error
);
732 env
[0] = g_strdup_printf("QGA_CONF=tests%cdata%ctest-qga-config",
733 G_DIR_SEPARATOR
, G_DIR_SEPARATOR
);
735 g_spawn_sync(NULL
, argv
, env
, 0,
736 NULL
, NULL
, &out
, &err
, &status
, &error
);
739 g_assert_no_error(error
);
740 g_assert_cmpstr(err
, ==, "");
741 g_assert_cmpint(status
, ==, 0);
743 kf
= g_key_file_new();
744 g_key_file_load_from_data(kf
, out
, -1, G_KEY_FILE_NONE
, &error
);
745 g_assert_no_error(error
);
747 str
= g_key_file_get_start_group(kf
);
748 g_assert_cmpstr(str
, ==, "general");
751 g_assert_false(g_key_file_get_boolean(kf
, "general", "daemon", &error
));
752 g_assert_no_error(error
);
754 str
= g_key_file_get_string(kf
, "general", "method", &error
);
755 g_assert_no_error(error
);
756 g_assert_cmpstr(str
, ==, "virtio-serial");
759 str
= g_key_file_get_string(kf
, "general", "path", &error
);
760 g_assert_no_error(error
);
761 g_assert_cmpstr(str
, ==, "/path/to/org.qemu.guest_agent.0");
764 str
= g_key_file_get_string(kf
, "general", "pidfile", &error
);
765 g_assert_no_error(error
);
766 g_assert_cmpstr(str
, ==, "/var/foo/qemu-ga.pid");
769 str
= g_key_file_get_string(kf
, "general", "statedir", &error
);
770 g_assert_no_error(error
);
771 g_assert_cmpstr(str
, ==, "/var/state");
774 g_assert_true(g_key_file_get_boolean(kf
, "general", "verbose", &error
));
775 g_assert_no_error(error
);
777 strv
= g_key_file_get_string_list(kf
, "general", "blacklist", &n
, &error
);
778 g_assert_cmpint(n
, ==, 2);
779 g_assert_true(g_strv_contains((const char * const *)strv
,
781 g_assert_true(g_strv_contains((const char * const *)strv
,
783 g_assert_no_error(error
);
792 static void test_qga_fsfreeze_status(gconstpointer fix
)
794 const TestFixture
*fixture
= fix
;
798 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-fsfreeze-status'}");
799 g_assert_nonnull(ret
);
800 qmp_assert_no_error(ret
);
802 status
= qdict_get_try_str(ret
, "return");
803 g_assert_cmpstr(status
, ==, "thawed");
808 static void test_qga_guest_exec(gconstpointer fix
)
810 const TestFixture
*fixture
= fix
;
814 int64_t pid
, now
, exitcode
;
819 /* exec 'echo foo bar' */
820 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-exec', 'arguments': {"
821 " 'path': '/bin/echo', 'arg': [ '-n', '\" test_str \"' ],"
822 " 'capture-output': true } }");
823 g_assert_nonnull(ret
);
824 qmp_assert_no_error(ret
);
825 val
= qdict_get_qdict(ret
, "return");
826 pid
= qdict_get_int(val
, "pid");
827 g_assert_cmpint(pid
, >, 0);
830 /* wait for completion */
831 now
= g_get_monotonic_time();
832 cmd
= g_strdup_printf("{'execute': 'guest-exec-status',"
833 " 'arguments': { 'pid': %" PRId64
" } }", pid
);
835 ret
= qmp_fd(fixture
->fd
, cmd
);
836 g_assert_nonnull(ret
);
837 val
= qdict_get_qdict(ret
, "return");
838 exited
= qdict_get_bool(val
, "exited");
843 g_get_monotonic_time() < now
+ 5 * G_TIME_SPAN_SECOND
);
848 exitcode
= qdict_get_int(val
, "exitcode");
849 g_assert_cmpint(exitcode
, ==, 0);
850 out
= qdict_get_str(val
, "out-data");
851 decoded
= g_base64_decode(out
, &len
);
852 g_assert_cmpint(len
, ==, 12);
853 g_assert_cmpstr((char *)decoded
, ==, "\" test_str \"");
858 static void test_qga_guest_exec_invalid(gconstpointer fix
)
860 const TestFixture
*fixture
= fix
;
862 const gchar
*class, *desc
;
864 /* invalid command */
865 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-exec', 'arguments': {"
866 " 'path': '/bin/invalid-cmd42' } }");
867 g_assert_nonnull(ret
);
868 error
= qdict_get_qdict(ret
, "error");
869 g_assert_nonnull(error
);
870 class = qdict_get_str(error
, "class");
871 desc
= qdict_get_str(error
, "desc");
872 g_assert_cmpstr(class, ==, "GenericError");
873 g_assert_cmpint(strlen(desc
), >, 0);
877 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-exec-status',"
878 " 'arguments': { 'pid': 0 } }");
879 g_assert_nonnull(ret
);
880 error
= qdict_get_qdict(ret
, "error");
881 g_assert_nonnull(error
);
882 class = qdict_get_str(error
, "class");
883 desc
= qdict_get_str(error
, "desc");
884 g_assert_cmpstr(class, ==, "GenericError");
885 g_assert_cmpint(strlen(desc
), >, 0);
889 static void test_qga_guest_get_host_name(gconstpointer fix
)
891 const TestFixture
*fixture
= fix
;
894 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-host-name'}");
895 g_assert_nonnull(ret
);
896 qmp_assert_no_error(ret
);
898 val
= qdict_get_qdict(ret
, "return");
899 g_assert(qdict_haskey(val
, "host-name"));
904 static void test_qga_guest_get_timezone(gconstpointer fix
)
906 const TestFixture
*fixture
= fix
;
909 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-timezone'}");
910 g_assert_nonnull(ret
);
911 qmp_assert_no_error(ret
);
913 /* Make sure there's at least offset */
914 val
= qdict_get_qdict(ret
, "return");
915 g_assert(qdict_haskey(val
, "offset"));
920 static void test_qga_guest_get_users(gconstpointer fix
)
922 const TestFixture
*fixture
= fix
;
926 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-users'}");
927 g_assert_nonnull(ret
);
928 qmp_assert_no_error(ret
);
930 /* There is not much to test here */
931 val
= qdict_get_qlist(ret
, "return");
932 g_assert_nonnull(val
);
937 static void test_qga_guest_get_osinfo(gconstpointer data
)
944 cwd
= g_get_current_dir();
945 env
[0] = g_strdup_printf(
946 "QGA_OS_RELEASE=%s%ctests%cdata%ctest-qga-os-release",
947 cwd
, G_DIR_SEPARATOR
, G_DIR_SEPARATOR
, G_DIR_SEPARATOR
);
950 fixture_setup(&fixture
, NULL
, env
);
952 ret
= qmp_fd(fixture
.fd
, "{'execute': 'guest-get-osinfo'}");
953 g_assert_nonnull(ret
);
954 qmp_assert_no_error(ret
);
956 val
= qdict_get_qdict(ret
, "return");
958 str
= qdict_get_try_str(val
, "id");
959 g_assert_nonnull(str
);
960 g_assert_cmpstr(str
, ==, "qemu-ga-test");
962 str
= qdict_get_try_str(val
, "name");
963 g_assert_nonnull(str
);
964 g_assert_cmpstr(str
, ==, "QEMU-GA");
966 str
= qdict_get_try_str(val
, "pretty-name");
967 g_assert_nonnull(str
);
968 g_assert_cmpstr(str
, ==, "QEMU Guest Agent test");
970 str
= qdict_get_try_str(val
, "version");
971 g_assert_nonnull(str
);
972 g_assert_cmpstr(str
, ==, "Test 1");
974 str
= qdict_get_try_str(val
, "version-id");
975 g_assert_nonnull(str
);
976 g_assert_cmpstr(str
, ==, "1");
978 str
= qdict_get_try_str(val
, "variant");
979 g_assert_nonnull(str
);
980 g_assert_cmpstr(str
, ==, "Unit test \"'$`\\ and \\\\ etc.");
982 str
= qdict_get_try_str(val
, "variant-id");
983 g_assert_nonnull(str
);
984 g_assert_cmpstr(str
, ==, "unit-test");
988 fixture_tear_down(&fixture
, NULL
);
991 int main(int argc
, char **argv
)
996 setlocale (LC_ALL
, "");
997 g_test_init(&argc
, &argv
, NULL
);
998 fixture_setup(&fix
, NULL
, NULL
);
1000 g_test_add_data_func("/qga/sync-delimited", &fix
, test_qga_sync_delimited
);
1001 g_test_add_data_func("/qga/sync", &fix
, test_qga_sync
);
1002 g_test_add_data_func("/qga/ping", &fix
, test_qga_ping
);
1003 g_test_add_data_func("/qga/info", &fix
, test_qga_info
);
1004 g_test_add_data_func("/qga/network-get-interfaces", &fix
,
1005 test_qga_network_get_interfaces
);
1006 if (!access("/sys/devices/system/cpu/cpu0", F_OK
)) {
1007 g_test_add_data_func("/qga/get-vcpus", &fix
, test_qga_get_vcpus
);
1009 g_test_add_data_func("/qga/get-fsinfo", &fix
, test_qga_get_fsinfo
);
1010 g_test_add_data_func("/qga/get-memory-block-info", &fix
,
1011 test_qga_get_memory_block_info
);
1012 g_test_add_data_func("/qga/get-memory-blocks", &fix
,
1013 test_qga_get_memory_blocks
);
1014 g_test_add_data_func("/qga/file-ops", &fix
, test_qga_file_ops
);
1015 g_test_add_data_func("/qga/file-write-read", &fix
, test_qga_file_write_read
);
1016 g_test_add_data_func("/qga/get-time", &fix
, test_qga_get_time
);
1017 g_test_add_data_func("/qga/invalid-id", &fix
, test_qga_invalid_id
);
1018 g_test_add_data_func("/qga/invalid-oob", &fix
, test_qga_invalid_oob
);
1019 g_test_add_data_func("/qga/invalid-cmd", &fix
, test_qga_invalid_cmd
);
1020 g_test_add_data_func("/qga/invalid-args", &fix
, test_qga_invalid_args
);
1021 g_test_add_data_func("/qga/fsfreeze-status", &fix
,
1022 test_qga_fsfreeze_status
);
1024 g_test_add_data_func("/qga/blacklist", NULL
, test_qga_blacklist
);
1025 g_test_add_data_func("/qga/config", NULL
, test_qga_config
);
1026 g_test_add_data_func("/qga/guest-exec", &fix
, test_qga_guest_exec
);
1027 g_test_add_data_func("/qga/guest-exec-invalid", &fix
,
1028 test_qga_guest_exec_invalid
);
1029 g_test_add_data_func("/qga/guest-get-osinfo", &fix
,
1030 test_qga_guest_get_osinfo
);
1031 g_test_add_data_func("/qga/guest-get-host-name", &fix
,
1032 test_qga_guest_get_host_name
);
1033 g_test_add_data_func("/qga/guest-get-timezone", &fix
,
1034 test_qga_guest_get_timezone
);
1035 g_test_add_data_func("/qga/guest-get-users", &fix
,
1036 test_qga_guest_get_users
);
1040 fixture_tear_down(&fix
, NULL
);