use of mockit.NonStrictExpectations in project azure-iot-sdk-java by Azure.
the class IotHubCompleteUriTest method toStringIsCorrect.
// Tests_SRS_IOTHUBCOMPLETEURI_11_002: [The string representation of the IoT Hub event URI shall be constructed with the format "[iotHubHostname]/devices/[deviceId]/messages/devicebound/[eTag]?api-version=2016-02-03".]
@Test
public void toStringIsCorrect() throws URISyntaxException {
final String iotHubHostname = "test.iothub";
final String deviceId = "test-deviceid";
final String eTag = "test-etag";
final String uriStr = "test-uri-str";
new NonStrictExpectations() {
{
mockIotHubUri.toString();
result = uriStr;
}
};
IotHubCompleteUri completeUri = new IotHubCompleteUri(iotHubHostname, deviceId, eTag);
String testUriStr = completeUri.toString();
final String expectedUriStr = uriStr;
assertThat(testUriStr, is(expectedUriStr));
}
use of mockit.NonStrictExpectations in project azure-iot-sdk-java by Azure.
the class IotHubCompleteUriTest method getHostnameIsCorrect.
// Tests_SRS_IOTHUBCOMPLETEURI_11_003: [The function shall return the hostname given in the constructor.]
@Test
public void getHostnameIsCorrect() throws URISyntaxException {
final String iotHubHostname = "test.iothub";
final String deviceId = "test-deviceid";
final String eTag = "test-etag";
final String hostname = "test-hostname";
new NonStrictExpectations() {
{
mockIotHubUri.getHostname();
result = hostname;
}
};
IotHubCompleteUri completeUri = new IotHubCompleteUri(iotHubHostname, deviceId, eTag);
String testHostname = completeUri.getHostname();
final String expectedHostname = hostname;
assertThat(testHostname, is(expectedHostname));
}
use of mockit.NonStrictExpectations in project azure-iot-sdk-java by Azure.
the class IotHubEventUriTest method getHostnameIsCorrect.
// Tests_SRS_IOTHUBEVENTURI_11_003: [The function shall return the hostname given in the constructor.]
@Test
public void getHostnameIsCorrect() throws URISyntaxException {
final String iotHubHostname = "test.iothub";
final String deviceId = "test-deviceid";
final String hostname = "test-hostname";
new NonStrictExpectations() {
{
mockIotHubUri.getHostname();
result = hostname;
}
};
IotHubEventUri eventUri = new IotHubEventUri(iotHubHostname, deviceId);
String testHostname = eventUri.getHostname();
final String expectedHostname = hostname;
assertThat(testHostname, is(expectedHostname));
}
use of mockit.NonStrictExpectations in project azure-iot-sdk-java by Azure.
the class IotHubEventUriTest method toStringIsCorrect.
// Tests_SRS_IOTHUBEVENTURI_11_002: [The string representation of the IoT Hub event URI shall be constructed with the format '[iotHubHostname]/devices/[deviceId]/messages/events?api-version=2016-02-03 '.]
@Test
public void toStringIsCorrect() throws URISyntaxException {
final String iotHubHostname = "test.iothub";
final String deviceId = "test-deviceid";
final String uriStr = "test-uri-str";
new NonStrictExpectations() {
{
mockIotHubUri.toString();
result = uriStr;
}
};
IotHubEventUri eventUri = new IotHubEventUri(iotHubHostname, deviceId);
String testUriStr = eventUri.toString();
final String expectedUriStr = uriStr;
assertThat(testUriStr, is(expectedUriStr));
}
use of mockit.NonStrictExpectations in project azure-iot-sdk-java by Azure.
the class IotHubMessageUriTest method getPathIsCorrect.
// Tests_SRS_IOTHUBMESSAGEURI_11_004: [The function shall return a URI with the format '/devices/[deviceId]/messages/devicebound.]
@Test
public void getPathIsCorrect() throws URISyntaxException {
final String iotHubHostname = "test.iothub";
final String deviceId = "test-deviceid";
final String path = "test-path";
new NonStrictExpectations() {
{
mockIotHubUri.getPath();
result = path;
}
};
IotHubMessageUri messageUri = new IotHubMessageUri(iotHubHostname, deviceId);
String testPath = messageUri.getPath();
final String expectedPath = path;
assertThat(testPath, is(expectedPath));
}
Aggregations