@@ -108,6 +108,43 @@ static const char test_refresh_token_str[] =
108
108
" \" refresh_token\" : \" 1/Blahblasj424jladJDSGNf-u4Sua3HDA2ngjd42\" ,"
109
109
" \" type\" : \" authorized_user\" }" ;
110
110
111
+ /* Test external account credentials. */
112
+ static const char test_external_account_credentials_str[] =
113
+ " {\" type\" :\" external_account\" ,\" audience\" :\" audience\" ,\" subject_"
114
+ " token_type\" :\" subject_token_type\" ,\" service_account_impersonation_"
115
+ " url\" :\"\" ,\" token_url\" :\" https://"
116
+ " sts.googleapis.com:5555/"
117
+ " token\" ,\" token_info_url\" :\"\" ,\" credential_source\" :{\" file\" :"
118
+ " \" credentials_file_path\" },"
119
+ " \" quota_project_id\" :\" quota_"
120
+ " project_id\" ,\" client_id\" :\" client_id\" ,\" client_secret\" :\" client_"
121
+ " secret\" }" ;
122
+
123
+ static const char test_external_account_credentials_multi_pattern_sts_str[] =
124
+ " {\" type\" :\" external_account\" ,\" audience\" :\" audience\" ,\" subject_"
125
+ " token_type\" :\" subject_token_type\" ,\" service_account_impersonation_"
126
+ " url\" :\" https://sts.test.googleapis.com:5555/"
127
+ " service_account_impersonation_url\" ,\" token_url\" :\" https://"
128
+ " test.sts.googleapis.com:5555/token\" ,\" token_info_url\" :\" https://"
129
+ " test-sts.googleapis.com:5555/"
130
+ " token_info\" ,\" credential_source\" :{\" file\" :\" credentials_file_path\" },"
131
+ " \" quota_project_id\" :\" quota_"
132
+ " project_id\" ,\" client_id\" :\" client_id\" ,\" client_secret\" :\" client_"
133
+ " secret\" }" ;
134
+
135
+ static const char test_external_account_credentials_multi_pattern_iam_str[] =
136
+ " {\" type\" :\" external_account\" ,\" audience\" :\" audience\" ,\" subject_"
137
+ " token_type\" :\" subject_token_type\" ,\" service_account_impersonation_"
138
+ " url\" :\" https://iamcredentials.test.googleapis.com:5555/"
139
+ " service_account_impersonation_url\" ,\" token_url\" :\" https://"
140
+ " test.iamcredentials.googleapis.com:5555/"
141
+ " token\" ,\" token_info_url\" :\" https://"
142
+ " test-iamcredentials.googleapis.com:5555/"
143
+ " token_info\" ,\" credential_source\" :{\" file\" :\" credentials_file_path\" },"
144
+ " \" quota_project_id\" :\" quota_"
145
+ " project_id\" ,\" client_id\" :\" client_id\" ,\" client_secret\" :\" client_"
146
+ " secret\" }" ;
147
+
111
148
static const char valid_oauth2_json_response[] =
112
149
" {\" access_token\" :\" ya29.AHES6ZRN3-HlhAPya30GnW_bHSb_\" ,"
113
150
" \" expires_in\" :3599, "
@@ -1502,6 +1539,71 @@ static void test_google_default_creds_refresh_token(void) {
1502
1539
gpr_setenv (GRPC_GOOGLE_CREDENTIALS_ENV_VAR, " " ); /* Reset. */
1503
1540
}
1504
1541
1542
+ static void test_google_default_creds_external_account_credentials (void ) {
1543
+ grpc_core::ExecCtx exec_ctx;
1544
+ grpc_composite_channel_credentials* creds;
1545
+ grpc_flush_cached_google_default_credentials ();
1546
+ set_google_default_creds_env_var_with_file_contents (
1547
+ " google_default_creds_external_account_credentials" ,
1548
+ test_external_account_credentials_str);
1549
+ creds = reinterpret_cast <grpc_composite_channel_credentials*>(
1550
+ grpc_google_default_credentials_create (nullptr ));
1551
+ auto * default_creds =
1552
+ reinterpret_cast <const grpc_google_default_channel_credentials*>(
1553
+ creds->inner_creds ());
1554
+ GPR_ASSERT (default_creds->ssl_creds () != nullptr );
1555
+ auto * external =
1556
+ reinterpret_cast <const grpc_core::ExternalAccountCredentials*>(
1557
+ creds->call_creds ());
1558
+ GPR_ASSERT (external != nullptr );
1559
+ creds->Unref ();
1560
+ gpr_setenv (GRPC_GOOGLE_CREDENTIALS_ENV_VAR, " " ); /* Reset. */
1561
+ }
1562
+
1563
+ static void
1564
+ test_google_default_creds_external_account_credentials_multi_pattern_sts (void ) {
1565
+ grpc_core::ExecCtx exec_ctx;
1566
+ grpc_composite_channel_credentials* creds;
1567
+ grpc_flush_cached_google_default_credentials ();
1568
+ set_google_default_creds_env_var_with_file_contents (
1569
+ " google_default_creds_external_account_credentials" ,
1570
+ test_external_account_credentials_multi_pattern_sts_str);
1571
+ creds = reinterpret_cast <grpc_composite_channel_credentials*>(
1572
+ grpc_google_default_credentials_create (nullptr ));
1573
+ auto * default_creds =
1574
+ reinterpret_cast <const grpc_google_default_channel_credentials*>(
1575
+ creds->inner_creds ());
1576
+ GPR_ASSERT (default_creds->ssl_creds () != nullptr );
1577
+ auto * external =
1578
+ reinterpret_cast <const grpc_core::ExternalAccountCredentials*>(
1579
+ creds->call_creds ());
1580
+ GPR_ASSERT (external != nullptr );
1581
+ creds->Unref ();
1582
+ gpr_setenv (GRPC_GOOGLE_CREDENTIALS_ENV_VAR, " " ); /* Reset. */
1583
+ }
1584
+
1585
+ static void
1586
+ test_google_default_creds_external_account_credentials_multi_pattern_iam (void ) {
1587
+ grpc_core::ExecCtx exec_ctx;
1588
+ grpc_composite_channel_credentials* creds;
1589
+ grpc_flush_cached_google_default_credentials ();
1590
+ set_google_default_creds_env_var_with_file_contents (
1591
+ " google_default_creds_external_account_credentials" ,
1592
+ test_external_account_credentials_multi_pattern_iam_str);
1593
+ creds = reinterpret_cast <grpc_composite_channel_credentials*>(
1594
+ grpc_google_default_credentials_create (nullptr ));
1595
+ auto * default_creds =
1596
+ reinterpret_cast <const grpc_google_default_channel_credentials*>(
1597
+ creds->inner_creds ());
1598
+ GPR_ASSERT (default_creds->ssl_creds () != nullptr );
1599
+ auto * external =
1600
+ reinterpret_cast <const grpc_core::ExternalAccountCredentials*>(
1601
+ creds->call_creds ());
1602
+ GPR_ASSERT (external != nullptr );
1603
+ creds->Unref ();
1604
+ gpr_setenv (GRPC_GOOGLE_CREDENTIALS_ENV_VAR, " " ); /* Reset. */
1605
+ }
1606
+
1505
1607
static int default_creds_metadata_server_detection_httpcli_get_success_override (
1506
1608
const grpc_httpcli_request* request, grpc_millis /* deadline*/ ,
1507
1609
grpc_closure* on_done, grpc_httpcli_response* response) {
@@ -3393,6 +3495,9 @@ int main(int argc, char** argv) {
3393
3495
test_jwt_creds_signing_failure ();
3394
3496
test_google_default_creds_auth_key ();
3395
3497
test_google_default_creds_refresh_token ();
3498
+ test_google_default_creds_external_account_credentials ();
3499
+ test_google_default_creds_external_account_credentials_multi_pattern_sts ();
3500
+ test_google_default_creds_external_account_credentials_multi_pattern_iam ();
3396
3501
test_google_default_creds_gce ();
3397
3502
test_google_default_creds_non_gce ();
3398
3503
test_no_google_default_creds ();
0 commit comments