OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import "ios/net/url_scheme_util.h" |
| 6 |
| 7 #import <Foundation/Foundation.h> |
| 8 |
| 9 #import "testing/gtest_mac.h" |
| 10 #include "url/gurl.h" |
| 11 |
| 12 namespace net { |
| 13 |
| 14 const char* kSchemeTestData[] = { |
| 15 "http://foo.com", |
| 16 "https://foo.com", |
| 17 "data:text/html;charset=utf-8,Hello", |
| 18 "about:blank", |
| 19 "chrome://settings", |
| 20 }; |
| 21 |
| 22 TEST(URLSchemeUtilTest, NSURLHasDataScheme) { |
| 23 for (unsigned int i = 0; i < arraysize(kSchemeTestData); ++i) { |
| 24 const char* url = kSchemeTestData[i]; |
| 25 bool nsurl_result = UrlHasDataScheme( |
| 26 [NSURL URLWithString:[NSString stringWithUTF8String:url]]); |
| 27 bool gurl_result = GURL(url).SchemeIs(url::kDataScheme); |
| 28 EXPECT_EQ(gurl_result, nsurl_result) << "Scheme check failed for " << url; |
| 29 } |
| 30 } |
| 31 |
| 32 } // namespace net |
OLD | NEW |