From ab82d41f41f8ea459135cee47022cee713b13d24 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 25 Jan 2021 15:15:02 +0100 Subject: [PATCH] tests: storage: Replace index testing in testStorageLookup Test the actual index in the returned virStorageSource rather than the parsed one. Some tests need to be adapted as they were on failed lookup. Signed-off-by: Peter Krempa Reviewed-by: Pavel Hrdina --- tests/virstoragetest.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tests/virstoragetest.c b/tests/virstoragetest.c index c976a1c0d0..762328df9a 100644 --- a/tests/virstoragetest.c +++ b/tests/virstoragetest.c @@ -353,17 +353,6 @@ testStorageLookup(const void *args) int ret = 0; virStorageSourcePtr result; virStorageSourcePtr actualParent; - unsigned int idx; - - if (virStorageFileParseChainIndex(data->target, data->name, &idx) < 0 && - data->expIndex) { - fprintf(stderr, "call should not have failed\n"); - ret = -1; - } - if (idx != data->expIndex) { - fprintf(stderr, "index: expected %u, got %u\n", data->expIndex, idx); - ret = -1; - } result = virStorageSourceChainLookup(data->chain, data->from, data->name, data->target, &actualParent); @@ -386,6 +375,17 @@ testStorageLookup(const void *args) data->expMeta, result); ret = -1; } + if (data->expIndex > 0) { + if (!result) { + fprintf(stderr, "index: resulting lookup is empty, can't match index\n"); + ret = -1; + } else { + if (result->id != data->expIndex) { + fprintf(stderr, "index: expected %u, got %u\n", data->expIndex, result->id); + ret = -1; + } + } + } if (data->expParent != actualParent) { fprintf(stderr, "parent: expected %s, got %s\n", NULLSTR(data->expParent ? data->expParent->path : NULL), @@ -1077,13 +1077,13 @@ mymain(void) TEST_LOOKUP_TARGET(72, "vda", NULL, "vda[0]", 0, NULL, NULL, NULL); TEST_LOOKUP_TARGET(73, "vda", NULL, "vda[1]", 1, chain2->path, chain2, chain); TEST_LOOKUP_TARGET(74, "vda", chain, "vda[1]", 1, chain2->path, chain2, chain); - TEST_LOOKUP_TARGET(75, "vda", chain2, "vda[1]", 1, NULL, NULL, NULL); - TEST_LOOKUP_TARGET(76, "vda", chain3, "vda[1]", 1, NULL, NULL, NULL); + TEST_LOOKUP_TARGET(75, "vda", chain2, "vda[1]", 0, NULL, NULL, NULL); + TEST_LOOKUP_TARGET(76, "vda", chain3, "vda[1]", 0, NULL, NULL, NULL); TEST_LOOKUP_TARGET(77, "vda", NULL, "vda[2]", 2, chain3->path, chain3, chain2); TEST_LOOKUP_TARGET(78, "vda", chain, "vda[2]", 2, chain3->path, chain3, chain2); TEST_LOOKUP_TARGET(79, "vda", chain2, "vda[2]", 2, chain3->path, chain3, chain2); - TEST_LOOKUP_TARGET(80, "vda", chain3, "vda[2]", 2, NULL, NULL, NULL); - TEST_LOOKUP_TARGET(81, "vda", NULL, "vda[3]", 3, NULL, NULL, NULL); + TEST_LOOKUP_TARGET(80, "vda", chain3, "vda[2]", 0, NULL, NULL, NULL); + TEST_LOOKUP_TARGET(81, "vda", NULL, "vda[3]", 0, NULL, NULL, NULL); #define TEST_PATH_CANONICALIZE(id, PATH, EXPECT) \ do { \