Skip to content

Commit 6778647

Browse files
committed
chore: remove unrelated
1 parent 87eff1d commit 6778647

File tree

2 files changed

+1
-50
lines changed

2 files changed

+1
-50
lines changed

src/auth/jwtclient.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import {
2424
OAuth2ClientOptions,
2525
RequestMetadataResponse,
2626
} from './oauth2client';
27-
import {DEFAULT_UNIVERSE} from './authclient';
2827

2928
export interface JWTOptions extends OAuth2ClientOptions {
3029
email?: string;
@@ -120,8 +119,7 @@ export class JWT extends OAuth2Client implements IdTokenProvider {
120119
url = this.defaultServicePath ? `https://${this.defaultServicePath}/` : url;
121120
const useSelfSignedJWT =
122121
(!this.hasUserScopes() && url) ||
123-
(this.useJWTAccessWithScope && this.hasAnyScopes()) ||
124-
this.universeDomain !== DEFAULT_UNIVERSE;
122+
(this.useJWTAccessWithScope && this.hasAnyScopes());
125123
if (!this.apiKey && useSelfSignedJWT) {
126124
if (
127125
this.additionalClaims &&

test/test.jwt.ts

-47
Original file line numberDiff line numberDiff line change
@@ -1007,53 +1007,6 @@ describe('jwt', () => {
10071007
);
10081008
});
10091009

1010-
it('signs JWT with audience if: user scope = true, default scope = true, audience = truthy, universeDomain = not default universe', async () => {
1011-
const stubGetRequestHeaders = sandbox.stub().returns({});
1012-
const stubJWTAccess = sandbox.stub(jwtaccess, 'JWTAccess').returns({
1013-
getRequestHeaders: stubGetRequestHeaders,
1014-
});
1015-
const jwt = new JWT({
1016-
1017-
key: fs.readFileSync(PEM_PATH, 'utf8'),
1018-
scopes: ['scope1', 'scope2'],
1019-
subject: '[email protected]',
1020-
universeDomain: 'my-universe.com',
1021-
});
1022-
jwt.defaultScopes = ['scope1', 'scope2'];
1023-
await jwt.getRequestHeaders('https//beepboop.googleapis.com');
1024-
sandbox.assert.calledOnce(stubJWTAccess);
1025-
sandbox.assert.calledWith(
1026-
stubGetRequestHeaders,
1027-
'https//beepboop.googleapis.com',
1028-
undefined,
1029-
undefined
1030-
);
1031-
});
1032-
1033-
it('signs JWT with audience if: user scope = true, default scope = true, audience = truthy, useJWTAccessWithScope = true, universeDomain = not default universe', async () => {
1034-
const stubGetRequestHeaders = sandbox.stub().returns({});
1035-
const stubJWTAccess = sandbox.stub(jwtaccess, 'JWTAccess').returns({
1036-
getRequestHeaders: stubGetRequestHeaders,
1037-
});
1038-
const jwt = new JWT({
1039-
1040-
key: fs.readFileSync(PEM_PATH, 'utf8'),
1041-
scopes: ['scope1', 'scope2'],
1042-
subject: '[email protected]',
1043-
universeDomain: 'my-universe.com',
1044-
});
1045-
jwt.useJWTAccessWithScope = true;
1046-
jwt.defaultScopes = ['scope1', 'scope2'];
1047-
await jwt.getRequestHeaders('https//beepboop.googleapis.com');
1048-
sandbox.assert.calledOnce(stubJWTAccess);
1049-
sandbox.assert.calledWith(
1050-
stubGetRequestHeaders,
1051-
'https//beepboop.googleapis.com',
1052-
undefined,
1053-
['scope1', 'scope2']
1054-
);
1055-
});
1056-
10571010
it('does not use self signed JWT if target_audience provided', async () => {
10581011
const JWTAccess = sandbox.stub(jwtaccess, 'JWTAccess').returns({
10591012
getRequestHeaders: sinon.stub().returns({}),

0 commit comments

Comments
 (0)