1 // Copyright 2014 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/update_client/chrome_update_query_params_delegate.h"
9 #include "chrome/common/channel_info.h"
10 #include "components/update_client/update_query_params.h"
11 #include "components/version_info/version_info.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 using base::StringPrintf
;
18 bool Contains(const std::string
& source
, const std::string
& target
) {
19 return source
.find(target
) != std::string::npos
;
24 void TestParams(update_client::UpdateQueryParams::ProdId prod_id
) {
25 std::string params
= update_client::UpdateQueryParams::Get(prod_id
);
29 StringPrintf("os=%s", update_client::UpdateQueryParams::GetOS())));
32 StringPrintf("arch=%s", update_client::UpdateQueryParams::GetArch())));
36 update_client::UpdateQueryParams::GetProdIdString(prod_id
))));
39 StringPrintf("prodchannel=%s", chrome::GetChannelString().c_str())));
41 Contains(params
, StringPrintf("prodversion=%s",
42 version_info::GetVersionNumber().c_str())));
45 StringPrintf("lang=%s", ChromeUpdateQueryParamsDelegate::GetLang())));
48 TEST(ChromeUpdateQueryParamsDelegateTest
, GetParams
) {
49 TestParams(update_client::UpdateQueryParams::CRX
);
50 TestParams(update_client::UpdateQueryParams::CHROME
);