Search in sources :

Example 6 with DeviceCredentials

use of com.auth0.json.mgmt.DeviceCredentials in project auth0-java by auth0.

the class DeviceCredentialsEntityTest method shouldListDeviceCredentialsWithFields.

@Test
public void shouldListDeviceCredentialsWithFields() throws Exception {
    DeviceCredentialsFilter filter = new DeviceCredentialsFilter().withFields("some,random,fields", true);
    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("fields", "some,random,fields"));
    assertThat(recordedRequest, hasQueryParameter("include_fields", "true"));
    assertThat(response, is(notNullValue()));
    assertThat(response, hasSize(2));
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) DeviceCredentialsFilter(com.auth0.client.mgmt.filter.DeviceCredentialsFilter) List(java.util.List) DeviceCredentials(com.auth0.json.mgmt.DeviceCredentials) Test(org.junit.Test)

Aggregations

DeviceCredentials (com.auth0.json.mgmt.DeviceCredentials)6 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)6 Test (org.junit.Test)6 List (java.util.List)5 DeviceCredentialsFilter (com.auth0.client.mgmt.filter.DeviceCredentialsFilter)4