Index: ios/net/nsurlrequest_util_unittest.mm |
diff --git a/ios/net/nsurlrequest_util_unittest.mm b/ios/net/nsurlrequest_util_unittest.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..01bd2f74646a73fd66e157e248cdb5fd92d60aca |
--- /dev/null |
+++ b/ios/net/nsurlrequest_util_unittest.mm |
@@ -0,0 +1,47 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ios/net/nsurlrequest_util.h" |
+ |
+#include "base/mac/scoped_nsobject.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+namespace { |
+ |
+// Tests that FormatUrlRequestForLogging outputs the string in the form: |
+// request:<url> request.mainDocURL:<mainDocumentURL>. |
+TEST(NSURLRequestUtilTest, FormatUrlRequestForLogging) { |
+ base::scoped_nsobject<NSMutableURLRequest> request( |
+ [[NSMutableURLRequest alloc] init]); |
+ request.get().URL = [NSURL URLWithString:@"http://www.google.com"]; |
+ request.get().mainDocumentURL = |
+ [NSURL URLWithString:@"http://www.google1.com"]; |
+ std::string actualString, expectedString; |
+ |
+ actualString = net::FormatUrlRequestForLogging(request); |
+ expectedString = "request: http://www.google.com" |
+ " request.mainDocURL: http://www.google1.com"; |
+ EXPECT_EQ(expectedString, actualString); |
+ |
+ request.get().URL = nil; |
+ request.get().mainDocumentURL = |
+ [NSURL URLWithString:@"http://www.google1.com"]; |
+ actualString = net::FormatUrlRequestForLogging(request); |
+ expectedString = "request: [nil] request.mainDocURL: http://www.google1.com"; |
+ EXPECT_EQ(expectedString, actualString); |
+ |
+ request.get().URL = [NSURL URLWithString:@"http://www.google.com"]; |
+ request.get().mainDocumentURL = nil; |
+ actualString = net::FormatUrlRequestForLogging(request); |
+ expectedString = "request: http://www.google.com request.mainDocURL: [nil]"; |
+ EXPECT_EQ(expectedString, actualString); |
+ |
+ request.get().URL = nil; |
+ request.get().mainDocumentURL = nil; |
+ actualString = net::FormatUrlRequestForLogging(request); |
+ expectedString = "request: [nil] request.mainDocURL: [nil]"; |
+ EXPECT_EQ(expectedString, actualString); |
+} |
+ |
+} // namespace |