use of com.auth0.json.mgmt.Connection in project auth0-java by auth0.
the class ConnectionsEntityTest method shouldListConnectionsWithFields.
@Test
public void shouldListConnectionsWithFields() throws Exception {
ConnectionFilter filter = new ConnectionFilter().withFields("some,random,fields", true);
@SuppressWarnings("deprecation") Request<List<Connection>> request = api.connections().list(filter);
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(recordedRequest, hasQueryParameter("fields", "some,random,fields"));
assertThat(recordedRequest, hasQueryParameter("include_fields", "true"));
assertThat(response, is(notNullValue()));
assertThat(response, hasSize(2));
}
use of com.auth0.json.mgmt.Connection in project auth0-java by auth0.
the class ConnectionsEntityTest method shouldThrowOnUpdateConnectionWithNullId.
@Test
public void shouldThrowOnUpdateConnectionWithNullId() {
exception.expect(IllegalArgumentException.class);
exception.expectMessage("'connection id' cannot be null!");
api.connections().update(null, new Connection("my-connection", "auth0"));
}
use of com.auth0.json.mgmt.Connection in project auth0-java by auth0.
the class ConnectionsEntityTest method shouldListConnectionsWithName.
@Test
public void shouldListConnectionsWithName() throws Exception {
ConnectionFilter filter = new ConnectionFilter().withName("my-connection");
@SuppressWarnings("deprecation") Request<List<Connection>> request = api.connections().list(filter);
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(recordedRequest, hasQueryParameter("name", "my-connection"));
assertThat(response, is(notNullValue()));
assertThat(response, hasSize(2));
}
use of com.auth0.json.mgmt.Connection in project auth0-java by auth0.
the class ConnectionsEntityTest method shouldNotListConnectionsWithTotals.
@Test
public void shouldNotListConnectionsWithTotals() throws Exception {
ConnectionFilter filter = new ConnectionFilter().withTotals(true);
@SuppressWarnings("deprecation") Request<List<Connection>> request = api.connections().list(filter);
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(recordedRequest, not(hasQueryParameter("include_totals")));
assertThat(response, is(notNullValue()));
assertThat(response, hasSize(2));
}
use of com.auth0.json.mgmt.Connection 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));
}
Aggregations