Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: chrome/browser/update_client/chrome_update_query_params_delegate_unittest.cc

Issue 803313003: Rename omaha_client and similar tokens to update_client in all contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: rebase to master Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include <string>
6
7 #include "base/strings/stringprintf.h"
8 #include "chrome/browser/update_client/chrome_update_query_params_delegate.h"
9 #include "chrome/common/chrome_version_info.h"
10 #include "components/update_client/update_query_params.h"
11 #include "testing/gtest/include/gtest/gtest.h"
12
13 using base::StringPrintf;
14
15 namespace {
16
17 bool Contains(const std::string& source, const std::string& target) {
18 return source.find(target) != std::string::npos;
19 }
20
21 } // namespace
22
23 void TestParams(update_client::UpdateQueryParams::ProdId prod_id) {
24 std::string params = update_client::UpdateQueryParams::Get(prod_id);
25
26 EXPECT_TRUE(Contains(
27 params,
28 StringPrintf("os=%s", update_client::UpdateQueryParams::GetOS())));
29 EXPECT_TRUE(Contains(
30 params,
31 StringPrintf("arch=%s", update_client::UpdateQueryParams::GetArch())));
32 EXPECT_TRUE(Contains(
33 params, StringPrintf(
34 "prod=%s",
35 update_client::UpdateQueryParams::GetProdIdString(prod_id))));
36 EXPECT_TRUE(Contains(
37 params,
38 StringPrintf("prodchannel=%s",
39 ChromeUpdateQueryParamsDelegate::GetChannelString())));
40 EXPECT_TRUE(Contains(
41 params,
42 StringPrintf("prodversion=%s", chrome::VersionInfo().Version().c_str())));
43 EXPECT_TRUE(Contains(
44 params,
45 StringPrintf("lang=%s", ChromeUpdateQueryParamsDelegate::GetLang())));
46 }
47
48 TEST(ChromeUpdateQueryParamsDelegateTest, GetParams) {
49 TestParams(update_client::UpdateQueryParams::CRX);
50 TestParams(update_client::UpdateQueryParams::CHROME);
51 }
OLDNEW
« no previous file with comments | « chrome/browser/update_client/chrome_update_query_params_delegate.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698