Skip to content

Commit

Permalink
Add POSIX tests
Browse files Browse the repository at this point in the history
b/316954263

Change-Id: I913c2f13a4c9748ae88f47ca79ffe4500fca3a63
  • Loading branch information
madhurajayaraman committed Jan 8, 2024
1 parent 0f8e19c commit a970b17
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 4 deletions.
2 changes: 2 additions & 0 deletions starboard/nplb/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ target(gtest_target_type, "nplb") {
"player_write_sample_test.cc",
"posix_compliance/posix_string_compare_no_case_n_test.cc",
"posix_compliance/posix_string_compare_no_case_test.cc",
"posix_compliance/posix_string_format_test.cc",
"posix_compliance/posix_string_format_wide_test.cc",
"random_helpers.cc",
"recursive_mutex_test.cc",
"rwlock_test.cc",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

namespace starboard {
namespace nplb {
namespace posix_compliance {
namespace {

#if SB_API_VERSION >= 16
Expand Down Expand Up @@ -58,6 +57,5 @@ TEST(PosixCompareNoCaseNTest, SunnyDayCase) {
#endif // SB_API_VERSION >= 16

} // namespace
} // namespace posix_compliance
} // namespace nplb
} // namespace starboard
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

namespace starboard {
namespace nplb {
namespace posix_compliance {
namespace {

#if SB_API_VERSION >= 16
Expand All @@ -40,6 +39,5 @@ TEST(PosixCompareNoCaseTest, SunnyDayCase) {
}
#endif // SB_API_VERSION >= 16
} // namespace
} // namespace posix_compliance
} // namespace nplb
} // namespace starboard
50 changes: 50 additions & 0 deletions starboard/nplb/posix_compliance/posix_string_format_test.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Copyright 2015 The Cobalt Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Here we are not trying to do anything fancy, just to really sanity check that
// this is hooked up to something.
#if SB_API_VERSION >= 16

#include "starboard/common/string.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace starboard {
namespace nplb {
namespace {

int Format(char* out_buffer, size_t buffer_size, const char* format, ...) {
va_list arguments;
va_start(arguments, format);
int result = vsnprintf(out_buffer, buffer_size, format, arguments);
va_end(arguments);
return result;
}

TEST(PosixFormatTest, SunnyDay) {
const char kExpected[] = "a1b2c3test";
char destination[1024] = {0};
int result = Format(destination, SB_ARRAY_SIZE(destination), "a%db%dc%d%s", 1,
2, 3, "test");
size_t expected_length = strlen(kExpected);
EXPECT_EQ(expected_length, result);
for (size_t i = 0; i <= expected_length; ++i) {
EXPECT_EQ(kExpected[i], destination[i]);
}
}

} // namespace
} // namespace nplb
} // namespace starboard
//
#endif // SB_API_VERSION >= 16
53 changes: 53 additions & 0 deletions starboard/nplb/posix_compliance/posix_string_format_wide_test.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// Copyright 2015 The Cobalt Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Here we are not trying to do anything fancy, just to really sanity check that
// this is hooked up to something.
#if SB_API_VERSION >= 16

#include "starboard/common/string.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace starboard {
namespace nplb {
namespace {

int Format(wchar_t* out_buffer,
size_t buffer_size,
const wchar_t* format,
...) {
va_list arguments;
va_start(arguments, format);
int result = vswprintf(out_buffer, buffer_size, format, arguments);
va_end(arguments);
return result;
}

TEST(PosixFormatWideTest, SunnyDay) {
const wchar_t kExpected[] = L"a1b2c3test";
wchar_t destination[1024] = {0};
int result = Format(destination, SB_ARRAY_SIZE(destination), L"a%db%dc%d%s",
1, 2, 3, "test");
size_t expected_length = wcslen(kExpected);
EXPECT_EQ(expected_length, result);
for (size_t i = 0; i <= expected_length; ++i) {
EXPECT_EQ(kExpected[i], destination[i]);
}
}

} // namespace
} // namespace nplb
} // namespace starboard

#endif // SB_API_VERSION >= 16

0 comments on commit a970b17

Please sign in to comment.