Skip to content

Commit

Permalink
Disable the stream write tests (#1399)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
mykhailo-kuchma committed May 16, 2023
1 parent 5e95535 commit 3c5794f
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ TEST_F(DataserviceWriteStreamLayerClientTest, PublishData) {
ASSERT_NO_FATAL_FAILURE(PublishDataSuccessAssertions(response));
}

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

Expand Down Expand Up @@ -355,8 +357,9 @@ TEST_F(DataserviceWriteStreamLayerClientTest,
// response.GetError().GetErrorCode());
}

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

Expand Down

0 comments on commit 3c5794f

Please sign in to comment.