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
30bc5d3f
Commit
30bc5d3f
authored
9 years ago
by
Jan Tattermusch
Browse files
Options
Downloads
Plain Diff
Merge pull request #2901 from murgatroid99/node_fix_auth_interop
Node fix auth interop
parents
1a883cdc
e8047777
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/node/interop/interop_client.js
+4
-2
4 additions, 2 deletions
src/node/interop/interop_client.js
src/node/src/client.js
+7
-4
7 additions, 4 deletions
src/node/src/client.js
with
11 additions
and
6 deletions
src/node/interop/interop_client.js
+
4
−
2
View file @
30bc5d3f
...
@@ -298,7 +298,9 @@ function authTest(expected_user, scope, client, done) {
...
@@ -298,7 +298,9 @@ function authTest(expected_user, scope, client, done) {
assert
.
strictEqual
(
resp
.
payload
.
type
,
'
COMPRESSABLE
'
);
assert
.
strictEqual
(
resp
.
payload
.
type
,
'
COMPRESSABLE
'
);
assert
.
strictEqual
(
resp
.
payload
.
body
.
length
,
314159
);
assert
.
strictEqual
(
resp
.
payload
.
body
.
length
,
314159
);
assert
.
strictEqual
(
resp
.
username
,
expected_user
);
assert
.
strictEqual
(
resp
.
username
,
expected_user
);
assert
.
strictEqual
(
resp
.
oauth_scope
,
AUTH_SCOPE_RESPONSE
);
if
(
scope
)
{
assert
.
strictEqual
(
resp
.
oauth_scope
,
AUTH_SCOPE_RESPONSE
);
}
if
(
done
)
{
if
(
done
)
{
done
();
done
();
}
}
...
@@ -335,7 +337,7 @@ function oauth2Test(expected_user, scope, per_rpc, client, done) {
...
@@ -335,7 +337,7 @@ function oauth2Test(expected_user, scope, per_rpc, client, done) {
if
(
done
)
{
if
(
done
)
{
done
();
done
();
}
}
});
}
,
client_metadata
);
};
};
if
(
per_rpc
)
{
if
(
per_rpc
)
{
updateMetadata
(
''
,
{},
makeTestCall
);
updateMetadata
(
''
,
{},
makeTestCall
);
...
...
This diff is collapsed.
Click to expand it.
src/node/src/client.js
+
7
−
4
View file @
30bc5d3f
...
@@ -526,7 +526,7 @@ var requester_makers = {
...
@@ -526,7 +526,7 @@ var requester_makers = {
* requestSerialize: function to serialize request objects
* requestSerialize: function to serialize request objects
* responseDeserialize: function to deserialize response objects
* responseDeserialize: function to deserialize response objects
* @param {Object} methods An object mapping method names to method attributes
* @param {Object} methods An object mapping method names to method attributes
* @param {string} serviceName The name of the service
* @param {string} serviceName The
fully qualified
name of the service
* @return {function(string, Object)} New client constructor
* @return {function(string, Object)} New client constructor
*/
*/
exports
.
makeClientConstructor
=
function
(
methods
,
serviceName
)
{
exports
.
makeClientConstructor
=
function
(
methods
,
serviceName
)
{
...
@@ -551,8 +551,10 @@ exports.makeClientConstructor = function(methods, serviceName) {
...
@@ -551,8 +551,10 @@ exports.makeClientConstructor = function(methods, serviceName) {
}
}
options
[
'
grpc.primary_user_agent
'
]
=
'
grpc-node/
'
+
version
;
options
[
'
grpc.primary_user_agent
'
]
=
'
grpc-node/
'
+
version
;
this
.
channel
=
new
grpc
.
Channel
(
address
,
credentials
,
options
);
this
.
channel
=
new
grpc
.
Channel
(
address
,
credentials
,
options
);
this
.
server_address
=
address
.
replace
(
/
\/
$/
,
''
);
// Remove the optional DNS scheme, trailing port, and trailing backslash
this
.
auth_uri
=
this
.
server_address
+
'
/
'
+
serviceName
;
address
=
address
.
replace
(
/^
(
dns:
\/{3})?([^
:
\/]
+
)(
:
\d
+
)?\/?
$/
,
'
$2
'
);
this
.
server_address
=
address
;
this
.
auth_uri
=
'
https://
'
+
this
.
server_address
+
'
/
'
+
serviceName
;
this
.
updateMetadata
=
updateMetadata
;
this
.
updateMetadata
=
updateMetadata
;
}
}
...
@@ -590,7 +592,8 @@ exports.makeClientConstructor = function(methods, serviceName) {
...
@@ -590,7 +592,8 @@ exports.makeClientConstructor = function(methods, serviceName) {
*/
*/
exports
.
makeProtobufClientConstructor
=
function
(
service
)
{
exports
.
makeProtobufClientConstructor
=
function
(
service
)
{
var
method_attrs
=
common
.
getProtobufServiceAttrs
(
service
,
service
.
name
);
var
method_attrs
=
common
.
getProtobufServiceAttrs
(
service
,
service
.
name
);
var
Client
=
exports
.
makeClientConstructor
(
method_attrs
);
var
Client
=
exports
.
makeClientConstructor
(
method_attrs
,
common
.
fullyQualifiedName
(
service
));
Client
.
service
=
service
;
Client
.
service
=
service
;
return
Client
;
return
Client
;
};
};
...
...
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