2 * QTest testcase for TPM TIS talking to external swtpm and swtpm migration
4 * Copyright (c) 2018 IBM Corporation
5 * with parts borrowed from migration-test.c that is:
6 * Copyright (c) 2016-2018 Red Hat, Inc. and/or its affiliates
9 * Stefan Berger <stefanb@linux.vnet.ibm.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
16 #include <glib/gstdio.h>
19 #include "qemu/module.h"
20 #include "tpm-tests.h"
22 typedef struct TestState
{
28 static void tpm_tis_swtpm_test(const void *data
)
30 const TestState
*ts
= data
;
32 tpm_test_swtpm_test(ts
->src_tpm_path
, tpm_util_tis_transfer
, "tpm-tis");
35 static void tpm_tis_swtpm_migration_test(const void *data
)
37 const TestState
*ts
= data
;
39 tpm_test_swtpm_migration_test(ts
->src_tpm_path
, ts
->dst_tpm_path
, ts
->uri
,
40 tpm_util_tis_transfer
, "tpm-tis");
43 int main(int argc
, char **argv
)
48 ts
.src_tpm_path
= g_dir_make_tmp("qemu-tpm-tis-swtpm-test.XXXXXX", NULL
);
49 ts
.dst_tpm_path
= g_dir_make_tmp("qemu-tpm-tis-swtpm-test.XXXXXX", NULL
);
50 ts
.uri
= g_strdup_printf("unix:%s/migsocket", ts
.src_tpm_path
);
52 module_call_init(MODULE_INIT_QOM
);
53 g_test_init(&argc
, &argv
, NULL
);
55 qtest_add_data_func("/tpm/tis-swtpm/test", &ts
, tpm_tis_swtpm_test
);
56 qtest_add_data_func("/tpm/tis-swtpm-migration/test", &ts
,
57 tpm_tis_swtpm_migration_test
);
60 g_rmdir(ts
.dst_tpm_path
);
61 g_free(ts
.dst_tpm_path
);
62 g_rmdir(ts
.src_tpm_path
);
63 g_free(ts
.src_tpm_path
);