dssenh/tests: Add CryptAcquireContextA last error check.
When container key doesn't exist yet.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=30244
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit c5bdc2408f
)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
9ef3ca8b2d
commit
239bb6cc55
|
@ -71,6 +71,19 @@ static void test_acquire_context(void)
|
||||||
|
|
||||||
/* test base DSS provider (PROV_DSS) */
|
/* test base DSS provider (PROV_DSS) */
|
||||||
|
|
||||||
|
SetLastError(0xdeadbeef);
|
||||||
|
result = CryptAcquireContextA(&hProv, NULL, NULL, PROV_DSS, 0);
|
||||||
|
if (!result)
|
||||||
|
{
|
||||||
|
todo_wine ok(GetLastError() == NTE_BAD_KEYSET, "Expected NTE_BAD_KEYSET, got %08x\n", GetLastError());
|
||||||
|
SetLastError(0xdeadbeef);
|
||||||
|
result = CryptAcquireContextA(&hProv, NULL, NULL, PROV_DSS, CRYPT_NEWKEYSET);
|
||||||
|
}
|
||||||
|
ok(result, "CryptAcquireContextA succeeded\n");
|
||||||
|
|
||||||
|
result = CryptReleaseContext(hProv, 0);
|
||||||
|
ok(result, "CryptReleaseContext failed.\n");
|
||||||
|
|
||||||
result = CryptAcquireContextA(
|
result = CryptAcquireContextA(
|
||||||
&hProv, NULL, MS_DEF_DSS_PROV_A, PROV_DSS, CRYPT_VERIFYCONTEXT);
|
&hProv, NULL, MS_DEF_DSS_PROV_A, PROV_DSS, CRYPT_VERIFYCONTEXT);
|
||||||
if(!result)
|
if(!result)
|
||||||
|
|
Loading…
Reference in New Issue