// Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Basic tests that verify our KURL's interface behaves the same as the // original KURL's. #include "config.h" #include "base/compiler_specific.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/glue/glue_util.h" MSVC_PUSH_WARNING_LEVEL(0); // This is because we have multiple headers called "CString.h" and KURL.cpp // can grab the wrong one. #include "third_party/WebKit/WebCore/platform/text/CString.h" // This evil preprocessor hack allows us to run both the original KURL and our // KURL code at the same time regardless of build options. #define KURL_DECORATE_GLOBALS // Old KURL #undef USE_GOOGLE_URL_LIBRARY #define KURL WebKitKURL #include "KURL.h" #include "KURL.cpp" // Google's KURL #undef KURL_h // So the header is re-included. #undef KURL // Prevent warning on redefinition. #define USE_GOOGLE_URL_LIBRARY #define KURL GoogleKURL #include "KURL.h" #include "GKURL.cpp" MSVC_POP_WARNING(); #undef LOG #include "base/basictypes.h" #include "base/string16.h" #include "base/string_util.h" namespace { struct ComponentCase { const char* url; const char* protocol; const char* host; const int port; const char* user; const char* pass; const char* path; const char* last_path; const char* query; const char* ref; }; // Output stream operator so gTest's macros work with WebCore strings. std::ostream& operator<<(std::ostream& out, const WebCore::String& str) { if (str.isEmpty()) return out; return out << WideToUTF8(std::wstring( reinterpret_cast(str.characters()), str.length())); } } // namespace // Test the cases where we should be the same as WebKit's old KURL TEST(GKURL, SameGetters) { const char* cases[] = { // Regular stuff "http://www.google.com/foo/blah?bar=baz#ref", "http://foo.com:1234/foo/bar/", "http://www.google.com?#", "https://me:pass@google.com:23#foo", "javascript:hello!//world", }; for (size_t i = 0; i < arraysize(cases); i++) { // UTF-8 WebCore::WebKitKURL kurl(cases[i]); WebCore::GoogleKURL gurl(cases[i]); EXPECT_EQ(kurl.protocol(), gurl.protocol()); EXPECT_EQ(kurl.host(), gurl.host()); EXPECT_EQ(kurl.port(), gurl.port()); EXPECT_EQ(kurl.user(), gurl.user()); EXPECT_EQ(kurl.pass(), gurl.pass()); EXPECT_EQ(kurl.lastPathComponent(), gurl.lastPathComponent()); EXPECT_EQ(kurl.query(), gurl.query()); EXPECT_EQ(kurl.ref(), gurl.ref()); EXPECT_EQ(kurl.hasRef(), gurl.hasRef()); // UTF-16 std::wstring wstr(UTF8ToWide(cases[i])); WebCore::String utf16( reinterpret_cast(wstr.c_str()), static_cast(wstr.length())); kurl = WebCore::WebKitKURL(utf16); gurl = WebCore::GoogleKURL(utf16); EXPECT_EQ(kurl.protocol(), gurl.protocol()); EXPECT_EQ(kurl.host(), gurl.host()); EXPECT_EQ(kurl.port(), gurl.port()); EXPECT_EQ(kurl.user(), gurl.user()); EXPECT_EQ(kurl.pass(), gurl.pass()); EXPECT_EQ(kurl.lastPathComponent(), gurl.lastPathComponent()); EXPECT_EQ(kurl.query(), gurl.query()); EXPECT_EQ(kurl.ref(), gurl.ref()); EXPECT_EQ(kurl.hasRef(), gurl.hasRef()); }; } // Test a few cases where we're different just to make sure we give reasonable // output. TEST(GKURL, DifferentGetters) { ComponentCase cases[] = { // url protocol host port user pass path last_path query ref // Old WebKit allows references and queries in what we call "path" URLs // like javascript, so the path here will only consist of "hello!". {"javascript:hello!?#/\\world", "javascript", "", 0, "", NULL, "hello!?#/\\world", "world", "", NULL}, // Old WebKit doesn't handle "parameters" in paths, so will // disagree with us about where the path is for this URL. {"http://a.com/hello;world", "http", "a.com", 0, "", NULL, "/hello;world", "hello", "", NULL}, // WebKit doesn't like UTF-8 or UTF-16 input. {"http://\xe4\xbd\xa0\xe5\xa5\xbd\xe4\xbd\xa0\xe5\xa5\xbd/", "http", "xn--6qqa088eba", 0, "", NULL, "/", NULL, "", NULL}, // WebKit %-escapes non-ASCII characters in reference, but we don't. {"http://www.google.com/foo/blah?bar=baz#\xce\xb1\xce\xb2", "http", "www.google.com", 0, "", NULL, "/foo/blah/", "blah", "?bar=baz", "\xce\xb1\xce\xb2"} }; for (size_t i = 0; i < arraysize(cases); i++) { WebCore::GoogleKURL gurl(cases[i].url); EXPECT_EQ(cases[i].protocol, gurl.protocol()); EXPECT_EQ(cases[i].host, gurl.host()); EXPECT_EQ(cases[i].port, gurl.port()); EXPECT_EQ(cases[i].user, gurl.user()); EXPECT_EQ(cases[i].pass, gurl.pass()); EXPECT_EQ(cases[i].last_path, gurl.lastPathComponent()); EXPECT_EQ(cases[i].query, gurl.query()); // Want to compare UCS-16 refs (or to NULL). if (cases[i].ref) { EXPECT_EQ(webkit_glue::StdWStringToString(UTF8ToWide(cases[i].ref)), gurl.ref()); } else { EXPECT_TRUE(gurl.ref().isNull()); } } } // Ensures that both ASCII and UTF-8 canonical URLs are handled properly and we // get the correct string object out. TEST(GKURL, UTF8) { const char ascii_url[] = "http://foo/bar#baz"; WebCore::GoogleKURL ascii_gurl(ascii_url); EXPECT_TRUE(ascii_gurl.string() == WebCore::String(ascii_url)); // When the result is ASCII, we should get an ASCII String. Some // code depends on being able to compare the result of the .string() // getter with another String, and the isASCIIness of the two // strings must match for these functions (like equalIgnoringCase). EXPECT_TRUE(WebCore::equalIgnoringCase(ascii_gurl, WebCore::String(ascii_url))); // Reproduce code path in FrameLoader.cpp -- equalIgnoringCase implicitly // expects gkurl.protocol() to have been created as ascii. WebCore::GoogleKURL mailto("mailto:foo@foo.com"); EXPECT_TRUE(WebCore::equalIgnoringCase(mailto.protocol(), "mailto")); const char utf8_url[] = "http://foo/bar#\xe4\xbd\xa0\xe5\xa5\xbd"; WebCore::GoogleKURL utf8_gurl(utf8_url); EXPECT_TRUE(utf8_gurl.string() == webkit_glue::StdWStringToString(UTF8ToWide(utf8_url))); } TEST(GKURL, Setters) { // Replace the starting URL with the given components one at a time and // verify that we're always the same as the old KURL. // // Note that old KURL won't canonicalize the default port away, so we // can't set setting the http port to "80" (or even "0"). // // We also can't test clearing the query, since ComponentCase cases[] = { // url protocol host port user pass path last_path query ref {"http://www.google.com/", "https", "news.google.com", 8888, "me", "pass", "/foo", NULL, "?q=asdf", "heehee"}, {"https://me:pass@google.com:88/a?f#b", "http", "goo.com", 92, "", "", "/", NULL, NULL, ""}, }; for (size_t i = 0; i < arraysize(cases); i++) { WebCore::GoogleKURL gurl(cases[i].url); WebCore::WebKitKURL kurl(cases[i].url); EXPECT_EQ(kurl.string(), gurl.string()); kurl.setProtocol(cases[i].protocol); gurl.setProtocol(cases[i].protocol); EXPECT_EQ(kurl.string(), gurl.string()); kurl.setHost(cases[i].host); gurl.setHost(cases[i].host); EXPECT_EQ(kurl.string(), gurl.string()); kurl.setPort(cases[i].port); gurl.setPort(cases[i].port); EXPECT_EQ(kurl.string(), gurl.string()); kurl.setUser(cases[i].user); gurl.setUser(cases[i].user); EXPECT_EQ(kurl.string(), gurl.string()); kurl.setPass(cases[i].pass); gurl.setPass(cases[i].pass); EXPECT_EQ(kurl.string(), gurl.string()); kurl.setPath(cases[i].path); gurl.setPath(cases[i].path); EXPECT_EQ(kurl.string(), gurl.string()); kurl.setQuery(cases[i].query); gurl.setQuery(cases[i].query); EXPECT_EQ(kurl.string(), gurl.string()); // Refs are tested below. On the Safari 3.1 branch, we don't match their // KURL since we integrated a fix from their trunk. } } // Tests that KURL::decodeURLEscapeSequences works as expected TEST(GKURL, Decode) { const char* decode_cases[] = { "hello, world", "%01%02%03%04%05%06%07%08%09%0a%0B%0C%0D%0e%0f/", "%10%11%12%13%14%15%16%17%18%19%1a%1B%1C%1D%1e%1f/", "%20%21%22%23%24%25%26%27%28%29%2a%2B%2C%2D%2e%2f/", "%30%31%32%33%34%35%36%37%38%39%3a%3B%3C%3D%3e%3f/", "%40%41%42%43%44%45%46%47%48%49%4a%4B%4C%4D%4e%4f/", "%50%51%52%53%54%55%56%57%58%59%5a%5B%5C%5D%5e%5f/", "%60%61%62%63%64%65%66%67%68%69%6a%6B%6C%6D%6e%6f/", "%70%71%72%73%74%75%76%77%78%79%7a%7B%7C%7D%7e%7f/", // Test un-UTF-8-ization. "%e4%bd%a0%e5%a5%bd", }; for (size_t i = 0; i < arraysize(decode_cases); i++) { WebCore::String input(decode_cases[i]); WebCore::String webkit = WebCore::WebKitKURL::decodeURLEscapeSequences(input); WebCore::String google = WebCore::GoogleKURL::decodeURLEscapeSequences(input); EXPECT_TRUE(webkit == google); } // Our decode should not decode %00 WebCore::String zero = WebCore::GoogleKURL::decodeURLEscapeSequences("%00"); EXPECT_STREQ("%00", zero.utf8().data()); // Test the error behavior for invalid UTF-8 (we differ from WebKit here). WebCore::String invalid = WebCore::GoogleKURL::decodeURLEscapeSequences( "%e4%a0%e5%a5%bd"); char16 invalid_expected_helper[4] = { 0x00e4, 0x00a0, 0x597d, 0 }; WebCore::String invalid_expected( reinterpret_cast(invalid_expected_helper), 3); EXPECT_EQ(invalid_expected, invalid); } TEST(GKURL, Encode) { // Also test that it gets converted to UTF-8 properly. char16 wide_input_helper[3] = { 0x4f60, 0x597d, 0 }; WebCore::String wide_input( reinterpret_cast(wide_input_helper), 2); WebCore::String wide_reference("\xe4\xbd\xa0\xe5\xa5\xbd", 6); WebCore::String wide_output = WebCore::GoogleKURL::encodeWithURLEscapeSequences(wide_input); EXPECT_EQ(wide_reference, wide_output); // Our encode only escapes NULLs for safety (see the implementation for // more), so we only bother to test a few cases. WebCore::String input( "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 16); WebCore::String reference( "%00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 18); WebCore::String output = WebCore::GoogleKURL::encodeWithURLEscapeSequences(input); EXPECT_EQ(reference, output); } TEST(GKURL, ResolveEmpty) { WebCore::GoogleKURL empty_base; // WebKit likes to be able to resolve absolute input agains empty base URLs, // which would normally be invalid since the base URL is invalid. const char abs[] = "http://www.google.com/"; WebCore::GoogleKURL resolve_abs(empty_base, abs); EXPECT_TRUE(resolve_abs.isValid()); EXPECT_STREQ(abs, resolve_abs.string().utf8().data()); // Resolving a non-relative URL agains the empty one should still error. const char rel[] = "foo.html"; WebCore::GoogleKURL resolve_err(empty_base, rel); EXPECT_FALSE(resolve_err.isValid()); } // WebKit will make empty URLs and set components on them. GURL doesn't allow // replacements on invalid URLs, but here we do. TEST(GKURL, ReplaceInvalid) { WebCore::GoogleKURL gurl; WebCore::WebKitKURL kurl; EXPECT_EQ(kurl.isValid(), gurl.isValid()); EXPECT_EQ(kurl.isEmpty(), gurl.isEmpty()); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); gurl.setProtocol("http"); kurl.setProtocol("http"); // GKURL will say that a URL with just a scheme is invalid, KURL will not. EXPECT_TRUE(kurl.isValid()); EXPECT_FALSE(gurl.isValid()); EXPECT_EQ(kurl.isEmpty(), gurl.isEmpty()); // At this point, the strings will *not* be equal, we do things slightly // differently if there is only a scheme. We check the results here to make // it more obvious what is going on, but it shouldn't be a big deal if these // change. EXPECT_STREQ("http:", gurl.string().utf8().data()); EXPECT_STREQ("http:/", kurl.string().utf8().data()); gurl.setHost("www.google.com"); kurl.setHost("www.google.com"); EXPECT_EQ(kurl.isValid(), gurl.isValid()); EXPECT_EQ(kurl.isEmpty(), gurl.isEmpty()); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); gurl.setPort(8000); kurl.setPort(8000); EXPECT_EQ(kurl.isValid(), gurl.isValid()); EXPECT_EQ(kurl.isEmpty(), gurl.isEmpty()); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); gurl.setPath("/favicon.ico"); kurl.setPath("/favicon.ico"); EXPECT_EQ(kurl.isValid(), gurl.isValid()); EXPECT_EQ(kurl.isEmpty(), gurl.isEmpty()); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); EXPECT_STREQ("http://www.google.com:8000/favicon.ico", gurl.string().utf8().data()); // Now let's test that giving an invalid replacement still fails. gurl.setProtocol("f/sj#@"); EXPECT_FALSE(gurl.isValid()); } TEST(GKURL, Path) { const char initial[] = "http://www.google.com/path/foo"; WebCore::GoogleKURL gurl(initial); WebCore::WebKitKURL kurl(initial); // Clear by setting a NULL string. WebCore::String null_string; EXPECT_TRUE(null_string.isNull()); gurl.setPath(null_string); kurl.setPath(null_string); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); EXPECT_STREQ("http://www.google.com/", gurl.string().utf8().data()); } // Test that setting the query to different things works. Thq query is handled // a littler differently than some of the other components. TEST(GKURL, Query) { const char initial[] = "http://www.google.com/search?q=awesome"; WebCore::GoogleKURL gurl(initial); WebCore::WebKitKURL kurl(initial); // Clear by setting a NULL string. WebCore::String null_string; EXPECT_TRUE(null_string.isNull()); gurl.setQuery(null_string); kurl.setQuery(null_string); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); // Clear by setting an empty string. gurl = WebCore::GoogleKURL(initial); kurl = WebCore::WebKitKURL(initial); WebCore::String empty_string(""); EXPECT_FALSE(empty_string.isNull()); gurl.setQuery(empty_string); kurl.setQuery(empty_string); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); // Set with something that begins in a question mark. const char question[] = "?foo=bar"; gurl.setQuery(question); kurl.setQuery(question); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); // Set with something that doesn't begin in a question mark. const char query[] = "foo=bar"; gurl.setQuery(query); kurl.setQuery(query); EXPECT_STREQ(kurl.string().utf8().data(), gurl.string().utf8().data()); } TEST(GKURL, Ref) { WebCore::GoogleKURL gurl("http://foo/bar#baz"); // Basic ref setting. WebCore::GoogleKURL cur("http://foo/bar"); cur.setRef("asdf"); EXPECT_STREQ("http://foo/bar#asdf", cur.string().utf8().data()); cur = gurl; cur.setRef("asdf"); EXPECT_STREQ("http://foo/bar#asdf", cur.string().utf8().data()); // Setting a ref to the empty string will set it to "#". cur = WebCore::GoogleKURL("http://foo/bar"); cur.setRef(""); EXPECT_STREQ("http://foo/bar#", cur.string().utf8().data()); cur = gurl; cur.setRef(""); EXPECT_STREQ("http://foo/bar#", cur.string().utf8().data()); // Setting the ref to the null string will clear it altogether. cur = WebCore::GoogleKURL("http://foo/bar"); cur.setRef(WebCore::String()); EXPECT_STREQ("http://foo/bar", cur.string().utf8().data()); cur = gurl; cur.setRef(WebCore::String()); EXPECT_STREQ("http://foo/bar", cur.string().utf8().data()); } TEST(GKURL, Empty) { WebCore::GoogleKURL gurl; WebCore::WebKitKURL kurl; // First test that regular empty URLs are the same. EXPECT_EQ(kurl.isEmpty(), gurl.isEmpty()); EXPECT_EQ(kurl.isValid(), gurl.isValid()); EXPECT_EQ(kurl.isNull(), gurl.isNull()); EXPECT_EQ(kurl.string().isNull(), gurl.string().isNull()); EXPECT_EQ(kurl.string().isEmpty(), gurl.string().isEmpty()); // Test resolving a NULL URL on an empty string. WebCore::GoogleKURL gurl2(gurl, ""); WebCore::WebKitKURL kurl2(kurl, ""); EXPECT_EQ(kurl2.isNull(), gurl2.isNull()); EXPECT_EQ(kurl2.isEmpty(), gurl2.isEmpty()); EXPECT_EQ(kurl2.isValid(), gurl2.isValid()); EXPECT_EQ(kurl2.string().isNull(), gurl2.string().isNull()); EXPECT_EQ(kurl2.string().isEmpty(), gurl2.string().isEmpty()); EXPECT_EQ(kurl2.string().isNull(), gurl2.string().isNull()); EXPECT_EQ(kurl2.string().isEmpty(), gurl2.string().isEmpty()); // Resolve the NULL URL on a NULL string. WebCore::GoogleKURL gurl22(gurl, WebCore::String()); WebCore::WebKitKURL kurl22(kurl, WebCore::String()); EXPECT_EQ(kurl2.isNull(), gurl2.isNull()); EXPECT_EQ(kurl2.isEmpty(), gurl2.isEmpty()); EXPECT_EQ(kurl2.isValid(), gurl2.isValid()); EXPECT_EQ(kurl2.string().isNull(), gurl2.string().isNull()); EXPECT_EQ(kurl2.string().isEmpty(), gurl2.string().isEmpty()); EXPECT_EQ(kurl2.string().isNull(), gurl2.string().isNull()); EXPECT_EQ(kurl2.string().isEmpty(), gurl2.string().isEmpty()); // Test non-hierarchical schemes resolving. The actual URLs will be different. // WebKit's one will set the string to "something.gif" and we'll set it to an // empty string. I think either is OK, so we just check our behavior. WebCore::GoogleKURL gurl3(WebCore::GoogleKURL("data:foo"), "something.gif"); EXPECT_TRUE(gurl3.isEmpty()); EXPECT_FALSE(gurl3.isValid()); // Test for weird isNull string input, // see: http://bugs.webkit.org/show_bug.cgi?id=16487 WebCore::GoogleKURL gurl4(gurl.string()); WebCore::WebKitKURL kurl4(kurl.string()); EXPECT_EQ(kurl4.isEmpty(), gurl4.isEmpty()); EXPECT_EQ(kurl4.isValid(), gurl4.isValid()); EXPECT_EQ(kurl4.string().isNull(), gurl4.string().isNull()); EXPECT_EQ(kurl4.string().isEmpty(), gurl4.string().isEmpty()); // Resolving an empty URL on an invalid string. WebCore::GoogleKURL gurl5(WebCore::GoogleKURL(), "foo.js"); WebCore::WebKitKURL kurl5(WebCore::WebKitKURL(), "foo.js"); // We'll be empty in this case, but KURL won't be. Should be OK. // EXPECT_EQ(kurl5.isEmpty(), gurl5.isEmpty()); // EXPECT_EQ(kurl5.string().isEmpty(), gurl5.string().isEmpty()); EXPECT_EQ(kurl5.isValid(), gurl5.isValid()); EXPECT_EQ(kurl5.string().isNull(), gurl5.string().isNull()); // Empty string as input WebCore::GoogleKURL gurl6(""); WebCore::WebKitKURL kurl6(""); EXPECT_EQ(kurl6.isEmpty(), gurl6.isEmpty()); EXPECT_EQ(kurl6.isValid(), gurl6.isValid()); EXPECT_EQ(kurl6.string().isNull(), gurl6.string().isNull()); EXPECT_EQ(kurl6.string().isEmpty(), gurl6.string().isEmpty()); // Non-empty but invalid C string as input. WebCore::GoogleKURL gurl7("foo.js"); WebCore::WebKitKURL kurl7("foo.js"); // WebKit will actually say this URL has the string "foo.js" but is invalid. // We don't do that. // EXPECT_EQ(kurl7.isEmpty(), gurl7.isEmpty()); EXPECT_EQ(kurl7.isValid(), gurl7.isValid()); EXPECT_EQ(kurl7.string().isNull(), gurl7.string().isNull()); } TEST(GKURL, UserPass) { const char* src = "http://user:pass@google.com/"; WebCore::GoogleKURL gurl(src); WebCore::WebKitKURL kurl(src); // Clear just the username. gurl.setUser(""); kurl.setUser(""); EXPECT_TRUE(kurl.string() == gurl.string()); // Clear just the password. gurl = WebCore::GoogleKURL(src); kurl = WebCore::WebKitKURL(src); gurl.setPass(""); kurl.setPass(""); EXPECT_TRUE(kurl.string() == gurl.string()); // Now clear both. gurl.setUser(""); kurl.setUser(""); EXPECT_TRUE(kurl.string() == gurl.string()); } TEST(GKURL, Offsets) { const char* src1 = "http://user:pass@google.com/foo/bar.html?baz=query#ref"; WebCore::GoogleKURL gurl1(src1); WebCore::WebKitKURL kurl1(src1); EXPECT_TRUE(kurl1.hostStart() == gurl1.hostStart()); EXPECT_TRUE(kurl1.hostEnd() == gurl1.hostEnd()); EXPECT_TRUE(kurl1.pathStart() == gurl1.pathStart()); EXPECT_TRUE(kurl1.pathEnd() == gurl1.pathEnd()); EXPECT_TRUE(kurl1.pathAfterLastSlash() == gurl1.pathAfterLastSlash()); const char* src2 = "http://google.com/foo/"; WebCore::GoogleKURL gurl2(src2); WebCore::WebKitKURL kurl2(src2); EXPECT_TRUE(kurl2.hostStart() == gurl2.hostStart()); EXPECT_TRUE(kurl2.hostEnd() == gurl2.hostEnd()); EXPECT_TRUE(kurl2.pathStart() == gurl2.pathStart()); EXPECT_TRUE(kurl2.pathEnd() == gurl2.pathEnd()); EXPECT_TRUE(kurl2.pathAfterLastSlash() == gurl2.pathAfterLastSlash()); const char* src3 = "javascript:foobar"; WebCore::GoogleKURL gurl3(src3); WebCore::WebKitKURL kurl3(src3); EXPECT_TRUE(kurl3.hostStart() == gurl3.hostStart()); EXPECT_TRUE(kurl3.hostEnd() == gurl3.hostEnd()); EXPECT_TRUE(kurl3.pathStart() == gurl3.pathStart()); EXPECT_TRUE(kurl3.pathEnd() == gurl3.pathEnd()); EXPECT_TRUE(kurl3.pathAfterLastSlash() == gurl3.pathAfterLastSlash()); }