@@ -1007,53 +1007,6 @@ describe('jwt', () => {
1007
1007
) ;
1008
1008
} ) ;
1009
1009
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
-
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
-
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
-
1057
1010
it ( 'does not use self signed JWT if target_audience provided' , async ( ) => {
1058
1011
const JWTAccess = sandbox . stub ( jwtaccess , 'JWTAccess' ) . returns ( {
1059
1012
getRequestHeaders : sinon . stub ( ) . returns ( { } ) ,
0 commit comments