| // Copyright 2020 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/updater/unittest_util.h" |
| |
| #include "base/version.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| |
| namespace updater { |
| |
| TEST(UnitTestUtil, UpdateServiceState) { |
| UpdateService::UpdateState state1; |
| state1.next_version = base::Version("1.0"); |
| UpdateService::UpdateState state2 = state1; |
| EXPECT_EQ(state1, state2); |
| state2.state = UpdateService::UpdateState::State::kUpdateError; |
| EXPECT_NE(state1, state2); |
| EXPECT_STREQ(::testing::PrintToString(state1).c_str(), |
| "UpdateState {app_id: , state: unknown, next_version: 1.0, " |
| "downloaded_bytes: -1, total_bytes: -1, install_progress: -1, " |
| "error_category: none, error_code: 0, extra_code1: 0}"); |
| } |
| |
| } // namespace updater |