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 17 matching lines...) Expand all Loading... |
28 #include "wtf/MathExtras.h" | 28 #include "wtf/MathExtras.h" |
29 #include "wtf/text/CString.h" | 29 #include "wtf/text/CString.h" |
30 #include "wtf/text/WTFString.h" | 30 #include "wtf/text/WTFString.h" |
31 #include <gtest/gtest.h> | 31 #include <gtest/gtest.h> |
32 #include <limits> | 32 #include <limits> |
33 | 33 |
34 namespace { | 34 namespace { |
35 | 35 |
36 TEST(WTF, StringCreationFromLiteral) | 36 TEST(WTF, StringCreationFromLiteral) |
37 { | 37 { |
38 String stringFromLiteral(ASCIILiteral("Explicit construction syntax")); | 38 String stringFromLiteral("Explicit construction syntax"); |
39 ASSERT_EQ(strlen("Explicit construction syntax"), stringFromLiteral.length()
); | 39 ASSERT_EQ(strlen("Explicit construction syntax"), stringFromLiteral.length()
); |
40 ASSERT_TRUE(stringFromLiteral == "Explicit construction syntax"); | 40 ASSERT_TRUE(stringFromLiteral == "Explicit construction syntax"); |
41 ASSERT_TRUE(stringFromLiteral.is8Bit()); | 41 ASSERT_TRUE(stringFromLiteral.is8Bit()); |
42 ASSERT_TRUE(String("Explicit construction syntax") == stringFromLiteral); | 42 ASSERT_TRUE(String("Explicit construction syntax") == stringFromLiteral); |
43 | 43 |
44 String stringWithTemplate("Template Literal", String::ConstructFromLiteral); | 44 String stringWithTemplate("Template Literal", String::ConstructFromLiteral); |
45 ASSERT_EQ(strlen("Template Literal"), stringWithTemplate.length()); | 45 ASSERT_EQ(strlen("Template Literal"), stringWithTemplate.length()); |
46 ASSERT_TRUE(stringWithTemplate == "Template Literal"); | 46 ASSERT_TRUE(stringWithTemplate == "Template Literal"); |
47 ASSERT_TRUE(stringWithTemplate.is8Bit()); | 47 ASSERT_TRUE(stringWithTemplate.is8Bit()); |
48 ASSERT_TRUE(String("Template Literal") == stringWithTemplate); | 48 ASSERT_TRUE(String("Template Literal") == stringWithTemplate); |
49 } | 49 } |
50 | 50 |
51 TEST(WTF, StringASCII) | 51 TEST(WTF, StringASCII) |
52 { | 52 { |
53 CString output; | 53 CString output; |
54 | 54 |
55 // Null String. | 55 // Null String. |
56 output = String().ascii(); | 56 output = String().ascii(); |
57 ASSERT_STREQ("", output.data()); | 57 ASSERT_STREQ("", output.data()); |
58 | 58 |
59 // Empty String. | 59 // Empty String. |
60 output = emptyString().ascii(); | 60 output = emptyString().ascii(); |
61 ASSERT_STREQ("", output.data()); | 61 ASSERT_STREQ("", output.data()); |
62 | 62 |
63 // Regular String. | 63 // Regular String. |
64 output = String(ASCIILiteral("foobar")).ascii(); | 64 output = String("foobar").ascii(); |
65 ASSERT_STREQ("foobar", output.data()); | 65 ASSERT_STREQ("foobar", output.data()); |
66 } | 66 } |
67 | 67 |
68 static void testNumberToStringECMAScript(double number, const char* reference) | 68 static void testNumberToStringECMAScript(double number, const char* reference) |
69 { | 69 { |
70 CString numberString = String::numberToStringECMAScript(number).latin1(); | 70 CString numberString = String::numberToStringECMAScript(number).latin1(); |
71 ASSERT_STREQ(reference, numberString.data()); | 71 ASSERT_STREQ(reference, numberString.data()); |
72 } | 72 } |
73 | 73 |
74 TEST(WTF, StringNumberToStringECMAScriptBoundaries) | 74 TEST(WTF, StringNumberToStringECMAScriptBoundaries) |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 testString.replaceWithLiteral(UChar(0x00E9 /*U+00E9 is 'é'*/), ""); | 148 testString.replaceWithLiteral(UChar(0x00E9 /*U+00E9 is 'é'*/), ""); |
149 ASSERT_STREQ("rsum", testString.utf8().data()); | 149 ASSERT_STREQ("rsum", testString.utf8().data()); |
150 | 150 |
151 testString = String::fromUTF8("résumé"); | 151 testString = String::fromUTF8("résumé"); |
152 ASSERT_FALSE(testString.is8Bit()); | 152 ASSERT_FALSE(testString.is8Bit()); |
153 testString.replaceWithLiteral('3', "NotFound"); | 153 testString.replaceWithLiteral('3', "NotFound"); |
154 ASSERT_STREQ("résumé", testString.utf8().data()); | 154 ASSERT_STREQ("résumé", testString.utf8().data()); |
155 } | 155 } |
156 | 156 |
157 } // namespace | 157 } // namespace |
OLD | NEW |