use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsRequest in project azure-iot-sdk-java by Azure.
the class HttpsRequestIT method sendHttpsRequestGetsCorrectResponse.
@Test
public void sendHttpsRequestGetsCorrectResponse() throws IOException {
URL url = new URL("https://fonts.googleapis.com/css?family=Inconsolata");
HttpsMethod method = HttpsMethod.GET;
byte[] body = new byte[0];
String encoding = "UTF-8";
HttpsRequest request = new HttpsRequest(url, method, body);
request.setHeaderField("accept-charset", encoding);
HttpsResponse response = request.send();
int testStatus = response.getStatus();
String testBody = new String(response.getBody(), encoding);
int expectedStatus = 200;
String expectedBodyPrefix = "@font-face {\n" + " font-family: 'Inconsolata';";
assertThat(testStatus, is(expectedStatus));
assertThat(testBody, is(startsWith(expectedBodyPrefix)));
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsRequest in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method setReadTimeoutSetsReadTimeout.
// Tests_SRS_HTTPSREQUEST_11_014: [The function shall set the read timeout for the request to the given value.]
@Test
public void setReadTimeoutSetsReadTimeout(@Mocked final HttpsConnection mockConn) throws IOException {
final HttpsMethod httpsMethod = HttpsMethod.POST;
final byte[] body = new byte[0];
final int readTimeout = 1;
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
}
};
HttpsRequest request = new HttpsRequest(mockUrl, httpsMethod, body);
request.setReadTimeoutMillis(readTimeout);
final int expectedReadTimeout = readTimeout;
new Verifications() {
{
mockConn.setReadTimeoutMillis(expectedReadTimeout);
}
};
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsRequest in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method sendSetsHeaderFieldsCorrectly.
// Tests_SRS_HTTPSREQUEST_11_008: [The function shall send an HTTPS request as formatted in the constructor.]
@Test
public void sendSetsHeaderFieldsCorrectly() throws IOException {
final HttpsMethod expectedMethod = HttpsMethod.GET;
final byte[] body = new byte[0];
final String field0 = "test-field0";
final String value0 = "test-value0";
final String field1 = "test-field1";
final String value1 = "test-value1";
final String userAgent = "User-Agent";
final String userAgentValue = TransportUtils.JAVA_DEVICE_CLIENT_IDENTIFIER + TransportUtils.CLIENT_VERSION;
new MockUp<HttpsConnection>() {
Map<String, String> testHeaderFields = new HashMap<>();
@Mock
public void $init(URL url, HttpsMethod method) {
}
@Mock
public void connect() throws IOException {
assertThat(testHeaderFields.size(), is(3));
assertThat(testHeaderFields.get(field0), is(value0));
assertThat(testHeaderFields.get(field1), is(value1));
assertThat(testHeaderFields.get(userAgent), is(userAgentValue));
}
@Mock
public void setRequestHeader(String field, String value) {
testHeaderFields.put(field, value);
}
// every method that is used must be manually mocked.
@Mock
public void setRequestMethod(HttpsMethod method) {
}
@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.setHeaderField(field0, value0);
request.setHeaderField(field1, value1);
request.send();
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsRequest in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method sendReturnsError.
// 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).]
// Tests_SRS_HTTPSREQUEST_11_012: [If an I/O exception occurs because of a bad response status code, the function shall attempt to flush or read the error stream so that the underlying HTTPS connection can be reused.]
@Test
public void sendReturnsError(@Mocked final HttpsConnection mockConn) throws IOException {
final HttpsMethod httpsMethod = HttpsMethod.GET;
final byte[] body = new byte[0];
final byte[] error = { 5, 6, 7, 0, 1 };
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
mockConn.connect();
result = new IOException();
mockConn.readError();
result = error;
}
};
HttpsRequest request = new HttpsRequest(mockUrl, httpsMethod, body);
HttpsResponse response = request.send();
byte[] testError = response.getErrorReason();
final byte[] expectedError = error;
assertThat(testError, is(expectedError));
}
use of com.microsoft.azure.sdk.iot.device.transport.https.HttpsRequest in project azure-iot-sdk-java by Azure.
the class HttpsRequestTest method constructorThrowsIoExceptionIfCannotSetupConnection.
// Tests_SRS_HTTPSREQUEST_11_005: [If an IOException occurs in setting up the HTTPS connection, the function shall throw an IOException.]
@Test(expected = IOException.class)
public void constructorThrowsIoExceptionIfCannotSetupConnection(@Mocked final HttpsConnection mockConn) throws IOException {
final HttpsMethod httpsMethod = HttpsMethod.GET;
final byte[] body = new byte[0];
new NonStrictExpectations() {
{
mockUrl.getProtocol();
result = "https";
new HttpsConnection(mockUrl, httpsMethod);
result = new IOException();
}
};
new HttpsRequest(mockUrl, httpsMethod, body);
}
Aggregations