Skip to content

Commit 4d90479

Browse files
committed
Adds test profile classes to avoid nonexisting GetAuthenticatedToken bean in test context.
1 parent 3eb5138 commit 4d90479

File tree

4 files changed

+55
-9
lines changed

4 files changed

+55
-9
lines changed

libs/reactive-security/src/main/java/no/nav/testnav/libs/reactivesecurity/exchange/TokenServiceAutoConfiguration.java

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import org.springframework.context.annotation.Bean;
1414
import org.springframework.context.annotation.Primary;
1515
import org.springframework.context.annotation.Profile;
16-
import org.springframework.util.Assert;
1716

1817
@AutoConfiguration(after = ClientCredentialAutoConfiguration.class)
1918
public class TokenServiceAutoConfiguration {
@@ -25,10 +24,9 @@ public class TokenServiceAutoConfiguration {
2524
@Bean
2625
@Profile("test")
2726
AzureTokenService azureAdTokenServiceTest(
28-
AzureClientCredential clientCredential,
29-
GetAuthenticatedToken getAuthenticatedToken
27+
AzureClientCredential clientCredential
3028
) {
31-
return new AzureTokenService(null, clientCredential, getAuthenticatedToken);
29+
return new AzureTokenService.Test(clientCredential);
3230
}
3331

3432
@Bean
@@ -47,7 +45,7 @@ AzureTokenService azureAdTokenService(
4745
AzureNavTokenService azureNavTokenServiceTest(
4846
AzureNavClientCredential azureNavClientCredential
4947
) {
50-
return new AzureNavTokenService(null, azureNavClientCredential);
48+
return new AzureNavTokenService.Test(azureNavClientCredential);
5149
}
5250

5351
@Bean
@@ -63,11 +61,9 @@ AzureNavTokenService azureNavTokenService(
6361
@Bean
6462
@Profile("test")
6563
AzureTrygdeetatenTokenService trygdeetatenAzureAdTokenServiceTest(
66-
AzureTrygdeetatenClientCredential clientCredential,
67-
GetAuthenticatedUserId getAuthenticatedUserId,
68-
ObjectMapper objectMapper
64+
AzureTrygdeetatenClientCredential clientCredential
6965
) {
70-
return new AzureTrygdeetatenTokenService(null, clientCredential, getAuthenticatedUserId, objectMapper);
66+
return new AzureTrygdeetatenTokenService.Test(clientCredential);
7167
}
7268

7369
@Bean

libs/reactive-security/src/main/java/no/nav/testnav/libs/reactivesecurity/exchange/azuread/AzureNavTokenService.java

+17
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,21 @@ public Mono<AccessToken> exchange(ServerProperties serverProperties) {
6464
).call();
6565

6666
}
67+
68+
/**
69+
* Replaces {@link AzureNavTokenService} in test profile.
70+
*/
71+
public static class Test extends AzureNavTokenService {
72+
73+
public Test(AzureNavClientCredential clientCredential) {
74+
super(null, clientCredential);
75+
}
76+
77+
@Override
78+
public Mono<AccessToken> exchange(ServerProperties serverProperties) {
79+
return Mono.empty();
80+
}
81+
82+
}
83+
6784
}

libs/reactive-security/src/main/java/no/nav/testnav/libs/reactivesecurity/exchange/azuread/AzureTokenService.java

+17
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,21 @@ private Mono<AccessToken> generateOnBehalfOfAccessToken(Token token, ServerPrope
9797
token
9898
).call();
9999
}
100+
101+
/**
102+
* Replaces {@link AzureTokenService} in test profile.
103+
*/
104+
public static class Test extends AzureTokenService {
105+
106+
public Test(AzureClientCredential clientCredential) {
107+
super(null, clientCredential, null);
108+
}
109+
110+
@Override
111+
public Mono<AccessToken> exchange(ServerProperties serverProperties) {
112+
return Mono.empty();
113+
}
114+
115+
}
116+
100117
}

libs/reactive-security/src/main/java/no/nav/testnav/libs/reactivesecurity/exchange/azuread/AzureTrygdeetatenTokenService.java

+16
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,20 @@ private boolean expires(AccessToken accessToken) {
114114
.minusSeconds(300)
115115
.isBefore(Instant.now());
116116
}
117+
118+
/**
119+
* Replaces {@link AzureTrygdeetatenTokenService} in test profile.
120+
*/
121+
public static class Test extends AzureTrygdeetatenTokenService {
122+
123+
public Test(AzureTrygdeetatenClientCredential clientCredential) {
124+
super(null, clientCredential, null, null);
125+
}
126+
127+
@Override
128+
public Mono<AccessToken> exchange(ServerProperties serverProperties) {
129+
return Mono.empty();
130+
}
131+
}
132+
117133
}

0 commit comments

Comments
 (0)