Skip to content

Commit 3c5794f

Browse files
Disable the stream write tests (#1399)
Disable the stream write tests for data over 20 mb, since the service is not longer available. Relates-To: OLPEDGE-2808 Signed-off-by: Mykhailo Kuchma <ext-mykhailo.kuchma@here.com>
1 parent 5e95535 commit 3c5794f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/functional/olp-cpp-sdk-dataservice-write/DataserviceWriteStreamLayerClientTest.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ TEST_F(DataserviceWriteStreamLayerClientTest, PublishData) {
237237
ASSERT_NO_FATAL_FAILURE(PublishDataSuccessAssertions(response));
238238
}
239239

240-
TEST_F(DataserviceWriteStreamLayerClientTest, PublishDataGreaterThanTwentyMib) {
240+
// Test unavailable since the service is no longer available
241+
TEST_F(DataserviceWriteStreamLayerClientTest,
242+
DISABLED_PublishDataGreaterThanTwentyMib) {
241243
auto large_data =
242244
std::make_shared<std::vector<unsigned char>>(kTwentyMib + 1, 'z');
243245

@@ -355,8 +357,9 @@ TEST_F(DataserviceWriteStreamLayerClientTest,
355357
// response.GetError().GetErrorCode());
356358
}
357359

360+
// Test unavailable since the service is no longer available
358361
TEST_F(DataserviceWriteStreamLayerClientTest,
359-
PublishDataGreaterThanTwentyMibCancel) {
362+
DISABLED_PublishDataGreaterThanTwentyMibCancel) {
360363
auto large_data =
361364
std::make_shared<std::vector<unsigned char>>(kTwentyMib + 1, 'z');
362365

0 commit comments

Comments
 (0)