| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "wtf/OwnPtr.h" | 34 #include "wtf/OwnPtr.h" |
| 35 #include "wtf/text/TextCodec.h" | 35 #include "wtf/text/TextCodec.h" |
| 36 #include "wtf/text/TextEncoding.h" | 36 #include "wtf/text/TextEncoding.h" |
| 37 #include "wtf/text/TextEncodingRegistry.h" | 37 #include "wtf/text/TextEncodingRegistry.h" |
| 38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 39 | 39 |
| 40 namespace WTF { | 40 namespace WTF { |
| 41 | 41 |
| 42 namespace { | 42 namespace { |
| 43 | 43 |
| 44 TEST(TextCodecUTF8, DecodeAscii) | 44 TEST(TextCodecUTF8, DecodeAscii) { |
| 45 { | 45 TextEncoding encoding("UTF-8"); |
| 46 TextEncoding encoding("UTF-8"); | 46 OwnPtr<TextCodec> codec(newTextCodec(encoding)); |
| 47 OwnPtr<TextCodec> codec(newTextCodec(encoding)); | |
| 48 | 47 |
| 49 const char testCase[] = "HelloWorld"; | 48 const char testCase[] = "HelloWorld"; |
| 50 size_t testCaseSize = sizeof(testCase) - 1; | 49 size_t testCaseSize = sizeof(testCase) - 1; |
| 51 | 50 |
| 52 bool sawError = false; | 51 bool sawError = false; |
| 53 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false,
sawError); | 52 const String& result = |
| 54 EXPECT_FALSE(sawError); | 53 codec->decode(testCase, testCaseSize, DataEOF, false, sawError); |
| 55 ASSERT_EQ(testCaseSize, result.length()); | 54 EXPECT_FALSE(sawError); |
| 56 for (size_t i = 0; i < testCaseSize; ++i) { | 55 ASSERT_EQ(testCaseSize, result.length()); |
| 57 EXPECT_EQ(testCase[i], result[i]); | 56 for (size_t i = 0; i < testCaseSize; ++i) { |
| 58 } | 57 EXPECT_EQ(testCase[i], result[i]); |
| 58 } |
| 59 } | 59 } |
| 60 | 60 |
| 61 TEST(TextCodecUTF8, DecodeChineseCharacters) | 61 TEST(TextCodecUTF8, DecodeChineseCharacters) { |
| 62 { | 62 TextEncoding encoding("UTF-8"); |
| 63 TextEncoding encoding("UTF-8"); | 63 OwnPtr<TextCodec> codec(newTextCodec(encoding)); |
| 64 OwnPtr<TextCodec> codec(newTextCodec(encoding)); | |
| 65 | 64 |
| 66 // "Kanji" in Chinese characters. | 65 // "Kanji" in Chinese characters. |
| 67 const char testCase[] = "\xe6\xbc\xa2\xe5\xad\x97"; | 66 const char testCase[] = "\xe6\xbc\xa2\xe5\xad\x97"; |
| 68 size_t testCaseSize = sizeof(testCase) - 1; | 67 size_t testCaseSize = sizeof(testCase) - 1; |
| 69 | 68 |
| 70 bool sawError = false; | 69 bool sawError = false; |
| 71 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false,
sawError); | 70 const String& result = |
| 72 EXPECT_FALSE(sawError); | 71 codec->decode(testCase, testCaseSize, DataEOF, false, sawError); |
| 73 ASSERT_EQ(2u, result.length()); | 72 EXPECT_FALSE(sawError); |
| 74 EXPECT_EQ(0x6f22U, result[0]); | 73 ASSERT_EQ(2u, result.length()); |
| 75 EXPECT_EQ(0x5b57U, result[1]); | 74 EXPECT_EQ(0x6f22U, result[0]); |
| 75 EXPECT_EQ(0x5b57U, result[1]); |
| 76 } | 76 } |
| 77 | 77 |
| 78 TEST(TextCodecUTF8, Decode0xFF) | 78 TEST(TextCodecUTF8, Decode0xFF) { |
| 79 { | 79 TextEncoding encoding("UTF-8"); |
| 80 TextEncoding encoding("UTF-8"); | 80 OwnPtr<TextCodec> codec(newTextCodec(encoding)); |
| 81 OwnPtr<TextCodec> codec(newTextCodec(encoding)); | |
| 82 | 81 |
| 83 bool sawError = false; | 82 bool sawError = false; |
| 84 const String& result = codec->decode("\xff", 1, DataEOF, false, sawError); | 83 const String& result = codec->decode("\xff", 1, DataEOF, false, sawError); |
| 85 EXPECT_TRUE(sawError); | 84 EXPECT_TRUE(sawError); |
| 86 ASSERT_EQ(1u, result.length()); | 85 ASSERT_EQ(1u, result.length()); |
| 87 EXPECT_EQ(0xFFFDU, result[0]); | 86 EXPECT_EQ(0xFFFDU, result[0]); |
| 88 } | 87 } |
| 89 | 88 |
| 90 } // namespace | 89 } // namespace |
| 91 | 90 |
| 92 } // namespace WTF | 91 } // namespace WTF |
| OLD | NEW |