From 19b55e89453ddb1a3c8a9bd75fab502b2294e774 Mon Sep 17 00:00:00 2001 From: Stefan Leichter Date: Wed, 30 Nov 2005 12:31:54 +0100 Subject: [PATCH] Fix version tests on windows 9x/ME. --- dlls/version/tests/install.c | 54 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 48 insertions(+), 6 deletions(-) diff --git a/dlls/version/tests/install.c b/dlls/version/tests/install.c index 1fed055f329..9322930bad4 100644 --- a/dlls/version/tests/install.c +++ b/dlls/version/tests/install.c @@ -43,11 +43,22 @@ static void test_find_file(void) memset(curdir, 0, MAX_PATH); memset(outBuf, 0, MAX_PATH); ret = VerFindFileA(0, "regedit", "", "", curdir, &dwCur, outBuf, &dwOut); - ok(!ret, "Wrong return value got %lx expected 0\n", ret); + switch(ret) { + case 0L: ok(dwCur == 1, "Wrong length of buffer for current location: " "got %d(%s) expected 1\n", dwCur, curdir); ok(dwOut == 1, "Wrong length of buffer for the recommended installation location: " "got %d(%s) expected 1\n", dwOut, outBuf); + break; + case VFF_BUFFTOOSMALL: + ok(dwCur == MAX_PATH, "Wrong length of buffer for current location: " + "got %d(%s) expected MAX_PATH\n", dwCur, curdir); + ok(dwOut == MAX_PATH, "Wrong length of buffer for the recommended installation location: " + "got %d(%s) expected MAX_PATH\n", dwOut, outBuf); + break; + default: + ok(0, "Got unexpected return value %lx\n", ret); + } if(!GetWindowsDirectoryA(windir, MAX_PATH)) trace("GetWindowsDirectoryA failed\n"); @@ -61,22 +72,44 @@ static void test_find_file(void) memset(curdir, 0, MAX_PATH); memset(outBuf, 0, MAX_PATH); ret = VerFindFileA(0, "regedit.exe", "", "", curdir, &dwCur, outBuf, &dwOut); - todo_wine ok(VFF_CURNEDEST == ret, "Wrong return value got %lx expected VFF_CURNEDEST\n", ret); - todo_wine ok(dwCur == 1 + strlen(windir), "Wrong length of buffer for current location: " + switch(ret) { + case VFF_CURNEDEST: + ok(dwCur == 1 + strlen(windir), "Wrong length of buffer for current location: " "got %d(%s) expected %d\n", dwCur, curdir, strlen(windir)+1); ok(dwOut == 1, "Wrong length of buffer for the recommended installation location: " "got %d(%s) expected 1\n", dwOut, outBuf); + break; + case VFF_BUFFTOOSMALL: + ok(dwCur == MAX_PATH, "Wrong length of buffer for current location: " + "got %d(%s) expected MAX_PATH\n", dwCur, curdir); + ok(dwOut == MAX_PATH, "Wrong length of buffer for the recommended installation location: " + "got %d(%s) expected MAX_PATH\n", dwOut, outBuf); + break; + default: + todo_wine ok(0, "Got unexpected return value %lx\n", ret); + } dwCur=MAX_PATH; dwOut=MAX_PATH; memset(curdir, 0, MAX_PATH); memset(outBuf, 0, MAX_PATH); ret = VerFindFileA(0, "regedit.exe", NULL, NULL, curdir, &dwCur, outBuf, &dwOut); - todo_wine ok(VFF_CURNEDEST == ret, "Wrong return value got %lx expected VFF_CURNEDEST\n", ret); - todo_wine ok(dwCur == 1 + strlen(windir), "Wrong length of buffer for current location: " + switch(ret) { + case VFF_CURNEDEST: + ok(dwCur == 1 + strlen(windir), "Wrong length of buffer for current location: " "got %d(%s) expected %d\n", dwCur, curdir, strlen(windir)+1); ok(dwOut == 1, "Wrong length of buffer for the recommended installation location: " "got %d(%s) expected 1\n", dwOut, outBuf); + break; + case VFF_BUFFTOOSMALL: + ok(dwCur == MAX_PATH, "Wrong length of buffer for current location: " + "got %d(%s) expected MAX_PATH\n", dwCur, curdir); + ok(dwOut == MAX_PATH, "Wrong length of buffer for the recommended installation location: " + "got %d(%s) expected MAX_PATH\n", dwOut, outBuf); + break; + default: + todo_wine ok(0, "Got unexpected return value %lx\n", ret); + } } } if(!GetModuleFileNameA(NULL, filename, MAX_PATH) || @@ -96,9 +129,18 @@ static void test_find_file(void) memset(outBuf, 0, MAX_PATH); memset(curdir, 0, MAX_PATH); ret = VerFindFileA(0, filename, NULL, NULL, curdir, &dwCur, outBuf, &dwOut); - todo_wine ok(VFF_CURNEDEST == ret, "Wrong return value got %lx expected VFF_CURNEDEST\n", ret); + switch(ret) { + case VFF_CURNEDEST: ok(dwOut == 1, "Wrong length of buffer for the recommended installation location" "got %d(%s) expected 1\n", dwOut, outBuf); + break; + case VFF_BUFFTOOSMALL: + ok(dwOut == MAX_PATH, "Wrong length of buffer for the recommended installation location" + "got %d(%s) expected MAX_PATH\n", dwOut, outBuf); + break; + default: + todo_wine ok(0, "Got unexpected return value %lx\n", ret); + } dwCur=MAX_PATH; dwOut=MAX_PATH; -- 2.11.4.GIT