use of com.auth0.json.mgmt.logevents.LogEventsPage in project auth0-java by auth0.
the class LogEventsEntityTest method shouldListLogEventsWithSort.
@Test
public void shouldListLogEventsWithSort() throws Exception {
LogEventFilter filter = new LogEventFilter().withSort("date:1");
Request<LogEventsPage> request = api.logEvents().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_LOG_EVENTS_LIST, 200);
LogEventsPage response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/logs"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("sort", "date:1"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
use of com.auth0.json.mgmt.logevents.LogEventsPage in project auth0-java by auth0.
the class LogEventsEntityTest method shouldListLogEventsWithCheckpoint.
@Test
public void shouldListLogEventsWithCheckpoint() throws Exception {
LogEventFilter filter = new LogEventFilter().withCheckpoint("id3", 5);
Request<LogEventsPage> request = api.logEvents().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_LOG_EVENTS_LIST, 200);
LogEventsPage response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/logs"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("from", "id3"));
assertThat(recordedRequest, hasQueryParameter("take", "5"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
use of com.auth0.json.mgmt.logevents.LogEventsPage in project auth0-java by auth0.
the class LogEventsEntityTest method shouldListLogEventsWithFields.
@Test
public void shouldListLogEventsWithFields() throws Exception {
LogEventFilter filter = new LogEventFilter().withFields("some,random,fields", true);
Request<LogEventsPage> request = api.logEvents().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_LOG_EVENTS_LIST, 200);
LogEventsPage response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/logs"));
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.getItems(), hasSize(2));
}
use of com.auth0.json.mgmt.logevents.LogEventsPage in project auth0-java by auth0.
the class LogEventsEntityTest method shouldListLogEventsWithPage.
@Test
public void shouldListLogEventsWithPage() throws Exception {
LogEventFilter filter = new LogEventFilter().withPage(23, 5);
Request<LogEventsPage> request = api.logEvents().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_LOG_EVENTS_LIST, 200);
LogEventsPage response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/logs"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("page", "23"));
assertThat(recordedRequest, hasQueryParameter("per_page", "5"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
use of com.auth0.json.mgmt.logevents.LogEventsPage in project auth0-java by auth0.
the class LogEventsEntityTest method shouldListLogEventsWithQuery.
@Test
public void shouldListLogEventsWithQuery() throws Exception {
LogEventFilter filter = new LogEventFilter().withQuery("email:\\*@gmail.com");
Request<LogEventsPage> request = api.logEvents().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_LOG_EVENTS_LIST, 200);
LogEventsPage response = request.execute();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath("GET", "/api/v2/logs"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("q", "email:\\*@gmail.com"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
Aggregations