1 /* 2 * QTest migration helpers 3 * 4 * Copyright (c) 2016-2018 Red Hat, Inc. and/or its affiliates 5 * based on the vhost-user-test.c that is: 6 * Copyright (c) 2014 Virtual Open Systems Sarl. 7 * 8 * This work is licensed under the terms of the GNU GPL, version 2 or later. 9 * See the COPYING file in the top-level directory. 10 * 11 */ 12 13 #ifndef MIGRATION_HELPERS_H 14 #define MIGRATION_HELPERS_H 15 16 #include "libqtest.h" 17 18 bool migrate_watch_for_stop(QTestState *who, const char *name, 19 QDict *event, void *opaque); 20 bool migrate_watch_for_resume(QTestState *who, const char *name, 21 QDict *event, void *opaque); 22 23 G_GNUC_PRINTF(3, 4) 24 void migrate_qmp(QTestState *who, const char *uri, const char *fmt, ...); 25 26 G_GNUC_PRINTF(3, 4) 27 void migrate_incoming_qmp(QTestState *who, const char *uri, 28 const char *fmt, ...); 29 30 G_GNUC_PRINTF(3, 4) 31 void migrate_qmp_fail(QTestState *who, const char *uri, const char *fmt, ...); 32 33 void migrate_set_capability(QTestState *who, const char *capability, 34 bool value); 35 36 QDict *migrate_query(QTestState *who); 37 QDict *migrate_query_not_failed(QTestState *who); 38 39 void wait_for_migration_status(QTestState *who, 40 const char *goal, const char **ungoals); 41 42 void wait_for_migration_complete(QTestState *who); 43 44 void wait_for_migration_fail(QTestState *from, bool allow_active); 45 46 char *find_common_machine_version(const char *mtype, const char *var1, 47 const char *var2); 48 char *resolve_machine_version(const char *alias, const char *var1, 49 const char *var2); 50 #endif /* MIGRATION_HELPERS_H */ 51