-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
b/316954263 Change-Id: I3e0452f0bb623042a905c8a65841fac1282d0820
- Loading branch information
1 parent
98da637
commit 35ba4c3
Showing
3 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
starboard/nplb/posix_compliance/posix_string_compare_no_case_n_test.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// 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. | ||
|
||
#include "starboard/common/string.h" | ||
#include "testing/gtest/include/gtest/gtest.h" | ||
|
||
namespace starboard { | ||
namespace nplb { | ||
namespace { | ||
|
||
#if SB_API_VERSION >= 16 | ||
TEST(SbStringCompareNoCaseNTest, SunnyDaySelf) { | ||
const char kString[] = "0123456789"; | ||
EXPECT_EQ(0, strncasecmp(kString, kString, strlen(kString))); | ||
EXPECT_EQ(0, strncasecmp("", "", 0)); | ||
} | ||
|
||
TEST(SbStringCompareNoCaseNTest, SunnyDayEmptyLessThanNotEmpty) { | ||
const char kString[] = "0123456789"; | ||
EXPECT_GT(0, strncasecmp("", kString, strlen(kString))); | ||
} | ||
|
||
TEST(SbStringCompareNoCaseNTest, SunnyDayEmptyZeroNEqual) { | ||
const char kString[] = "0123456789"; | ||
EXPECT_EQ(0, strncasecmp("", kString, 0)); | ||
} | ||
|
||
TEST(SbStringCompareNoCaseNTest, SunnyDayBigN) { | ||
const char kString[] = "0123456789"; | ||
EXPECT_EQ(0, strncasecmp(kString, kString, strlen(kString) * 2)); | ||
} | ||
|
||
TEST(SbStringCompareNoCaseNTest, SunnyDayCase) { | ||
const char kString1[] = "aBcDeFgHiJkLmNoPqRsTuVwXyZ"; | ||
const char kString2[] = "AbCdEfGhIjKlMnOpQrStUvWxYz"; | ||
EXPECT_EQ(0, strncasecmp(kString1, kString2, strlen(kString1))); | ||
EXPECT_EQ(0, strncasecmp(kString2, kString1, strlen(kString2))); | ||
|
||
const char kString3[] = "aBcDeFgHiJkLmaBcDeFgHiJkLm"; | ||
const char kString4[] = "AbCdEfGhIjKlMnOpQrStUvWxYz"; | ||
EXPECT_GT(0, strncasecmp(kString3, kString4, strlen(kString3))); | ||
EXPECT_LT(0, strncasecmp(kString4, kString3, strlen(kString4))); | ||
EXPECT_EQ(0, strncasecmp(kString3, kString4, strlen(kString3) / 2)); | ||
EXPECT_EQ(0, strncasecmp(kString4, kString3, strlen(kString4) / 2)); | ||
} | ||
#endif // SB_API_VERSION >= 16 | ||
|
||
} // namespace | ||
} // namespace nplb | ||
} // namespace starboard |
43 changes: 43 additions & 0 deletions
43
starboard/nplb/posix_compliance/posix_string_compare_no_case_test.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// 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. | ||
|
||
#include "starboard/common/string.h" | ||
#include "testing/gtest/include/gtest/gtest.h" | ||
|
||
namespace starboard { | ||
namespace nplb { | ||
namespace { | ||
|
||
#if SB_API_VERSION >= 16 | ||
TEST(SbStringCompareNoCaseTest, SunnyDaySelf) { | ||
const char kString[] = "0123456789"; | ||
EXPECT_EQ(0, strcasecmp(kString, kString)); | ||
EXPECT_EQ(0, strcasecmp("", "")); | ||
} | ||
|
||
TEST(SbStringCompareNoCaseTest, SunnyDayEmptyLessThanNotEmpty) { | ||
const char kString[] = "0123456789"; | ||
EXPECT_GT(0, strcasecmp("", kString)); | ||
} | ||
|
||
TEST(SbStringCompareNoCaseTest, SunnyDayCase) { | ||
const char kString1[] = "aBcDeFgHiJkLmNoPqRsTuVwXyZ"; | ||
const char kString2[] = "AbCdEfGhIjKlMnOpQrStUvWxYz"; | ||
EXPECT_EQ(0, strcasecmp(kString1, kString2)); | ||
EXPECT_EQ(0, strcasecmp(kString2, kString1)); | ||
} | ||
#endif // SB_API_VERSION >= 16 | ||
} // namespace | ||
} // namespace nplb | ||
} // namespace starboard |