mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
tests/qtest/migration: Split file tests
Split the file tests from migration-test.c. These are being moved to their own file due to being special enough compared with the regular stream migration. There is also the entire mapped-ram feature which depends on file migration. Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
parent
5e87cf322f
commit
d8057eb305
4 changed files with 341 additions and 310 deletions
|
@ -215,93 +215,6 @@ static void test_ignore_shared(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
static void test_precopy_file(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s", tmpfs,
|
||||
FILE_TEST_FILENAME);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
};
|
||||
|
||||
test_file_common(&args, true);
|
||||
}
|
||||
|
||||
#ifndef _WIN32
|
||||
static void fdset_add_fds(QTestState *qts, const char *file, int flags,
|
||||
int num_fds, bool direct_io)
|
||||
{
|
||||
for (int i = 0; i < num_fds; i++) {
|
||||
int fd;
|
||||
|
||||
#ifdef O_DIRECT
|
||||
/* only secondary channels can use direct-io */
|
||||
if (direct_io && i != 0) {
|
||||
flags |= O_DIRECT;
|
||||
}
|
||||
#endif
|
||||
|
||||
fd = open(file, flags, 0660);
|
||||
assert(fd != -1);
|
||||
|
||||
qtest_qmp_fds_assert_success(qts, &fd, 1, "{'execute': 'add-fd', "
|
||||
"'arguments': {'fdset-id': 1}}");
|
||||
close(fd);
|
||||
}
|
||||
}
|
||||
|
||||
static void *migrate_hook_start_file_offset_fdset(QTestState *from,
|
||||
QTestState *to)
|
||||
{
|
||||
g_autofree char *file = g_strdup_printf("%s/%s", tmpfs, FILE_TEST_FILENAME);
|
||||
|
||||
fdset_add_fds(from, file, O_WRONLY, 1, false);
|
||||
fdset_add_fds(to, file, O_RDONLY, 1, false);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void test_precopy_file_offset_fdset(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:/dev/fdset/1,offset=%d",
|
||||
FILE_TEST_OFFSET);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_file_offset_fdset,
|
||||
};
|
||||
|
||||
test_file_common(&args, false);
|
||||
}
|
||||
#endif
|
||||
|
||||
static void test_precopy_file_offset(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s,offset=%d", tmpfs,
|
||||
FILE_TEST_FILENAME,
|
||||
FILE_TEST_OFFSET);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
};
|
||||
|
||||
test_file_common(&args, false);
|
||||
}
|
||||
|
||||
static void test_precopy_file_offset_bad(void)
|
||||
{
|
||||
/* using a value not supported by qemu_strtosz() */
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s,offset=0x20M",
|
||||
tmpfs, FILE_TEST_FILENAME);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.result = MIG_TEST_QMP_ERROR,
|
||||
};
|
||||
|
||||
test_file_common(&args, false);
|
||||
}
|
||||
|
||||
static void *migrate_hook_start_mode_reboot(QTestState *from, QTestState *to)
|
||||
{
|
||||
migrate_set_parameter_str(from, "mode", "cpr-reboot");
|
||||
|
@ -313,14 +226,6 @@ static void *migrate_hook_start_mode_reboot(QTestState *from, QTestState *to)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static void *migrate_hook_start_mapped_ram(QTestState *from, QTestState *to)
|
||||
{
|
||||
migrate_set_capability(from, "mapped-ram", true);
|
||||
migrate_set_capability(to, "mapped-ram", true);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void test_mode_reboot(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s", tmpfs,
|
||||
|
@ -335,190 +240,6 @@ static void test_mode_reboot(void)
|
|||
test_file_common(&args, true);
|
||||
}
|
||||
|
||||
static void test_precopy_file_mapped_ram_live(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s", tmpfs,
|
||||
FILE_TEST_FILENAME);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_mapped_ram,
|
||||
};
|
||||
|
||||
test_file_common(&args, false);
|
||||
}
|
||||
|
||||
static void test_precopy_file_mapped_ram(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s", tmpfs,
|
||||
FILE_TEST_FILENAME);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_mapped_ram,
|
||||
};
|
||||
|
||||
test_file_common(&args, true);
|
||||
}
|
||||
|
||||
static void *migrate_hook_start_multifd_mapped_ram(QTestState *from,
|
||||
QTestState *to)
|
||||
{
|
||||
migrate_hook_start_mapped_ram(from, to);
|
||||
|
||||
migrate_set_parameter_int(from, "multifd-channels", 4);
|
||||
migrate_set_parameter_int(to, "multifd-channels", 4);
|
||||
|
||||
migrate_set_capability(from, "multifd", true);
|
||||
migrate_set_capability(to, "multifd", true);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void test_multifd_file_mapped_ram_live(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s", tmpfs,
|
||||
FILE_TEST_FILENAME);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_multifd_mapped_ram,
|
||||
};
|
||||
|
||||
test_file_common(&args, false);
|
||||
}
|
||||
|
||||
static void test_multifd_file_mapped_ram(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s", tmpfs,
|
||||
FILE_TEST_FILENAME);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_multifd_mapped_ram,
|
||||
};
|
||||
|
||||
test_file_common(&args, true);
|
||||
}
|
||||
|
||||
static void *migrate_hook_start_multifd_mapped_ram_dio(QTestState *from,
|
||||
QTestState *to)
|
||||
{
|
||||
migrate_hook_start_multifd_mapped_ram(from, to);
|
||||
|
||||
migrate_set_parameter_bool(from, "direct-io", true);
|
||||
migrate_set_parameter_bool(to, "direct-io", true);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void test_multifd_file_mapped_ram_dio(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:%s/%s", tmpfs,
|
||||
FILE_TEST_FILENAME);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_multifd_mapped_ram_dio,
|
||||
};
|
||||
|
||||
if (!probe_o_direct_support(tmpfs)) {
|
||||
g_test_skip("Filesystem does not support O_DIRECT");
|
||||
return;
|
||||
}
|
||||
|
||||
test_file_common(&args, true);
|
||||
}
|
||||
|
||||
#ifndef _WIN32
|
||||
static void migrate_hook_end_multifd_mapped_ram_fdset(QTestState *from,
|
||||
QTestState *to,
|
||||
void *opaque)
|
||||
{
|
||||
QDict *resp;
|
||||
QList *fdsets;
|
||||
|
||||
/*
|
||||
* Remove the fdsets after migration, otherwise a second migration
|
||||
* would fail due fdset reuse.
|
||||
*/
|
||||
qtest_qmp_assert_success(from, "{'execute': 'remove-fd', "
|
||||
"'arguments': { 'fdset-id': 1}}");
|
||||
|
||||
/*
|
||||
* Make sure no fdsets are left after migration, otherwise a
|
||||
* second migration would fail due fdset reuse.
|
||||
*/
|
||||
resp = qtest_qmp(from, "{'execute': 'query-fdsets', "
|
||||
"'arguments': {}}");
|
||||
g_assert(qdict_haskey(resp, "return"));
|
||||
fdsets = qdict_get_qlist(resp, "return");
|
||||
g_assert(fdsets && qlist_empty(fdsets));
|
||||
qobject_unref(resp);
|
||||
}
|
||||
|
||||
static void *migrate_hook_start_multifd_mapped_ram_fdset_dio(QTestState *from,
|
||||
QTestState *to)
|
||||
{
|
||||
g_autofree char *file = g_strdup_printf("%s/%s", tmpfs, FILE_TEST_FILENAME);
|
||||
|
||||
fdset_add_fds(from, file, O_WRONLY, 2, true);
|
||||
fdset_add_fds(to, file, O_RDONLY, 2, true);
|
||||
|
||||
migrate_hook_start_multifd_mapped_ram(from, to);
|
||||
migrate_set_parameter_bool(from, "direct-io", true);
|
||||
migrate_set_parameter_bool(to, "direct-io", true);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void *migrate_hook_start_multifd_mapped_ram_fdset(QTestState *from,
|
||||
QTestState *to)
|
||||
{
|
||||
g_autofree char *file = g_strdup_printf("%s/%s", tmpfs, FILE_TEST_FILENAME);
|
||||
|
||||
fdset_add_fds(from, file, O_WRONLY, 2, false);
|
||||
fdset_add_fds(to, file, O_RDONLY, 2, false);
|
||||
|
||||
migrate_hook_start_multifd_mapped_ram(from, to);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void test_multifd_file_mapped_ram_fdset(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:/dev/fdset/1,offset=%d",
|
||||
FILE_TEST_OFFSET);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_multifd_mapped_ram_fdset,
|
||||
.end_hook = migrate_hook_end_multifd_mapped_ram_fdset,
|
||||
};
|
||||
|
||||
test_file_common(&args, true);
|
||||
}
|
||||
|
||||
static void test_multifd_file_mapped_ram_fdset_dio(void)
|
||||
{
|
||||
g_autofree char *uri = g_strdup_printf("file:/dev/fdset/1,offset=%d",
|
||||
FILE_TEST_OFFSET);
|
||||
MigrateCommon args = {
|
||||
.connect_uri = uri,
|
||||
.listen_uri = "defer",
|
||||
.start_hook = migrate_hook_start_multifd_mapped_ram_fdset_dio,
|
||||
.end_hook = migrate_hook_end_multifd_mapped_ram_fdset,
|
||||
};
|
||||
|
||||
if (!probe_o_direct_support(tmpfs)) {
|
||||
g_test_skip("Filesystem does not support O_DIRECT");
|
||||
return;
|
||||
}
|
||||
|
||||
test_file_common(&args, true);
|
||||
}
|
||||
#endif /* !_WIN32 */
|
||||
|
||||
static void test_precopy_tcp_plain(void)
|
||||
{
|
||||
MigrateCommon args = {
|
||||
|
@ -1500,6 +1221,7 @@ int main(int argc, char **argv)
|
|||
migration_test_add_tls(env);
|
||||
migration_test_add_compression(env);
|
||||
migration_test_add_postcopy(env);
|
||||
migration_test_add_file(env);
|
||||
|
||||
migration_test_add("/migration/bad_dest", test_baddest);
|
||||
#ifndef _WIN32
|
||||
|
@ -1515,17 +1237,6 @@ int main(int argc, char **argv)
|
|||
|
||||
migration_test_add("/migration/precopy/unix/plain",
|
||||
test_precopy_unix_plain);
|
||||
migration_test_add("/migration/precopy/file",
|
||||
test_precopy_file);
|
||||
migration_test_add("/migration/precopy/file/offset",
|
||||
test_precopy_file_offset);
|
||||
#ifndef _WIN32
|
||||
migration_test_add("/migration/precopy/file/offset/fdset",
|
||||
test_precopy_file_offset_fdset);
|
||||
#endif
|
||||
migration_test_add("/migration/precopy/file/offset/bad",
|
||||
test_precopy_file_offset_bad);
|
||||
|
||||
/*
|
||||
* Our CI system has problems with shared memory.
|
||||
* Don't run this test until we find a workaround.
|
||||
|
@ -1534,26 +1245,6 @@ int main(int argc, char **argv)
|
|||
migration_test_add("/migration/mode/reboot", test_mode_reboot);
|
||||
}
|
||||
|
||||
migration_test_add("/migration/precopy/file/mapped-ram",
|
||||
test_precopy_file_mapped_ram);
|
||||
migration_test_add("/migration/precopy/file/mapped-ram/live",
|
||||
test_precopy_file_mapped_ram_live);
|
||||
|
||||
migration_test_add("/migration/multifd/file/mapped-ram",
|
||||
test_multifd_file_mapped_ram);
|
||||
migration_test_add("/migration/multifd/file/mapped-ram/live",
|
||||
test_multifd_file_mapped_ram_live);
|
||||
|
||||
migration_test_add("/migration/multifd/file/mapped-ram/dio",
|
||||
test_multifd_file_mapped_ram_dio);
|
||||
|
||||
#ifndef _WIN32
|
||||
migration_test_add("/migration/multifd/file/mapped-ram/fdset",
|
||||
test_multifd_file_mapped_ram_fdset);
|
||||
migration_test_add("/migration/multifd/file/mapped-ram/fdset/dio",
|
||||
test_multifd_file_mapped_ram_fdset_dio);
|
||||
#endif
|
||||
|
||||
migration_test_add("/migration/precopy/tcp/plain", test_precopy_tcp_plain);
|
||||
|
||||
migration_test_add("/migration/precopy/tcp/plain/switchover-ack",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue