use of com.auth0.net.Request in project auth0-java by auth0.
the class ConnectionsEntityTest method shouldListConnections.
@Test
public void shouldListConnections() throws Exception {
@SuppressWarnings("deprecation") Request<List<Connection>> request = api.connections().list(null);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CONNECTIONS_LIST, 200);
List<Connection> response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/connections"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
assertThat(response, hasSize(2));
}
use of com.auth0.net.Request in project auth0-java by auth0.
the class DeviceCredentialsEntityTest method shouldListDeviceCredentialsWithType.
@Test
public void shouldListDeviceCredentialsWithType() throws Exception {
DeviceCredentialsFilter filter = new DeviceCredentialsFilter().withType("public_key");
Request<List<DeviceCredentials>> request = api.deviceCredentials().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_DEVICE_CREDENTIALS_LIST, 200);
List<DeviceCredentials> response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/device-credentials"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("type", "public_key"));
assertThat(response, is(notNullValue()));
assertThat(response, hasSize(2));
}
use of com.auth0.net.Request in project auth0-java by auth0.
the class DeviceCredentialsEntityTest method shouldCreateDeviceCredentials.
@Test
public void shouldCreateDeviceCredentials() throws Exception {
Request<DeviceCredentials> request = api.deviceCredentials().create(new DeviceCredentials("device", "public_key", "val123", "id123", "clientId"));
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_DEVICE_CREDENTIALS, 200);
DeviceCredentials response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("POST", "/api/v2/device-credentials"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
Map<String, Object> body = bodyFromRequest(recordedRequest);
assertThat(body.size(), is(5));
assertThat(body, hasEntry("device_name", "device"));
assertThat(body, hasEntry("type", "public_key"));
assertThat(body, hasEntry("value", "val123"));
assertThat(body, hasEntry("device_id", "id123"));
assertThat(body, hasEntry("client_id", "clientId"));
assertThat(response, is(notNullValue()));
}
use of com.auth0.net.Request in project auth0-java by auth0.
the class DeviceCredentialsEntityTest method shouldListDeviceCredentialsWithClientId.
@Test
public void shouldListDeviceCredentialsWithClientId() throws Exception {
DeviceCredentialsFilter filter = new DeviceCredentialsFilter().withClientId("client_23");
Request<List<DeviceCredentials>> request = api.deviceCredentials().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_DEVICE_CREDENTIALS_LIST, 200);
List<DeviceCredentials> response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/device-credentials"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("client_id", "client_23"));
assertThat(response, is(notNullValue()));
assertThat(response, hasSize(2));
}
use of com.auth0.net.Request in project auth0-java by auth0.
the class DeviceCredentialsEntityTest method shouldListDeviceCredentials.
@Test
public void shouldListDeviceCredentials() throws Exception {
Request<List<DeviceCredentials>> request = api.deviceCredentials().list(null);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_DEVICE_CREDENTIALS_LIST, 200);
List<DeviceCredentials> response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/device-credentials"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
assertThat(response, hasSize(2));
}
Aggregations