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

Side by Side Diff: ios/net/url_scheme_util_unittest.mm

Issue 994823004: [iOS] Upstream //ios/net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months 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
(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
OLDNEW
« ios/net/clients/crn_forwarding_network_client_factory.h ('K') | « ios/net/url_scheme_util.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698