mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-11 10:20:19 +01:00
178 lines
5.0 KiB
C
178 lines
5.0 KiB
C
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
/*
|
|
* test_x500name.c
|
|
*
|
|
* Test X500Name Type
|
|
*
|
|
*/
|
|
|
|
#include "testutil.h"
|
|
#include "testutil_nss.h"
|
|
|
|
static void *plContext = NULL;
|
|
|
|
static PKIX_PL_X500Name *
|
|
createX500Name(char *asciiName, PKIX_Boolean expectedToPass){
|
|
|
|
PKIX_PL_X500Name *x500Name = NULL;
|
|
PKIX_PL_String *plString = NULL;
|
|
|
|
PKIX_TEST_STD_VARS();
|
|
|
|
PKIX_TEST_EXPECT_NO_ERROR
|
|
(PKIX_PL_String_Create
|
|
(PKIX_ESCASCII, asciiName, 0, &plString, plContext));
|
|
|
|
if (expectedToPass){
|
|
PKIX_TEST_EXPECT_NO_ERROR
|
|
(PKIX_PL_X500Name_Create
|
|
(plString, &x500Name, plContext));
|
|
} else {
|
|
PKIX_TEST_EXPECT_ERROR
|
|
(PKIX_PL_X500Name_Create
|
|
(plString, &x500Name, plContext));
|
|
}
|
|
|
|
cleanup:
|
|
|
|
PKIX_TEST_DECREF_AC(plString);
|
|
|
|
PKIX_TEST_RETURN();
|
|
|
|
return (x500Name);
|
|
}
|
|
|
|
static void
|
|
createX500Names(char *goodInput, char *diffInput, char *diffInputMatch,
|
|
PKIX_PL_X500Name **goodObject,
|
|
PKIX_PL_X500Name **equalObject,
|
|
PKIX_PL_X500Name **diffObject,
|
|
PKIX_PL_X500Name **diffObjectMatch)
|
|
{
|
|
char *badAscii = "cn=yas#sir,ou=labs,o=sun,c=us";
|
|
PKIX_PL_X500Name *badObject = NULL;
|
|
|
|
subTest("PKIX_PL_X500Name_Create <goodObject>");
|
|
*goodObject = createX500Name(goodInput, PKIX_TRUE);
|
|
|
|
subTest("PKIX_PL_X500Name_Create <equalObject>");
|
|
*equalObject = createX500Name(goodInput, PKIX_TRUE);
|
|
|
|
subTest("PKIX_PL_X500Name_Create <diffObject>");
|
|
*diffObject = createX500Name(diffInput, PKIX_TRUE);
|
|
|
|
subTest("PKIX_PL_X500Name_Create <diffObjectMatch>");
|
|
*diffObjectMatch = createX500Name(diffInputMatch, PKIX_TRUE);
|
|
|
|
subTest("PKIX_PL_X500Name_Create <negative>");
|
|
badObject = createX500Name(badAscii, PKIX_FALSE);
|
|
}
|
|
|
|
static void testMatchHelper
|
|
(PKIX_PL_X500Name *goodName, PKIX_PL_X500Name *otherName, PKIX_Boolean match)
|
|
{
|
|
PKIX_Boolean cmpResult;
|
|
|
|
PKIX_TEST_STD_VARS();
|
|
|
|
PKIX_TEST_EXPECT_NO_ERROR(PKIX_PL_X500Name_Match
|
|
(goodName,
|
|
otherName,
|
|
&cmpResult,
|
|
plContext));
|
|
|
|
if ((match && !cmpResult) || (!match && cmpResult)){
|
|
testError("unexpected mismatch");
|
|
(void) printf("Actual value:\t%d\n", cmpResult);
|
|
(void) printf("Expected value:\t%d\n", match);
|
|
}
|
|
|
|
cleanup:
|
|
|
|
PKIX_TEST_RETURN();
|
|
|
|
}
|
|
|
|
static void
|
|
testMatch(void *goodObject, void *diffObject, void *diffObjectMatch)
|
|
{
|
|
subTest("PKIX_PL_X500Name_Match <match>");
|
|
testMatchHelper((PKIX_PL_X500Name *)diffObject,
|
|
(PKIX_PL_X500Name *)diffObjectMatch,
|
|
PKIX_TRUE);
|
|
|
|
subTest("PKIX_PL_X500Name_Match <non-match>");
|
|
testMatchHelper((PKIX_PL_X500Name *)goodObject,
|
|
(PKIX_PL_X500Name *)diffObject,
|
|
PKIX_FALSE);
|
|
}
|
|
|
|
static void testDestroy
|
|
(void *goodObject, void *equalObject, void *diffObject, void *diffObjectMatch)
|
|
{
|
|
PKIX_TEST_STD_VARS();
|
|
|
|
subTest("PKIX_PL_X500Name_Destroy");
|
|
|
|
PKIX_TEST_DECREF_BC(goodObject);
|
|
PKIX_TEST_DECREF_BC(equalObject);
|
|
PKIX_TEST_DECREF_BC(diffObject);
|
|
PKIX_TEST_DECREF_BC(diffObjectMatch);
|
|
|
|
cleanup:
|
|
|
|
PKIX_TEST_RETURN();
|
|
|
|
}
|
|
|
|
int test_x500name(int argc, char *argv[]) {
|
|
|
|
PKIX_PL_X500Name *goodObject = NULL;
|
|
PKIX_PL_X500Name *equalObject = NULL;
|
|
PKIX_PL_X500Name *diffObject = NULL;
|
|
PKIX_PL_X500Name *diffObjectMatch = NULL;
|
|
PKIX_UInt32 actualMinorVersion;
|
|
PKIX_UInt32 j = 0;
|
|
|
|
/* goodInput is encoded in PKIX_ESCASCII */
|
|
char *goodInput = "cn=Strauß,ou=labs,o=sun,c=us";
|
|
char *diffInput = "cn=steve,ou=labs,o=sun,c=us";
|
|
char *diffInputMatch = "Cn=SteVe,Ou=lABs,o=SUn,c=uS";
|
|
char *expectedAscii = "CN=Strauß,OU=labs,O=sun,C=us";
|
|
|
|
PKIX_TEST_STD_VARS();
|
|
|
|
startTests("X500Name");
|
|
|
|
PKIX_TEST_EXPECT_NO_ERROR(
|
|
PKIX_PL_NssContext_Create(0, PKIX_FALSE, NULL, &plContext));
|
|
|
|
createX500Names
|
|
(goodInput, diffInput, diffInputMatch,
|
|
&goodObject, &equalObject, &diffObject, &diffObjectMatch);
|
|
|
|
PKIX_TEST_EQ_HASH_TOSTR_DUP
|
|
(goodObject,
|
|
equalObject,
|
|
diffObject,
|
|
expectedAscii,
|
|
X500Name,
|
|
PKIX_TRUE);
|
|
|
|
testMatch(goodObject, diffObject, diffObjectMatch);
|
|
|
|
testDestroy(goodObject, equalObject, diffObject, diffObjectMatch);
|
|
|
|
cleanup:
|
|
|
|
PKIX_Shutdown(plContext);
|
|
|
|
PKIX_TEST_RETURN();
|
|
|
|
endTests("X500Name");
|
|
|
|
return (0);
|
|
}
|