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.
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();
32 Contains(query
, StringPrintf("os=%s", UpdateQueryParams::GetOS())));
34 Contains(query
, StringPrintf("arch=%s", UpdateQueryParams::GetArch())));
36 query
, StringPrintf("nacl_arch=%s", UpdateQueryParams::GetNaclArch())));
39 net::EscapeQueryParamValue(
40 StringPrintf("installsource=%s", source
.c_str()), true)));
43 StringPrintf("lang=%s", ChromeUpdateQueryParamsDelegate::GetLang())));
46 } // namespace extensions