-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathAcquireTokenInteractiveIT.java
More file actions
236 lines (187 loc) · 9.16 KB
/
Copy pathAcquireTokenInteractiveIT.java
File metadata and controls
236 lines (187 loc) · 9.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.aad.msal4j;
import com.microsoft.aad.msal4j.labapi.*;
import static com.microsoft.aad.msal4j.labapi.KeyVaultSecrets.*;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.junit.jupiter.api.TestInstance;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ExecutionException;
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class AcquireTokenInteractiveIT extends SeleniumTest {
private static final Logger LOG = LoggerFactory.getLogger(AcquireTokenInteractiveIT.class);
@AfterEach
public void stopBrowser() {
cleanUp();
}
@BeforeEach
public void startBrowser() {
startUpBrowser();
}
@Test
void acquireTokenInteractive_ManagedUser() {
AppConfig app = LabResponseHelper.getAppConfig(APP_MULTI_TENANT);
UserConfig user = LabResponseHelper.getUserConfig(USER_PUBLIC_CLOUD);
assertAcquireTokenCommon(user, app.getAppId(), app.getAuthority() + "common", TestConstants.GRAPH_DEFAULT_SCOPE);
}
@Test
void acquireTokenInteractive_Arlington() {
AppConfig app = LabResponseHelper.getAppConfig(APP_ARLINGTON);
UserConfig user = LabResponseHelper.getUserConfig(USER_ARLINGTON);
assertAcquireTokenCommon(user, app.getAppId(), app.getAuthority() + "common", TestConstants.GRAPH_DEFAULT_SCOPE);
}
@Test()
@DisabledIfSystemProperty(named = "adfs.disabled", matches = "true")
void acquireTokenInteractive_ADFSv2022() {
AppConfig app = LabResponseHelper.getAppConfig(APP_PCACLIENT);
UserConfig user = LabResponseHelper.getUserConfig(USER_FED_DEFAULT);
assertAcquireTokenCommon(user, app.getAppId(), app.getAuthority() + "organizations/", TestConstants.ADFS_SCOPE);
}
@Test
void acquireTokenInteractive_ManagedUser_InstanceAware() {
AppConfig app = LabResponseHelper.getAppConfig(APP_ARLINGTON);
UserConfig user = LabResponseHelper.getUserConfig(USER_ARLINGTON);
assertAcquireTokenInstanceAware(user, app.getAppId(), TestConstants.ARLINGTON_TENANT_ID);
}
@Test
void acquireTokenInteractive_Ciam() {
AppConfig app = LabResponseHelper.getAppConfig(APP_CIAM);
UserConfig user = LabResponseHelper.getUserConfig(USER_CIAM);
Map<String, String> extraQueryParameters = new HashMap<>();
PublicClientApplication pca;
try {
pca = PublicClientApplication.builder(
app.getAppId()).
authority(app.getAuthority())
.build();
} catch (MalformedURLException ex) {
throw new RuntimeException(ex.getMessage());
}
IAuthenticationResult result;
try {
URI url = new URI("http://localhost:8080");
SystemBrowserOptions browserOptions =
SystemBrowserOptions
.builder()
.openBrowserAction(new SeleniumOpenBrowserAction(user, pca))
.build();
InteractiveRequestParameters parameters = InteractiveRequestParameters
.builder(url)
.scopes(Collections.singleton(TestConstants.USER_READ_SCOPE))
.extraQueryParameters(extraQueryParameters)
.systemBrowserOptions(browserOptions)
.build();
result = pca.acquireToken(parameters).get();
} catch (Exception e) {
LOG.error("Error acquiring token with authCode: {}", e.getMessage());
throw new RuntimeException("Error acquiring token with authCode: " + e.getMessage());
}
IntegrationTestHelper.assertAccessAndIdTokensNotNull(result);
assertEquals(user.getUpn(), result.account().username());
}
private void assertAcquireTokenCommon(UserConfig user, String appId, String authority, String scope) {
PublicClientApplication pca = IntegrationTestHelper.createPublicApp(appId, authority);
IAuthenticationResult result = acquireTokenInteractive(
user,
pca,
scope);
IntegrationTestHelper.assertAccessAndIdTokensNotNull(result);
assertEquals(user.getUpn(), result.account().username());
}
private void assertAcquireTokenInstanceAware(UserConfig user, String appId, String tenantId) {
PublicClientApplication pca = IntegrationTestHelper.createPublicApp(appId, TestConstants.MICROSOFT_AUTHORITY_HOST + tenantId);
IAuthenticationResult result = acquireTokenInteractive_instanceAware(user, pca, TestConstants.GRAPH_DEFAULT_SCOPE);
IntegrationTestHelper.assertAccessAndIdTokensNotNull(result);
assertEquals(user.getUpn(), result.account().username());
//This test is using a client app with the login.microsoftonline.com config to get tokens for a login.microsoftonline.us user,
// so when using instance aware the result's environment will be for the user/account and not the client app
assertNotEquals(pca.authenticationAuthority.host, result.environment());
assertEquals(result.account().environment(), result.environment());
assertEquals(result.account().environment(), pca.getAccounts().join().iterator().next().environment());
IAuthenticationResult cachedResult;
try {
cachedResult = acquireTokenSilently(pca, result.account(), TestConstants.GRAPH_DEFAULT_SCOPE);
} catch (Exception ex) {
throw new RuntimeException(ex.getMessage());
}
//Ensure that the cached environment matches the original auth result environment (.us) instead of the client app's (.com)
assertEquals(result.account().environment(), cachedResult.environment());
}
private IAuthenticationResult acquireTokenSilently(IPublicClientApplication pca, IAccount account, String scope) throws InterruptedException, ExecutionException, MalformedURLException {
return pca.acquireTokenSilently(SilentParameters.builder(Collections.singleton(scope), account)
.build())
.get();
}
private IAuthenticationResult acquireTokenInteractive(
UserConfig user,
PublicClientApplication pca,
String scope) {
IAuthenticationResult result;
try {
URI url = new URI("http://localhost:8080");
SystemBrowserOptions browserOptions =
SystemBrowserOptions
.builder()
.openBrowserAction(new SeleniumOpenBrowserAction(user, pca))
.build();
InteractiveRequestParameters parameters = InteractiveRequestParameters
.builder(url)
.scopes(Collections.singleton(scope))
.systemBrowserOptions(browserOptions)
.build();
result = pca.acquireToken(parameters).get();
} catch (Exception e) {
LOG.error("Error acquiring token with authCode: {}", e.getMessage());
throw new RuntimeException("Error acquiring token with authCode: " + e.getMessage());
}
return result;
}
private IAuthenticationResult acquireTokenInteractive_instanceAware(
UserConfig user,
PublicClientApplication pca,
String scope) {
IAuthenticationResult result;
try {
URI url = new URI("http://localhost:8080");
SystemBrowserOptions browserOptions =
SystemBrowserOptions
.builder()
.openBrowserAction(new SeleniumOpenBrowserAction(user, pca))
.build();
InteractiveRequestParameters parameters = InteractiveRequestParameters
.builder(url)
.scopes(Collections.singleton(scope))
.systemBrowserOptions(browserOptions).instanceAware(true)
.build();
result = pca.acquireToken(parameters).get();
} catch (Exception e) {
LOG.error("Error acquiring token with authCode: {}", e.getMessage());
throw new RuntimeException("Error acquiring token with authCode: " + e.getMessage());
}
return result;
}
class SeleniumOpenBrowserAction implements OpenBrowserAction {
private UserConfig user;
private PublicClientApplication pca;
SeleniumOpenBrowserAction(UserConfig user, PublicClientApplication pca) {
this.user = user;
this.pca = pca;
}
public void openBrowser(URL url) {
seleniumDriver.navigate().to(url);
runSeleniumAutomatedLogin(user, pca);
}
}
}