Home | History | Annotate | Download | only in extensions
      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.
      4 
      5 #include <string>
      6 
      7 #include "base/strings/stringprintf.h"
      8 #include "chrome/browser/extensions/webstore_installer.h"
      9 #include "chrome/browser/omaha_query_params/chrome_omaha_query_params_delegate.h"
     10 #include "components/crx_file/id_util.h"
     11 #include "components/omaha_query_params/omaha_query_params.h"
     12 #include "net/base/escape.h"
     13 #include "testing/gtest/include/gtest/gtest.h"
     14 
     15 using base::StringPrintf;
     16 using omaha_query_params::OmahaQueryParams;
     17 
     18 namespace extensions {
     19 
     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;
     23 }
     24 
     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", OmahaQueryParams::GetOS())));
     33   EXPECT_TRUE(
     34       Contains(query, StringPrintf("arch=%s", OmahaQueryParams::GetArch())));
     35   EXPECT_TRUE(Contains(
     36       query, StringPrintf("nacl_arch=%s", OmahaQueryParams::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", ChromeOmahaQueryParamsDelegate::GetLang())));
     44 }
     45 
     46 }  // namespace extensions
     47