Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: third_party/WebKit/Source/wtf/testing/WTFTestPrintersTest.cpp

Issue 1436153002: Apply clang-format with Chromium-style without column limit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
34 #include "wtf/text/CString.h" 34 #include "wtf/text/CString.h"
35 #include "wtf/text/WTFString.h" 35 #include "wtf/text/WTFString.h"
36 #include <gtest/gtest.h> 36 #include <gtest/gtest.h>
37 #include <sstream> 37 #include <sstream>
38 #include <string> 38 #include <string>
39 39
40 using namespace WTF; 40 using namespace WTF;
41 41
42 namespace { 42 namespace {
43 43
44 CString toCStringThroughPrinter(const String& string) 44 CString toCStringThroughPrinter(const String& string) {
45 { 45 std::ostringstream output;
46 std::ostringstream output; 46 output << string;
47 output << string; 47 const std::string& result = output.str();
48 const std::string& result = output.str(); 48 return CString(result.data(), result.length());
49 return CString(result.data(), result.length());
50 } 49 }
51 50
52 TEST(WTFTestHelpersTest, StringPrinter) 51 TEST(WTFTestHelpersTest, StringPrinter) {
53 { 52 EXPECT_EQ(CString("\"Hello!\""), toCStringThroughPrinter("Hello!"));
54 EXPECT_EQ(CString("\"Hello!\""), toCStringThroughPrinter("Hello!")); 53 EXPECT_EQ(CString("\"\\\"\""), toCStringThroughPrinter("\""));
55 EXPECT_EQ(CString("\"\\\"\""), toCStringThroughPrinter("\"")); 54 EXPECT_EQ(CString("\"\\\\\""), toCStringThroughPrinter("\\"));
56 EXPECT_EQ(CString("\"\\\\\""), toCStringThroughPrinter("\\")); 55 EXPECT_EQ(CString("\"\\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u0007\ ""), toCStringThroughPrinter(String("\x00\x01\x02\x03\x04\x05\x06\x07", 8)));
57 EXPECT_EQ(CString("\"\\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u000 7\""), toCStringThroughPrinter(String("\x00\x01\x02\x03\x04\x05\x06\x07", 8))); 56 EXPECT_EQ(CString("\"\\u0008\\t\\n\\u000B\\u000C\\r\\u000E\\u000F\""), toCStri ngThroughPrinter(String("\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 8)));
58 EXPECT_EQ(CString("\"\\u0008\\t\\n\\u000B\\u000C\\r\\u000E\\u000F\""), toCSt ringThroughPrinter(String("\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 8))); 57 EXPECT_EQ(CString("\"\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u0017\ ""), toCStringThroughPrinter(String("\x10\x11\x12\x13\x14\x15\x16\x17", 8)));
59 EXPECT_EQ(CString("\"\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u001 7\""), toCStringThroughPrinter(String("\x10\x11\x12\x13\x14\x15\x16\x17", 8))); 58 EXPECT_EQ(CString("\"\\u0018\\u0019\\u001A\\u001B\\u001C\\u001D\\u001E\\u001F\ ""), toCStringThroughPrinter(String("\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F", 8)));
60 EXPECT_EQ(CString("\"\\u0018\\u0019\\u001A\\u001B\\u001C\\u001D\\u001E\\u001 F\""), toCStringThroughPrinter(String("\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F", 8))); 59 EXPECT_EQ(CString("\"\\u007F\\u0080\\u0081\""), toCStringThroughPrinter("\x7F\ x80\x81"));
61 EXPECT_EQ(CString("\"\\u007F\\u0080\\u0081\""), toCStringThroughPrinter("\x7 F\x80\x81")); 60 EXPECT_EQ(CString("\"\""), toCStringThroughPrinter(emptyString()));
62 EXPECT_EQ(CString("\"\""), toCStringThroughPrinter(emptyString())); 61 EXPECT_EQ(CString("<null>"), toCStringThroughPrinter(String()));
63 EXPECT_EQ(CString("<null>"), toCStringThroughPrinter(String()));
64 62
65 static const UChar unicodeSample[] = { 0x30C6, 0x30B9, 0x30C8 }; // "Test" i n Japanese. 63 static const UChar unicodeSample[] = {0x30C6, 0x30B9, 0x30C8}; // "Test" in J apanese.
66 EXPECT_EQ(CString("\"\\u30C6\\u30B9\\u30C8\""), toCStringThroughPrinter(Stri ng(unicodeSample, WTF_ARRAY_LENGTH(unicodeSample)))); 64 EXPECT_EQ(CString("\"\\u30C6\\u30B9\\u30C8\""), toCStringThroughPrinter(String (unicodeSample, WTF_ARRAY_LENGTH(unicodeSample))));
67
68 } 65 }
69
70 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698