Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
1b40198f
Commit
1b40198f
authored
9 years ago
by
murgatroid99
Browse files
Options
Downloads
Patches
Plain Diff
Added jwtaccess cloud-to-prod interop test
parent
90381019
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/node/interop/interop_client.js
+7
-5
7 additions, 5 deletions
src/node/interop/interop_client.js
with
7 additions
and
5 deletions
src/node/interop/interop_client.js
+
7
−
5
View file @
1b40198f
...
@@ -270,14 +270,15 @@ function cancelAfterFirstResponse(client, done) {
...
@@ -270,14 +270,15 @@ function cancelAfterFirstResponse(client, done) {
* Run one of the authentication tests.
* Run one of the authentication tests.
* @param {string} expected_user The expected username in the response
* @param {string} expected_user The expected username in the response
* @param {Client} client The client to test against
* @param {Client} client The client to test against
* @param {?string} scope The scope to apply to the credentials
* @param {function} done Callback to call when the test is completed. Included
* @param {function} done Callback to call when the test is completed. Included
* primarily for use with mocha
* primarily for use with mocha
*/
*/
function
authTest
(
expected_user
,
client
,
done
)
{
function
authTest
(
expected_user
,
client
,
scope
,
done
)
{
(
new
GoogleAuth
()).
getApplicationDefault
(
function
(
err
,
credential
)
{
(
new
GoogleAuth
()).
getApplicationDefault
(
function
(
err
,
credential
)
{
assert
.
ifError
(
err
);
assert
.
ifError
(
err
);
if
(
credential
.
createScopedRequired
())
{
if
(
credential
.
createScopedRequired
()
&&
scope
)
{
credential
=
credential
.
createScoped
(
AUTH_SCOPE
);
credential
=
credential
.
createScoped
(
scope
);
}
}
client
.
updateMetadata
=
grpc
.
getGoogleAuthDelegate
(
credential
);
client
.
updateMetadata
=
grpc
.
getGoogleAuthDelegate
(
credential
);
var
arg
=
{
var
arg
=
{
...
@@ -318,8 +319,9 @@ var test_cases = {
...
@@ -318,8 +319,9 @@ var test_cases = {
empty_stream
:
emptyStream
,
empty_stream
:
emptyStream
,
cancel_after_begin
:
cancelAfterBegin
,
cancel_after_begin
:
cancelAfterBegin
,
cancel_after_first_response
:
cancelAfterFirstResponse
,
cancel_after_first_response
:
cancelAfterFirstResponse
,
compute_engine_creds
:
_
.
partial
(
authTest
,
COMPUTE_ENGINE_USER
),
compute_engine_creds
:
_
.
partial
(
authTest
,
COMPUTE_ENGINE_USER
,
null
),
service_account_creds
:
_
.
partial
(
authTest
,
AUTH_USER
)
service_account_creds
:
_
.
partial
(
authTest
,
AUTH_USER
,
AUTH_SCOPE
),
jwt_token_creds
:
_
.
partial
(
authTest
,
AUTH_USER
,
null
)
};
};
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment