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_args(gconstpointer fix
)
232 const TestFixture
*fixture
= fix
;
234 const gchar
*class, *desc
;
236 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-ping', "
237 "'arguments': {'foo': 42 }}");
238 g_assert_nonnull(ret
);
240 error
= qdict_get_qdict(ret
, "error");
241 class = qdict_get_try_str(error
, "class");
242 desc
= qdict_get_try_str(error
, "desc");
244 g_assert_cmpstr(class, ==, "GenericError");
245 g_assert_cmpstr(desc
, ==, "Parameter 'foo' is unexpected");
250 static void test_qga_invalid_cmd(gconstpointer fix
)
252 const TestFixture
*fixture
= fix
;
254 const gchar
*class, *desc
;
256 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-invalid-cmd'}");
257 g_assert_nonnull(ret
);
259 error
= qdict_get_qdict(ret
, "error");
260 class = qdict_get_try_str(error
, "class");
261 desc
= qdict_get_try_str(error
, "desc");
263 g_assert_cmpstr(class, ==, "CommandNotFound");
264 g_assert_cmpint(strlen(desc
), >, 0);
269 static void test_qga_info(gconstpointer fix
)
271 const TestFixture
*fixture
= fix
;
273 const gchar
*version
;
275 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-info'}");
276 g_assert_nonnull(ret
);
277 qmp_assert_no_error(ret
);
279 val
= qdict_get_qdict(ret
, "return");
280 version
= qdict_get_try_str(val
, "version");
281 g_assert_cmpstr(version
, ==, QEMU_VERSION
);
286 static void test_qga_get_vcpus(gconstpointer fix
)
288 const TestFixture
*fixture
= fix
;
291 const QListEntry
*entry
;
293 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-vcpus'}");
294 g_assert_nonnull(ret
);
295 qmp_assert_no_error(ret
);
297 /* check there is at least a cpu */
298 list
= qdict_get_qlist(ret
, "return");
299 entry
= qlist_first(list
);
300 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "online"));
301 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "logical-id"));
306 static void test_qga_get_fsinfo(gconstpointer fix
)
308 const TestFixture
*fixture
= fix
;
311 const QListEntry
*entry
;
313 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-fsinfo'}");
314 g_assert_nonnull(ret
);
315 qmp_assert_no_error(ret
);
317 /* sanity-check the response if there are any filesystems */
318 list
= qdict_get_qlist(ret
, "return");
319 entry
= qlist_first(list
);
321 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "name"));
322 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "mountpoint"));
323 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "type"));
324 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "disk"));
330 static void test_qga_get_memory_block_info(gconstpointer fix
)
332 const TestFixture
*fixture
= fix
;
336 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-memory-block-info'}");
337 g_assert_nonnull(ret
);
339 /* some systems might not expose memory block info in sysfs */
340 if (!qdict_haskey(ret
, "error")) {
341 /* check there is at least some memory */
342 val
= qdict_get_qdict(ret
, "return");
343 size
= qdict_get_int(val
, "size");
344 g_assert_cmpint(size
, >, 0);
350 static void test_qga_get_memory_blocks(gconstpointer fix
)
352 const TestFixture
*fixture
= fix
;
355 const QListEntry
*entry
;
357 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-memory-blocks'}");
358 g_assert_nonnull(ret
);
360 /* some systems might not expose memory block info in sysfs */
361 if (!qdict_haskey(ret
, "error")) {
362 list
= qdict_get_qlist(ret
, "return");
363 entry
= qlist_first(list
);
364 /* newer versions of qga may return empty list without error */
366 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "phys-index"));
367 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "online"));
374 static void test_qga_network_get_interfaces(gconstpointer fix
)
376 const TestFixture
*fixture
= fix
;
379 const QListEntry
*entry
;
381 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-network-get-interfaces'}");
382 g_assert_nonnull(ret
);
383 qmp_assert_no_error(ret
);
385 /* check there is at least an interface */
386 list
= qdict_get_qlist(ret
, "return");
387 entry
= qlist_first(list
);
388 g_assert(qdict_haskey(qobject_to_qdict(entry
->value
), "name"));
393 static void test_qga_file_ops(gconstpointer fix
)
395 const TestFixture
*fixture
= fix
;
396 const unsigned char helloworld
[] = "Hello World!\n";
398 gchar
*cmd
, *path
, *enc
;
407 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-file-open',"
408 " 'arguments': { 'path': 'foo', 'mode': 'w+' } }");
409 g_assert_nonnull(ret
);
410 qmp_assert_no_error(ret
);
411 id
= qdict_get_int(ret
, "return");
414 enc
= g_base64_encode(helloworld
, sizeof(helloworld
));
416 cmd
= g_strdup_printf("{'execute': 'guest-file-write',"
417 " 'arguments': { 'handle': %" PRId64
","
418 " 'buf-b64': '%s' } }", id
, enc
);
419 ret
= qmp_fd(fixture
->fd
, cmd
);
420 g_assert_nonnull(ret
);
421 qmp_assert_no_error(ret
);
423 val
= qdict_get_qdict(ret
, "return");
424 count
= qdict_get_int(val
, "count");
425 eof
= qdict_get_bool(val
, "eof");
426 g_assert_cmpint(count
, ==, sizeof(helloworld
));
427 g_assert_cmpint(eof
, ==, 0);
432 cmd
= g_strdup_printf("{'execute': 'guest-file-flush',"
433 " 'arguments': {'handle': %" PRId64
"} }",
435 ret
= qmp_fd(fixture
->fd
, cmd
);
440 cmd
= g_strdup_printf("{'execute': 'guest-file-close',"
441 " 'arguments': {'handle': %" PRId64
"} }",
443 ret
= qmp_fd(fixture
->fd
, cmd
);
448 path
= g_build_filename(fixture
->test_dir
, "foo", NULL
);
449 f
= fopen(path
, "r");
452 count
= fread(tmp
, 1, sizeof(tmp
), f
);
453 g_assert_cmpint(count
, ==, sizeof(helloworld
));
455 g_assert_cmpstr(tmp
, ==, (char *)helloworld
);
459 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-file-open',"
460 " 'arguments': { 'path': 'foo', 'mode': 'r' } }");
461 g_assert_nonnull(ret
);
462 qmp_assert_no_error(ret
);
463 id
= qdict_get_int(ret
, "return");
467 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
468 " 'arguments': { 'handle': %" PRId64
"} }",
470 ret
= qmp_fd(fixture
->fd
, cmd
);
471 val
= qdict_get_qdict(ret
, "return");
472 count
= qdict_get_int(val
, "count");
473 eof
= qdict_get_bool(val
, "eof");
474 b64
= qdict_get_str(val
, "buf-b64");
475 g_assert_cmpint(count
, ==, sizeof(helloworld
));
477 g_assert_cmpstr(b64
, ==, enc
);
484 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
485 " 'arguments': { 'handle': %" PRId64
"} }",
487 ret
= qmp_fd(fixture
->fd
, cmd
);
488 val
= qdict_get_qdict(ret
, "return");
489 count
= qdict_get_int(val
, "count");
490 eof
= qdict_get_bool(val
, "eof");
491 b64
= qdict_get_str(val
, "buf-b64");
492 g_assert_cmpint(count
, ==, 0);
494 g_assert_cmpstr(b64
, ==, "");
499 cmd
= g_strdup_printf("{'execute': 'guest-file-seek',"
500 " 'arguments': { 'handle': %" PRId64
", "
501 " 'offset': %d, 'whence': '%s' } }",
503 ret
= qmp_fd(fixture
->fd
, cmd
);
504 qmp_assert_no_error(ret
);
505 val
= qdict_get_qdict(ret
, "return");
506 count
= qdict_get_int(val
, "position");
507 eof
= qdict_get_bool(val
, "eof");
508 g_assert_cmpint(count
, ==, 6);
514 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
515 " 'arguments': { 'handle': %" PRId64
"} }",
517 ret
= qmp_fd(fixture
->fd
, cmd
);
518 val
= qdict_get_qdict(ret
, "return");
519 count
= qdict_get_int(val
, "count");
520 eof
= qdict_get_bool(val
, "eof");
521 b64
= qdict_get_str(val
, "buf-b64");
522 g_assert_cmpint(count
, ==, sizeof(helloworld
) - 6);
524 dec
= g_base64_decode(b64
, &count
);
525 g_assert_cmpint(count
, ==, sizeof(helloworld
) - 6);
526 g_assert_cmpmem(dec
, count
, helloworld
+ 6, sizeof(helloworld
) - 6);
533 cmd
= g_strdup_printf("{'execute': 'guest-file-close',"
534 " 'arguments': {'handle': %" PRId64
"} }",
536 ret
= qmp_fd(fixture
->fd
, cmd
);
541 static void test_qga_file_write_read(gconstpointer fix
)
543 const TestFixture
*fixture
= fix
;
544 const unsigned char helloworld
[] = "Hello World!\n";
552 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-file-open',"
553 " 'arguments': { 'path': 'foo', 'mode': 'w+' } }");
554 g_assert_nonnull(ret
);
555 qmp_assert_no_error(ret
);
556 id
= qdict_get_int(ret
, "return");
559 enc
= g_base64_encode(helloworld
, sizeof(helloworld
));
561 cmd
= g_strdup_printf("{'execute': 'guest-file-write',"
562 " 'arguments': { 'handle': %" PRId64
","
563 " 'buf-b64': '%s' } }", id
, enc
);
564 ret
= qmp_fd(fixture
->fd
, cmd
);
565 g_assert_nonnull(ret
);
566 qmp_assert_no_error(ret
);
568 val
= qdict_get_qdict(ret
, "return");
569 count
= qdict_get_int(val
, "count");
570 eof
= qdict_get_bool(val
, "eof");
571 g_assert_cmpint(count
, ==, sizeof(helloworld
));
572 g_assert_cmpint(eof
, ==, 0);
576 /* read (check implicit flush) */
577 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
578 " 'arguments': { 'handle': %" PRId64
"} }",
580 ret
= qmp_fd(fixture
->fd
, cmd
);
581 val
= qdict_get_qdict(ret
, "return");
582 count
= qdict_get_int(val
, "count");
583 eof
= qdict_get_bool(val
, "eof");
584 b64
= qdict_get_str(val
, "buf-b64");
585 g_assert_cmpint(count
, ==, 0);
587 g_assert_cmpstr(b64
, ==, "");
592 cmd
= g_strdup_printf("{'execute': 'guest-file-seek',"
593 " 'arguments': { 'handle': %" PRId64
", "
594 " 'offset': %d, 'whence': '%s' } }",
596 ret
= qmp_fd(fixture
->fd
, cmd
);
597 qmp_assert_no_error(ret
);
598 val
= qdict_get_qdict(ret
, "return");
599 count
= qdict_get_int(val
, "position");
600 eof
= qdict_get_bool(val
, "eof");
601 g_assert_cmpint(count
, ==, 0);
607 cmd
= g_strdup_printf("{'execute': 'guest-file-read',"
608 " 'arguments': { 'handle': %" PRId64
"} }",
610 ret
= qmp_fd(fixture
->fd
, cmd
);
611 val
= qdict_get_qdict(ret
, "return");
612 count
= qdict_get_int(val
, "count");
613 eof
= qdict_get_bool(val
, "eof");
614 b64
= qdict_get_str(val
, "buf-b64");
615 g_assert_cmpint(count
, ==, sizeof(helloworld
));
617 g_assert_cmpstr(b64
, ==, enc
);
623 cmd
= g_strdup_printf("{'execute': 'guest-file-close',"
624 " 'arguments': {'handle': %" PRId64
"} }",
626 ret
= qmp_fd(fixture
->fd
, cmd
);
631 static void test_qga_get_time(gconstpointer fix
)
633 const TestFixture
*fixture
= fix
;
637 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-get-time'}");
638 g_assert_nonnull(ret
);
639 qmp_assert_no_error(ret
);
641 time
= qdict_get_int(ret
, "return");
642 g_assert_cmpint(time
, >, 0);
647 static void test_qga_blacklist(gconstpointer data
)
651 const gchar
*class, *desc
;
653 fixture_setup(&fix
, "-b guest-ping,guest-get-time", NULL
);
655 /* check blacklist */
656 ret
= qmp_fd(fix
.fd
, "{'execute': 'guest-ping'}");
657 g_assert_nonnull(ret
);
658 error
= qdict_get_qdict(ret
, "error");
659 class = qdict_get_try_str(error
, "class");
660 desc
= qdict_get_try_str(error
, "desc");
661 g_assert_cmpstr(class, ==, "GenericError");
662 g_assert_nonnull(g_strstr_len(desc
, -1, "has been disabled"));
665 ret
= qmp_fd(fix
.fd
, "{'execute': 'guest-get-time'}");
666 g_assert_nonnull(ret
);
667 error
= qdict_get_qdict(ret
, "error");
668 class = qdict_get_try_str(error
, "class");
669 desc
= qdict_get_try_str(error
, "desc");
670 g_assert_cmpstr(class, ==, "GenericError");
671 g_assert_nonnull(g_strstr_len(desc
, -1, "has been disabled"));
674 /* check something work */
675 ret
= qmp_fd(fix
.fd
, "{'execute': 'guest-get-fsinfo'}");
676 qmp_assert_no_error(ret
);
679 fixture_tear_down(&fix
, NULL
);
682 static void test_qga_config(gconstpointer data
)
684 GError
*error
= NULL
;
685 char *cwd
, *cmd
, *out
, *err
, *str
, **strv
, **argv
= NULL
;
691 cwd
= g_get_current_dir();
692 cmd
= g_strdup_printf("%s%cqemu-ga -D",
693 cwd
, G_DIR_SEPARATOR
);
695 g_shell_parse_argv(cmd
, NULL
, &argv
, &error
);
697 g_assert_no_error(error
);
699 env
[0] = g_strdup_printf("QGA_CONF=tests%cdata%ctest-qga-config",
700 G_DIR_SEPARATOR
, G_DIR_SEPARATOR
);
702 g_spawn_sync(NULL
, argv
, env
, 0,
703 NULL
, NULL
, &out
, &err
, &status
, &error
);
706 g_assert_no_error(error
);
707 g_assert_cmpstr(err
, ==, "");
708 g_assert_cmpint(status
, ==, 0);
710 kf
= g_key_file_new();
711 g_key_file_load_from_data(kf
, out
, -1, G_KEY_FILE_NONE
, &error
);
712 g_assert_no_error(error
);
714 str
= g_key_file_get_start_group(kf
);
715 g_assert_cmpstr(str
, ==, "general");
718 g_assert_false(g_key_file_get_boolean(kf
, "general", "daemon", &error
));
719 g_assert_no_error(error
);
721 str
= g_key_file_get_string(kf
, "general", "method", &error
);
722 g_assert_no_error(error
);
723 g_assert_cmpstr(str
, ==, "virtio-serial");
726 str
= g_key_file_get_string(kf
, "general", "path", &error
);
727 g_assert_no_error(error
);
728 g_assert_cmpstr(str
, ==, "/path/to/org.qemu.guest_agent.0");
731 str
= g_key_file_get_string(kf
, "general", "pidfile", &error
);
732 g_assert_no_error(error
);
733 g_assert_cmpstr(str
, ==, "/var/foo/qemu-ga.pid");
736 str
= g_key_file_get_string(kf
, "general", "statedir", &error
);
737 g_assert_no_error(error
);
738 g_assert_cmpstr(str
, ==, "/var/state");
741 g_assert_true(g_key_file_get_boolean(kf
, "general", "verbose", &error
));
742 g_assert_no_error(error
);
744 strv
= g_key_file_get_string_list(kf
, "general", "blacklist", &n
, &error
);
745 g_assert_cmpint(n
, ==, 2);
746 #if GLIB_CHECK_VERSION(2, 44, 0)
747 g_assert_true(g_strv_contains((const char * const *)strv
,
749 g_assert_true(g_strv_contains((const char * const *)strv
,
752 g_assert_no_error(error
);
761 static void test_qga_fsfreeze_status(gconstpointer fix
)
763 const TestFixture
*fixture
= fix
;
767 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-fsfreeze-status'}");
768 g_assert_nonnull(ret
);
769 qmp_assert_no_error(ret
);
771 status
= qdict_get_try_str(ret
, "return");
772 g_assert_cmpstr(status
, ==, "thawed");
777 static void test_qga_guest_exec(gconstpointer fix
)
779 const TestFixture
*fixture
= fix
;
783 int64_t pid
, now
, exitcode
;
788 /* exec 'echo foo bar' */
789 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-exec', 'arguments': {"
790 " 'path': '/bin/echo', 'arg': [ '-n', '\" test_str \"' ],"
791 " 'capture-output': true } }");
792 g_assert_nonnull(ret
);
793 qmp_assert_no_error(ret
);
794 val
= qdict_get_qdict(ret
, "return");
795 pid
= qdict_get_int(val
, "pid");
796 g_assert_cmpint(pid
, >, 0);
799 /* wait for completion */
800 now
= g_get_monotonic_time();
801 cmd
= g_strdup_printf("{'execute': 'guest-exec-status',"
802 " 'arguments': { 'pid': %" PRId64
" } }", pid
);
804 ret
= qmp_fd(fixture
->fd
, cmd
);
805 g_assert_nonnull(ret
);
806 val
= qdict_get_qdict(ret
, "return");
807 exited
= qdict_get_bool(val
, "exited");
812 g_get_monotonic_time() < now
+ 5 * G_TIME_SPAN_SECOND
);
817 exitcode
= qdict_get_int(val
, "exitcode");
818 g_assert_cmpint(exitcode
, ==, 0);
819 out
= qdict_get_str(val
, "out-data");
820 decoded
= g_base64_decode(out
, &len
);
821 g_assert_cmpint(len
, ==, 12);
822 g_assert_cmpstr((char *)decoded
, ==, "\" test_str \"");
827 static void test_qga_guest_exec_invalid(gconstpointer fix
)
829 const TestFixture
*fixture
= fix
;
831 const gchar
*class, *desc
;
833 /* invalid command */
834 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-exec', 'arguments': {"
835 " 'path': '/bin/invalid-cmd42' } }");
836 g_assert_nonnull(ret
);
837 error
= qdict_get_qdict(ret
, "error");
838 g_assert_nonnull(error
);
839 class = qdict_get_str(error
, "class");
840 desc
= qdict_get_str(error
, "desc");
841 g_assert_cmpstr(class, ==, "GenericError");
842 g_assert_cmpint(strlen(desc
), >, 0);
846 ret
= qmp_fd(fixture
->fd
, "{'execute': 'guest-exec-status',"
847 " 'arguments': { 'pid': 0 } }");
848 g_assert_nonnull(ret
);
849 error
= qdict_get_qdict(ret
, "error");
850 g_assert_nonnull(error
);
851 class = qdict_get_str(error
, "class");
852 desc
= qdict_get_str(error
, "desc");
853 g_assert_cmpstr(class, ==, "GenericError");
854 g_assert_cmpint(strlen(desc
), >, 0);
858 static void test_qga_guest_get_osinfo(gconstpointer data
)
865 cwd
= g_get_current_dir();
866 env
[0] = g_strdup_printf(
867 "QGA_OS_RELEASE=%s%ctests%cdata%ctest-qga-os-release",
868 cwd
, G_DIR_SEPARATOR
, G_DIR_SEPARATOR
, G_DIR_SEPARATOR
);
871 fixture_setup(&fixture
, NULL
, env
);
873 ret
= qmp_fd(fixture
.fd
, "{'execute': 'guest-get-osinfo'}");
874 g_assert_nonnull(ret
);
875 qmp_assert_no_error(ret
);
877 val
= qdict_get_qdict(ret
, "return");
879 str
= qdict_get_try_str(val
, "id");
880 g_assert_nonnull(str
);
881 g_assert_cmpstr(str
, ==, "qemu-ga-test");
883 str
= qdict_get_try_str(val
, "name");
884 g_assert_nonnull(str
);
885 g_assert_cmpstr(str
, ==, "QEMU-GA");
887 str
= qdict_get_try_str(val
, "pretty-name");
888 g_assert_nonnull(str
);
889 g_assert_cmpstr(str
, ==, "QEMU Guest Agent test");
891 str
= qdict_get_try_str(val
, "version");
892 g_assert_nonnull(str
);
893 g_assert_cmpstr(str
, ==, "Test 1");
895 str
= qdict_get_try_str(val
, "version-id");
896 g_assert_nonnull(str
);
897 g_assert_cmpstr(str
, ==, "1");
899 str
= qdict_get_try_str(val
, "variant");
900 g_assert_nonnull(str
);
901 g_assert_cmpstr(str
, ==, "Unit test \"'$`\\ and \\\\ etc.");
903 str
= qdict_get_try_str(val
, "variant-id");
904 g_assert_nonnull(str
);
905 g_assert_cmpstr(str
, ==, "unit-test");
909 fixture_tear_down(&fixture
, NULL
);
912 int main(int argc
, char **argv
)
917 setlocale (LC_ALL
, "");
918 g_test_init(&argc
, &argv
, NULL
);
919 fixture_setup(&fix
, NULL
, NULL
);
921 g_test_add_data_func("/qga/sync-delimited", &fix
, test_qga_sync_delimited
);
922 g_test_add_data_func("/qga/sync", &fix
, test_qga_sync
);
923 g_test_add_data_func("/qga/ping", &fix
, test_qga_ping
);
924 g_test_add_data_func("/qga/info", &fix
, test_qga_info
);
925 g_test_add_data_func("/qga/network-get-interfaces", &fix
,
926 test_qga_network_get_interfaces
);
927 if (!access("/sys/devices/system/cpu/cpu0", F_OK
)) {
928 g_test_add_data_func("/qga/get-vcpus", &fix
, test_qga_get_vcpus
);
930 g_test_add_data_func("/qga/get-fsinfo", &fix
, test_qga_get_fsinfo
);
931 g_test_add_data_func("/qga/get-memory-block-info", &fix
,
932 test_qga_get_memory_block_info
);
933 g_test_add_data_func("/qga/get-memory-blocks", &fix
,
934 test_qga_get_memory_blocks
);
935 g_test_add_data_func("/qga/file-ops", &fix
, test_qga_file_ops
);
936 g_test_add_data_func("/qga/file-write-read", &fix
, test_qga_file_write_read
);
937 g_test_add_data_func("/qga/get-time", &fix
, test_qga_get_time
);
938 g_test_add_data_func("/qga/invalid-cmd", &fix
, test_qga_invalid_cmd
);
939 g_test_add_data_func("/qga/invalid-args", &fix
, test_qga_invalid_args
);
940 g_test_add_data_func("/qga/fsfreeze-status", &fix
,
941 test_qga_fsfreeze_status
);
943 g_test_add_data_func("/qga/blacklist", NULL
, test_qga_blacklist
);
944 g_test_add_data_func("/qga/config", NULL
, test_qga_config
);
945 g_test_add_data_func("/qga/guest-exec", &fix
, test_qga_guest_exec
);
946 g_test_add_data_func("/qga/guest-exec-invalid", &fix
,
947 test_qga_guest_exec_invalid
);
948 g_test_add_data_func("/qga/guest-get-osinfo", &fix
,
949 test_qga_guest_get_osinfo
);
953 fixture_tear_down(&fix
, NULL
);