crypt32: Implement CertAddCertificateLinkToStore on top of CertAddCertificateContextToStore.

This commit is contained in:
Juan Lang 2010-05-14 15:48:18 -07:00 committed by Alexandre Julliard
parent 99b9e1ae36
commit d728169d97
2 changed files with 7 additions and 12 deletions

View File

@ -113,10 +113,12 @@ BOOL WINAPI CertAddCertificateLinkToStore(HCERTSTORE hCertStore,
PCCERT_CONTEXT pCertContext, DWORD dwAddDisposition, PCCERT_CONTEXT pCertContext, DWORD dwAddDisposition,
PCCERT_CONTEXT *ppCertContext) PCCERT_CONTEXT *ppCertContext)
{ {
static int calls;
PWINECRYPT_CERTSTORE store = (PWINECRYPT_CERTSTORE)hCertStore; PWINECRYPT_CERTSTORE store = (PWINECRYPT_CERTSTORE)hCertStore;
FIXME("(%p, %p, %08x, %p)\n", hCertStore, pCertContext, dwAddDisposition, if (!(calls++))
ppCertContext); FIXME("(%p, %p, %08x, %p): semi-stub\n", hCertStore, pCertContext,
dwAddDisposition, ppCertContext);
if (store->dwMagic != WINE_CRYPTCERTSTORE_MAGIC) if (store->dwMagic != WINE_CRYPTCERTSTORE_MAGIC)
return FALSE; return FALSE;
if (store->type == StoreTypeCollection) if (store->type == StoreTypeCollection)
@ -124,7 +126,8 @@ BOOL WINAPI CertAddCertificateLinkToStore(HCERTSTORE hCertStore,
SetLastError(E_INVALIDARG); SetLastError(E_INVALIDARG);
return FALSE; return FALSE;
} }
return FALSE; return CertAddCertificateContextToStore(hCertStore, pCertContext,
dwAddDisposition, ppCertContext);
} }
PCCERT_CONTEXT WINAPI CertCreateCertificateContext(DWORD dwCertEncodingType, PCCERT_CONTEXT WINAPI CertCreateCertificateContext(DWORD dwCertEncodingType,

View File

@ -2078,7 +2078,6 @@ static void compareStore(HCERTSTORE store, LPCSTR name, const BYTE *pb,
{ {
ret = CertSaveStore(store, X509_ASN_ENCODING, CERT_STORE_SAVE_AS_STORE, ret = CertSaveStore(store, X509_ASN_ENCODING, CERT_STORE_SAVE_AS_STORE,
CERT_STORE_SAVE_TO_MEMORY, &blob, 0); CERT_STORE_SAVE_TO_MEMORY, &blob, 0);
ok(ret, "CertSaveStore failed: %08x\n", GetLastError());
ok(!memcmp(pb, blob.pbData, cb), "%s: unexpected value\n", name); ok(!memcmp(pb, blob.pbData, cb), "%s: unexpected value\n", name);
HeapFree(GetProcessHeap(), 0, blob.pbData); HeapFree(GetProcessHeap(), 0, blob.pbData);
} }
@ -2151,19 +2150,16 @@ static void testAddCertificateLink(void)
CERT_STORE_CREATE_NEW_FLAG, NULL); CERT_STORE_CREATE_NEW_FLAG, NULL);
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ret = CertAddCertificateLinkToStore(store1, NULL, 0, NULL); ret = CertAddCertificateLinkToStore(store1, NULL, 0, NULL);
todo_wine
ok(!ret && GetLastError() == E_INVALIDARG, ok(!ret && GetLastError() == E_INVALIDARG,
"expected E_INVALIDARG, got %08x\n", GetLastError()); "expected E_INVALIDARG, got %08x\n", GetLastError());
source = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert, source = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert,
sizeof(bigCert)); sizeof(bigCert));
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ret = CertAddCertificateLinkToStore(store1, source, 0, NULL); ret = CertAddCertificateLinkToStore(store1, source, 0, NULL);
todo_wine
ok(!ret && GetLastError() == E_INVALIDARG, ok(!ret && GetLastError() == E_INVALIDARG,
"expected E_INVALIDARG, got %08x\n", GetLastError()); "expected E_INVALIDARG, got %08x\n", GetLastError());
ret = CertAddCertificateLinkToStore(store1, source, CERT_STORE_ADD_ALWAYS, ret = CertAddCertificateLinkToStore(store1, source, CERT_STORE_ADD_ALWAYS,
NULL); NULL);
todo_wine
ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError()); ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError());
if (0) if (0)
{ {
@ -2179,7 +2175,6 @@ static void testAddCertificateLink(void)
CERT_STORE_CREATE_NEW_FLAG, NULL); CERT_STORE_CREATE_NEW_FLAG, NULL);
ret = CertAddCertificateLinkToStore(store1, source, CERT_STORE_ADD_ALWAYS, ret = CertAddCertificateLinkToStore(store1, source, CERT_STORE_ADD_ALWAYS,
&linked); &linked);
todo_wine
ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError()); ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError());
if (ret) if (ret)
{ {
@ -2252,7 +2247,6 @@ static void testAddCertificateLink(void)
CERT_STORE_CREATE_NEW_FLAG, NULL); CERT_STORE_CREATE_NEW_FLAG, NULL);
ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS, ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS,
&linked); &linked);
todo_wine
ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError()); ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError());
if (ret) if (ret)
{ {
@ -2313,7 +2307,6 @@ static void testAddCertificateLink(void)
/* Test adding a link to a file store. */ /* Test adding a link to a file store. */
ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS, ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS,
&linked); &linked);
todo_wine
ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError()); ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError());
if (ret) if (ret)
{ {
@ -2381,13 +2374,13 @@ static void testAddCertificateLink(void)
ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS, ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS,
&linked); &linked);
todo_wine
ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError()); ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError());
if (ret) if (ret)
{ {
ok(linked->hCertStore == store2, "unexpected store"); ok(linked->hCertStore == store2, "unexpected store");
ret = pCertControlStore(store2, 0, CERT_STORE_CTRL_COMMIT, NULL); ret = pCertControlStore(store2, 0, CERT_STORE_CTRL_COMMIT, NULL);
ok(ret, "CertControlStore failed: %d\n", ret); ok(ret, "CertControlStore failed: %d\n", ret);
todo_wine
compareStore(store2, "file store -> system store", compareStore(store2, "file store -> system store",
serializedStoreWithCertAndHash, serializedStoreWithCertAndHash,
sizeof(serializedStoreWithCertAndHash)); sizeof(serializedStoreWithCertAndHash));
@ -2405,7 +2398,6 @@ static void testAddCertificateLink(void)
ok(store2 != NULL, "CertOpenStore failed: %08x\n", GetLastError()); ok(store2 != NULL, "CertOpenStore failed: %08x\n", GetLastError());
ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS, ret = CertAddCertificateLinkToStore(store2, source, CERT_STORE_ADD_ALWAYS,
&linked); &linked);
todo_wine
ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError()); ok(ret, "CertAddCertificateLinkToStore failed: %08x\n", GetLastError());
if (ret) if (ret)
{ {