@@ -1007,6 +1007,72 @@ 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
+ universeDomain : 'my-universe.com' ,
1020
+ } ) ;
1021
+ jwt . defaultScopes = [ 'scope1' , 'scope2' ] ;
1022
+ await jwt . getRequestHeaders ( 'https//beepboop.googleapis.com' ) ;
1023
+ sandbox . assert . calledOnce ( stubJWTAccess ) ;
1024
+ sandbox . assert . calledWith (
1025
+ stubGetRequestHeaders ,
1026
+ 'https//beepboop.googleapis.com' ,
1027
+ undefined ,
1028
+ undefined
1029
+ ) ;
1030
+ } ) ;
1031
+
1032
+ it ( 'signs JWT with audience if: user scope = true, default scope = true, audience = truthy, useJWTAccessWithScope = true, universeDomain = not default universe' , async ( ) => {
1033
+ const stubGetRequestHeaders = sandbox . stub ( ) . returns ( { } ) ;
1034
+ const stubJWTAccess = sandbox . stub ( jwtaccess , 'JWTAccess' ) . returns ( {
1035
+ getRequestHeaders : stubGetRequestHeaders ,
1036
+ } ) ;
1037
+ const jwt = new JWT ( {
1038
+
1039
+ key : fs . readFileSync ( PEM_PATH , 'utf8' ) ,
1040
+ scopes : [ 'scope1' , 'scope2' ] ,
1041
+ universeDomain : 'my-universe.com' ,
1042
+ } ) ;
1043
+ jwt . useJWTAccessWithScope = true ;
1044
+ jwt . defaultScopes = [ 'scope1' , 'scope2' ] ;
1045
+ await jwt . getRequestHeaders ( 'https//beepboop.googleapis.com' ) ;
1046
+ sandbox . assert . calledOnce ( stubJWTAccess ) ;
1047
+ sandbox . assert . calledWith (
1048
+ stubGetRequestHeaders ,
1049
+ 'https//beepboop.googleapis.com' ,
1050
+ undefined ,
1051
+ [ 'scope1' , 'scope2' ]
1052
+ ) ;
1053
+ } ) ;
1054
+
1055
+ it ( 'throws on domain-wide delegation on non-default universe' , async ( ) => {
1056
+ const stubGetRequestHeaders = sandbox . stub ( ) . returns ( { } ) ;
1057
+ sandbox . stub ( jwtaccess , 'JWTAccess' ) . returns ( {
1058
+ getRequestHeaders : stubGetRequestHeaders ,
1059
+ } ) ;
1060
+ const jwt = new JWT ( {
1061
+
1062
+ key : fs . readFileSync ( PEM_PATH , 'utf8' ) ,
1063
+ scopes : [ 'scope1' , 'scope2' ] ,
1064
+
1065
+ universeDomain : 'my-universe.com' ,
1066
+ } ) ;
1067
+ jwt . useJWTAccessWithScope = true ;
1068
+ jwt . defaultScopes = [ 'scope1' , 'scope2' ] ;
1069
+
1070
+ await assert . rejects (
1071
+ ( ) => jwt . getRequestHeaders ( 'https//beepboop.googleapis.com' ) ,
1072
+ / D o m a i n - w i d e d e l e g a t i o n i s n o t s u p p o r t e d i n u n i v e r s e s o t h e r t h a n /
1073
+ ) ;
1074
+ } ) ;
1075
+
1010
1076
it ( 'does not use self signed JWT if target_audience provided' , async ( ) => {
1011
1077
const JWTAccess = sandbox . stub ( jwtaccess , 'JWTAccess' ) . returns ( {
1012
1078
getRequestHeaders : sinon . stub ( ) . returns ( { } ) ,
0 commit comments