use of io.jans.ca.common.params.GetJwksParams in project jans by JanssenProject.
the class GetJwksTest method test.
@Test(enabled = false)
@Parameters({ "host", "opHost", "opDiscoveryPath" })
public void test(String host, String opHost, @Optional String opDiscoveryPath) {
final ClientInterface client = Tester.newClient(host);
final GetJwksParams params = new GetJwksParams();
params.setOpHost(opHost);
params.setOpDiscoveryPath(opDiscoveryPath);
final GetJwksResponse response = client.getJwks(Tester.getAuthorization(), null, params);
assertNotNull(response);
assertNotNull(response.getKeys());
assertFalse(response.getKeys().isEmpty());
}
use of io.jans.ca.common.params.GetJwksParams in project jans by JanssenProject.
the class GetJwksTest method test_withOpConfigurationEndpoint.
@Test
@Parameters({ "host", "opConfigurationEndpoint" })
public void test_withOpConfigurationEndpoint(String host, String opConfigurationEndpoint) {
final ClientInterface client = Tester.newClient(host);
final GetJwksParams params = new GetJwksParams();
params.setOpConfigurationEndpoint(opConfigurationEndpoint);
final GetJwksResponse response = client.getJwks(Tester.getAuthorization(), null, params);
assertNotNull(response);
assertNotNull(response.getKeys());
assertFalse(response.getKeys().isEmpty());
}
Aggregations