Switch global error menu icon to vectorized MD asset
[chromium-blink-merge.git] / chrome / browser / extensions / webstore_installer_unittest.cc
blobe61084a1c83fb7e40842b2d18d0567d727e88f8d
1 // Copyright (c) 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.
5 #include <string>
7 #include "base/strings/stringprintf.h"
8 #include "chrome/browser/extensions/webstore_installer.h"
9 #include "chrome/browser/update_client/chrome_update_query_params_delegate.h"
10 #include "components/crx_file/id_util.h"
11 #include "components/update_client/update_query_params.h"
12 #include "net/base/escape.h"
13 #include "testing/gtest/include/gtest/gtest.h"
15 using base::StringPrintf;
16 using update_client::UpdateQueryParams;
18 namespace extensions {
20 // Returns true if |target| is found in |source|.
21 bool Contains(const std::string& source, const std::string& target) {
22 return source.find(target) != std::string::npos;
25 TEST(WebstoreInstallerTest, PlatformParams) {
26 std::string id = crx_file::id_util::GenerateId("some random string");
27 std::string source = "inline";
28 GURL url = WebstoreInstaller::GetWebstoreInstallURL(id,
29 WebstoreInstaller::INSTALL_SOURCE_INLINE);
30 std::string query = url.query();
31 EXPECT_TRUE(
32 Contains(query, StringPrintf("os=%s", UpdateQueryParams::GetOS())));
33 EXPECT_TRUE(
34 Contains(query, StringPrintf("arch=%s", UpdateQueryParams::GetArch())));
35 EXPECT_TRUE(Contains(
36 query, StringPrintf("nacl_arch=%s", UpdateQueryParams::GetNaclArch())));
37 EXPECT_TRUE(
38 Contains(query,
39 net::EscapeQueryParamValue(
40 StringPrintf("installsource=%s", source.c_str()), true)));
41 EXPECT_TRUE(Contains(
42 query,
43 StringPrintf("lang=%s", ChromeUpdateQueryParamsDelegate::GetLang())));
46 } // namespace extensions