Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 17 | #include "androidfw/StringPiece.h" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 18 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 19 | #include <algorithm> |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 20 | #include <string> |
| 21 | #include <vector> |
| 22 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 23 | #include "TestHelpers.h" |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 24 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 25 | namespace android { |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 26 | |
| 27 | TEST(StringPieceTest, CompareNonNullTerminatedPiece) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 28 | StringPiece a("hello world", 5); |
| 29 | StringPiece b("hello moon", 5); |
| 30 | EXPECT_EQ(a, b); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 31 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 32 | StringPiece16 a16(u"hello world", 5); |
| 33 | StringPiece16 b16(u"hello moon", 5); |
| 34 | EXPECT_EQ(a16, b16); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | TEST(StringPieceTest, PiecesHaveCorrectSortOrder) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 38 | std::string testing("testing"); |
| 39 | std::string banana("banana"); |
| 40 | std::string car("car"); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 41 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 42 | EXPECT_TRUE(StringPiece(testing) > banana); |
| 43 | EXPECT_TRUE(StringPiece(testing) > car); |
| 44 | EXPECT_TRUE(StringPiece(banana) < testing); |
| 45 | EXPECT_TRUE(StringPiece(banana) < car); |
| 46 | EXPECT_TRUE(StringPiece(car) < testing); |
| 47 | EXPECT_TRUE(StringPiece(car) > banana); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | TEST(StringPieceTest, PiecesHaveCorrectSortOrderUtf8) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 51 | std::string testing("testing"); |
| 52 | std::string banana("banana"); |
| 53 | std::string car("car"); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 54 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 55 | EXPECT_TRUE(StringPiece(testing) > banana); |
| 56 | EXPECT_TRUE(StringPiece(testing) > car); |
| 57 | EXPECT_TRUE(StringPiece(banana) < testing); |
| 58 | EXPECT_TRUE(StringPiece(banana) < car); |
| 59 | EXPECT_TRUE(StringPiece(car) < testing); |
| 60 | EXPECT_TRUE(StringPiece(car) > banana); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 61 | } |
| 62 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 63 | } // namespace android |