/base/useriam/pin_auth/test/unittest/src/ |
H A D | inputer_get_data_stub_test.cpp | 64 std::vector<uint8_t> testChallenge = {2, 3, 4, 5, 6}; in HWTEST_F() local 81 EXPECT_TRUE(data.WriteUInt8Vector(testChallenge)); in HWTEST_F() 125 std::vector<uint8_t> testChallenge = {2, 3, 4, 5, 6}; in HWTEST_F() local 156 EXPECT_TRUE(data.WriteUInt8Vector(testChallenge)); in HWTEST_F() 171 std::vector<uint8_t> testChallenge = {2, 3, 4, 5, 6}; in HWTEST_F() local 208 EXPECT_TRUE(data4.WriteUInt8Vector(testChallenge)); in HWTEST_F() 216 EXPECT_TRUE(data5.WriteUInt8Vector(testChallenge)); in HWTEST_F()
|
/base/useriam/user_auth_framework/test/unittest/services/src/ |
H A D | user_auth_stub_test.cpp | 273 std::vector<uint8_t> testChallenge = {1, 2, 4, 5}; in HWTEST_F() local 284 [&testChallenge, &testAuthType, &testAtl, &testContextId, &testApiVersion](int32_t apiVersion, in HWTEST_F() 288 EXPECT_THAT(challenge, ElementsAreArray(testChallenge)); in HWTEST_F() 310 EXPECT_TRUE(data.WriteUInt8Vector(testChallenge)); in HWTEST_F() 340 std::vector<uint8_t> testChallenge = {1, 2, 5, 9}; in HWTEST_F() local 351 [&testUserId, &testChallenge, &testAuthType, &testAtl, &testContextId](AuthParamInner &authParam, in HWTEST_F() 354 EXPECT_THAT(authParam.challenge, ElementsAreArray(testChallenge)); in HWTEST_F() 376 EXPECT_TRUE(data.WriteUInt8Vector(testChallenge)); in HWTEST_F() 406 std::vector<uint8_t> testChallenge = {1, 2, 5, 8, 9}; in HWTEST_F() local 416 [&testChallenge, in HWTEST_F() [all...] |
H A D | user_auth_service_test.cpp | 375 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; in HWTEST_F() local 393 uint64_t contextId = service.Auth(testApiVersion, testChallenge, testAuthType, in HWTEST_F() 403 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; in HWTEST_F() local 409 uint64_t contextId = service.Auth(testApiVersion, testChallenge, testAuthType, in HWTEST_F() 418 contextId = service.Auth(testApiVersion, testChallenge, testAuthType, testAuthTrustLevel, callbackInterface); in HWTEST_F() 423 contextId = service.Auth(testApiVersion, testChallenge, testAuthType, testAuthTrustLevel, callbackInterface); in HWTEST_F() 432 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; in HWTEST_F() local 440 uint64_t contextId = service.Auth(testApiVersion, testChallenge, testAuthType, in HWTEST_F() 445 contextId = service.Auth(testApiVersion, testChallenge, testAuthType, testAuthTrustLevel, callbackInterface); in HWTEST_F() 452 contextId = service.Auth(testApiVersion, testChallenge, testAuthTyp in HWTEST_F() 517 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; HWTEST_F() local 655 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; HWTEST_F() local 673 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; HWTEST_F() local 721 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; HWTEST_F() local [all...] |
H A D | user_idm_stub_test.cpp | 66 std::vector<uint8_t> testChallenge = {1, 2, 8, 4}; in HWTEST_F() local 72 [&testUserId, &testChallenge](int32_t userId, std::vector<uint8_t> &challenge) { in HWTEST_F() 74 challenge = testChallenge; in HWTEST_F() 91 EXPECT_THAT(challenge, ElementsAreArray(testChallenge)); in HWTEST_F()
|
H A D | user_idm_service_test.cpp | 60 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; in HWTEST_F() local 66 [&testChallenge](int32_t userId, std::vector<uint8_t> &challenge) { in HWTEST_F() 67 challenge = testChallenge; in HWTEST_F() 75 EXPECT_THAT(challenge, ElementsAreArray(testChallenge)); in HWTEST_F() 83 std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; in HWTEST_F() local
|
/base/useriam/user_auth_framework/test/unittest/inner_api/src/ |
H A D | user_auth_client_test.cpp | 232 std::vector<uint8_t> testChallenge = {1, 2, 3, 4, 3, 2, 1, 0}; in HWTEST_F() local 236 uint64_t contextId = UserAuthClientImpl::Instance().BeginNorthAuthentication(testApiVersion, testChallenge, in HWTEST_F() 244 contextId = UserAuthClientImpl::Instance().BeginNorthAuthentication(testApiVersion, testChallenge, in HWTEST_F() 252 std::vector<uint8_t> testChallenge = {1, 2, 3, 4, 3, 2, 1, 0}; in HWTEST_F() local 266 [&testApiVersion, &testChallenge, &testAuthType, &testAtl, &testContextId](int32_t apiVersion, in HWTEST_F() 270 EXPECT_THAT(challenge, ElementsAreArray(testChallenge)); in HWTEST_F() 284 uint64_t contextId = UserAuthClientImpl::Instance().BeginNorthAuthentication(testApiVersion, testChallenge, in HWTEST_F() 391 std::vector<uint8_t> testChallenge = {4, 5, 6, 7, 3, 4, 1, 2}; in HWTEST_F() local 394 uint64_t contextId = UserAuthClient::GetInstance().BeginIdentification(testChallenge, testAuthType, testCallback); in HWTEST_F() 401 contextId = UserAuthClient::GetInstance().BeginIdentification(testChallenge, testAuthTyp in HWTEST_F() 407 std::vector<uint8_t> testChallenge = {4, 5, 6, 7, 3, 4, 1, 2}; HWTEST_F() local [all...] |
H A D | user_auth_proxy_test.cpp | 191 const std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; in HWTEST_F() local 219 proxy->Auth(testApiVersion, testChallenge, testAuthType, testAtl, testCallback); in HWTEST_F() 289 const std::vector<uint8_t> testChallenge = {1, 2, 3, 4}; in HWTEST_F() local 315 proxy->Identify(testChallenge, testAuthType, testCallback); in HWTEST_F()
|
H A D | user_idm_client_test.cpp | 55 std::vector<uint8_t> testChallenge = {1, 3, 4, 7}; in HWTEST_F() local 62 [&testUserId, &testChallenge](int32_t userId, std::vector<uint8_t> &challenge) { in HWTEST_F() 64 challenge = testChallenge; in HWTEST_F() 73 EXPECT_THAT(challenge, ElementsAreArray(testChallenge)); in HWTEST_F()
|
H A D | user_idm_proxy_test.cpp | 50 std::vector<uint8_t> testChallenge; in HWTEST_F() local 70 proxy->OpenSession(testUserId, testChallenge); in HWTEST_F()
|