use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsMethod in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method sendHasCorrectHttpsMethod.
// Tests_SRS_HTTPSREQUEST_11_008: [The function shall send an HTTPS request as formatted in the constructor.]
@Test
public void sendHasCorrectHttpsMethod() throws IOException {
final HttpsMethod expectedMethod = HttpsMethod.GET;
final byte[] body = new byte[0];
new MockUp<HttpsConnection>() {
HttpsMethod testMethod;
@Mock
public void $init(URL url, HttpsMethod method) {
this.testMethod = method;
}
@Mock
public void connect() throws IOException {
assertThat(testMethod, is(expectedMethod));
}
@Mock
public void setRequestMethod(HttpsMethod method) {
this.testMethod = method;
}
// every method that is used must be manually mocked.
@Mock
public void setRequestHeader(String field, String value) {
}
@Mock
public void writeOutput(byte[] body) {
}
@Mock
public byte[] readInput() throws IOException {
return new byte[0];
}
@Mock
public byte[] readError() throws IOException {
return new byte[0];
}
@Mock
public int getResponseStatus() throws IOException {
return 0;
}
@Mock
public Map<String, List<String>> getResponseHeaders() throws IOException {
return new HashMap<>();
}
};
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
}
};
HttpsRequest request = new HttpsRequest(mockUrl, expectedMethod, body);
request.send();
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsMethod in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method constructorSetsHttpsMethodCorrectly.
// Tests_SRS_HTTPSREQUEST_11_004: [The function shall use the given HTTPS method (i.e. GET) as the request method.]
@Test
public void constructorSetsHttpsMethodCorrectly(@Mocked final HttpsConnection mockConn) throws IOException {
final HttpsMethod httpsMethod = HttpsMethod.GET;
final byte[] body = new byte[0];
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
}
};
new HttpsRequest(mockUrl, httpsMethod, body);
new Verifications() {
{
new HttpsConnection((URL) any, httpsMethod);
}
};
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsMethod in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method sendReadsStatusCode.
// Tests_SRS_HTTPSREQUEST_11_009: [The function shall return the HTTPS response received, including the status code, body, header fields, and error reason (if any).]
@Test
public void sendReadsStatusCode(@Mocked final HttpsConnection mockConn) throws IOException {
final HttpsMethod httpsMethod = HttpsMethod.GET;
final byte[] body = new byte[0];
final int status = 204;
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
mockConn.getResponseStatus();
result = status;
}
};
HttpsRequest request = new HttpsRequest(mockUrl, httpsMethod, body);
HttpsResponse response = request.send();
int testStatus = response.getStatus();
final int expectedStatus = status;
assertThat(testStatus, is(expectedStatus));
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsMethod in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method sendWritesBodyToOutputStream.
// Tests_SRS_HTTPSREQUEST_11_008: [The function shall send an HTTPS request as formatted in the constructor.]
@Test
public void sendWritesBodyToOutputStream() throws IOException {
final HttpsMethod httpsMethod = HttpsMethod.POST;
final byte[] expectedBody = { 1, 2, 3 };
new MockUp<HttpsConnection>() {
byte[] testBody;
@Mock
public void $init(URL url, HttpsMethod method) {
}
@Mock
public void connect() throws IOException {
assertThat(testBody, is(expectedBody));
}
@Mock
public void writeOutput(byte[] body) {
this.testBody = body;
}
// every method that is used must be manually mocked.
@Mock
public void setRequestHeader(String field, String value) {
}
@Mock
public void setRequestMethod(HttpsMethod method) {
}
@Mock
public byte[] readInput() throws IOException {
return new byte[0];
}
@Mock
public byte[] readError() throws IOException {
return new byte[0];
}
@Mock
public int getResponseStatus() throws IOException {
return 0;
}
@Mock
public Map<String, List<String>> getResponseHeaders() throws IOException {
return new HashMap<>();
}
};
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
}
};
HttpsRequest request = new HttpsRequest(mockUrl, httpsMethod, expectedBody);
request.send();
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsMethod in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method sendReturnsStatusCodeOnBadStatusException.
// Tests_SRS_HTTPSREQUEST_11_009: [The function shall return the HTTPS response received, including the status code, body, header fields, and error reason (if any).]
@Test
public void sendReturnsStatusCodeOnBadStatusException(@Mocked final HttpsConnection mockConn) throws IOException {
final HttpsMethod httpsMethod = HttpsMethod.POST;
final byte[] body = new byte[0];
final int badStatus = 404;
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
mockConn.connect();
result = new IOException();
mockConn.getResponseStatus();
result = badStatus;
}
};
HttpsRequest request = new HttpsRequest(mockUrl, httpsMethod, body);
HttpsResponse response = request.send();
int testStatus = response.getStatus();
final int expectedStatus = badStatus;
assertThat(testStatus, is(expectedStatus));
}
Aggregations