// Copyright (c) 2012 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 "chrome/common/chrome_content_client.h" #include #include "base/command_line.h" #include "base/memory/scoped_ptr.h" #include "base/memory/scoped_vector.h" #include "base/strings/string_split.h" #include "content/public/common/content_switches.h" #include "extensions/common/constants.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" #include "url/origin.h" #include "url/url_util.h" namespace { void CheckUserAgentStringOrdering(bool mobile_device) { std::vector pieces; // Check if the pieces of the user agent string come in the correct order. ChromeContentClient content_client; std::string buffer = content_client.GetUserAgent(); base::SplitStringUsingSubstr(buffer, "Mozilla/5.0 (", &pieces); ASSERT_EQ(2u, pieces.size()); buffer = pieces[1]; EXPECT_EQ("", pieces[0]); base::SplitStringUsingSubstr(buffer, ") AppleWebKit/", &pieces); ASSERT_EQ(2u, pieces.size()); buffer = pieces[1]; std::string os_str = pieces[0]; base::SplitStringUsingSubstr(buffer, " (KHTML, like Gecko) ", &pieces); ASSERT_EQ(2u, pieces.size()); buffer = pieces[1]; std::string webkit_version_str = pieces[0]; base::SplitStringUsingSubstr(buffer, " Safari/", &pieces); ASSERT_EQ(2u, pieces.size()); std::string product_str = pieces[0]; std::string safari_version_str = pieces[1]; // Not sure what can be done to better check the OS string, since it's highly // platform-dependent. EXPECT_TRUE(os_str.size() > 0); // Check that the version numbers match. EXPECT_TRUE(webkit_version_str.size() > 0); EXPECT_TRUE(safari_version_str.size() > 0); EXPECT_EQ(webkit_version_str, safari_version_str); EXPECT_EQ(0u, product_str.find("Chrome/")); if (mobile_device) { // "Mobile" gets tacked on to the end for mobile devices, like phones. const std::string kMobileStr = " Mobile"; EXPECT_EQ(kMobileStr, product_str.substr(product_str.size() - kMobileStr.size())); } } } // namespace namespace chrome_common { TEST(ChromeContentClientTest, Basic) { #if !defined(OS_ANDROID) CheckUserAgentStringOrdering(false); #else const char* const kArguments[] = {"chrome"}; base::CommandLine::Reset(); base::CommandLine::Init(1, kArguments); base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); // Do it for regular devices. ASSERT_FALSE(command_line->HasSwitch(switches::kUseMobileUserAgent)); CheckUserAgentStringOrdering(false); // Do it for mobile devices. command_line->AppendSwitch(switches::kUseMobileUserAgent); ASSERT_TRUE(command_line->HasSwitch(switches::kUseMobileUserAgent)); CheckUserAgentStringOrdering(true); #endif } #if defined(ENABLE_PLUGINS) TEST(ChromeContentClientTest, FindMostRecent) { ScopedVector vector1; // Test an empty vector. EXPECT_EQ(ChromeContentClient::FindMostRecentPlugin(vector1.get()), nullptr); // Now test the vector with one element. content::PepperPluginInfo* info1 = new content::PepperPluginInfo(); info1->version = "1.0.0.0"; vector1.push_back(info1); EXPECT_EQ(ChromeContentClient::FindMostRecentPlugin(vector1.get()), info1); // Now do the generic test of a complex vector. content::PepperPluginInfo* info2 = new content::PepperPluginInfo(); info2->version = "2.0.0.1"; content::PepperPluginInfo* info3 = new content::PepperPluginInfo(); info3->version = "3.5.6.7"; content::PepperPluginInfo* info4 = new content::PepperPluginInfo(); info4->version = "4.0.0.153"; content::PepperPluginInfo* info5 = new content::PepperPluginInfo(); info5->version = "5.0.12.1"; content::PepperPluginInfo* info6_12 = new content::PepperPluginInfo(); info6_12->version = "6.0.0.12"; content::PepperPluginInfo* info6_13 = new content::PepperPluginInfo(); info6_13->version = "6.0.0.13"; ScopedVector vector2; vector2.push_back(info4); vector2.push_back(info2); vector2.push_back(info6_13); vector2.push_back(info3); vector2.push_back(info5); vector2.push_back(info6_12); EXPECT_EQ(ChromeContentClient::FindMostRecentPlugin(vector2.get()), info6_13); } #endif // defined(ENABLE_PLUGINS) TEST(ChromeContentClientTest, AdditionalSchemes) { EXPECT_TRUE(url::IsStandard( extensions::kExtensionScheme, url::Component(0, strlen(extensions::kExtensionScheme)))); GURL extension_url( "chrome-extension://abcdefghijklmnopqrstuvwxyzabcdef/foo.html"); url::Origin origin(extension_url); EXPECT_EQ("chrome-extension://abcdefghijklmnopqrstuvwxyzabcdef", origin.Serialize()); } } // namespace chrome_common