OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2012 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 } | 394 } |
395 | 395 |
396 TEST(StringTest, Lower) | 396 TEST(StringTest, Lower) |
397 { | 397 { |
398 EXPECT_STREQ("link", String("LINK").lower().ascii().data()); | 398 EXPECT_STREQ("link", String("LINK").lower().ascii().data()); |
399 EXPECT_STREQ("link", String("lInk").lower().ascii().data()); | 399 EXPECT_STREQ("link", String("lInk").lower().ascii().data()); |
400 EXPECT_STREQ("lin\xE1k", String("lIn\xC1k").lower().latin1().data()); | 400 EXPECT_STREQ("lin\xE1k", String("lIn\xC1k").lower().latin1().data()); |
401 EXPECT_STREQ("link", String::fromUTF8("LIN\xE2\x84\xAA").lower().utf8().data
()); | 401 EXPECT_STREQ("link", String::fromUTF8("LIN\xE2\x84\xAA").lower().utf8().data
()); |
402 } | 402 } |
403 | 403 |
| 404 CString toCStringThroughPrinter(const String& string) |
| 405 { |
| 406 std::ostringstream output; |
| 407 output << string; |
| 408 const std::string& result = output.str(); |
| 409 return CString(result.data(), result.length()); |
| 410 } |
| 411 |
| 412 TEST(StringTest, StringPrinter) |
| 413 { |
| 414 EXPECT_EQ(CString("\"Hello!\""), toCStringThroughPrinter("Hello!")); |
| 415 EXPECT_EQ(CString("\"\\\"\""), toCStringThroughPrinter("\"")); |
| 416 EXPECT_EQ(CString("\"\\\\\""), toCStringThroughPrinter("\\")); |
| 417 EXPECT_EQ(CString("\"\\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u000
7\""), toCStringThroughPrinter(String("\x00\x01\x02\x03\x04\x05\x06\x07", 8))); |
| 418 EXPECT_EQ(CString("\"\\u0008\\t\\n\\u000B\\u000C\\r\\u000E\\u000F\""), toCSt
ringThroughPrinter(String("\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 8))); |
| 419 EXPECT_EQ(CString("\"\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u001
7\""), toCStringThroughPrinter(String("\x10\x11\x12\x13\x14\x15\x16\x17", 8))); |
| 420 EXPECT_EQ(CString("\"\\u0018\\u0019\\u001A\\u001B\\u001C\\u001D\\u001E\\u001
F\""), toCStringThroughPrinter(String("\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F", 8))); |
| 421 EXPECT_EQ(CString("\"\\u007F\\u0080\\u0081\""), toCStringThroughPrinter("\x7
F\x80\x81")); |
| 422 EXPECT_EQ(CString("\"\""), toCStringThroughPrinter(emptyString())); |
| 423 EXPECT_EQ(CString("<null>"), toCStringThroughPrinter(String())); |
| 424 |
| 425 static const UChar unicodeSample[] = { 0x30C6, 0x30B9, 0x30C8 }; // "Test" i
n Japanese. |
| 426 EXPECT_EQ(CString("\"\\u30C6\\u30B9\\u30C8\""), toCStringThroughPrinter(Stri
ng(unicodeSample, WTF_ARRAY_LENGTH(unicodeSample)))); |
| 427 } |
| 428 |
404 } // namespace WTF | 429 } // namespace WTF |
OLD | NEW |