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

Unified Diff: sync/internal_api/public/engine/model_safe_worker_unittest.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: sync/internal_api/public/engine/model_safe_worker_unittest.cc
diff --git a/sync/internal_api/public/engine/model_safe_worker_unittest.cc b/sync/internal_api/public/engine/model_safe_worker_unittest.cc
deleted file mode 100644
index 2e0ea7260fb73ceadf5dd3512bade3ea303a5d76..0000000000000000000000000000000000000000
--- a/sync/internal_api/public/engine/model_safe_worker_unittest.cc
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2012 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 "sync/internal_api/public/engine/model_safe_worker.h"
-
-#include <memory>
-
-#include "base/values.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace syncer {
-namespace {
-
-class ModelSafeWorkerTest : public ::testing::Test {
-};
-
-TEST_F(ModelSafeWorkerTest, ModelSafeRoutingInfoToValue) {
- ModelSafeRoutingInfo routing_info;
- routing_info[BOOKMARKS] = GROUP_PASSIVE;
- routing_info[NIGORI] = GROUP_UI;
- routing_info[PREFERENCES] = GROUP_DB;
- routing_info[APPS] = GROUP_NON_BLOCKING;
- base::DictionaryValue expected_value;
- expected_value.SetString("Apps", "GROUP_NON_BLOCKING");
- expected_value.SetString("Bookmarks", "GROUP_PASSIVE");
- expected_value.SetString("Encryption keys", "GROUP_UI");
- expected_value.SetString("Preferences", "GROUP_DB");
- std::unique_ptr<base::DictionaryValue> value(
- ModelSafeRoutingInfoToValue(routing_info));
- EXPECT_TRUE(value->Equals(&expected_value));
-}
-
-TEST_F(ModelSafeWorkerTest, ModelSafeRoutingInfoToString) {
- ModelSafeRoutingInfo routing_info;
- routing_info[APPS] = GROUP_NON_BLOCKING;
- routing_info[BOOKMARKS] = GROUP_PASSIVE;
- routing_info[NIGORI] = GROUP_UI;
- routing_info[PREFERENCES] = GROUP_DB;
- EXPECT_EQ(
- "{\"Apps\":\"GROUP_NON_BLOCKING\",\"Bookmarks\":\"GROUP_PASSIVE\","
- "\"Encryption keys\":\"GROUP_UI\",\"Preferences\":\"GROUP_DB\"}",
- ModelSafeRoutingInfoToString(routing_info));
-}
-
-TEST_F(ModelSafeWorkerTest, GetRoutingInfoTypes) {
- ModelSafeRoutingInfo routing_info;
- routing_info[BOOKMARKS] = GROUP_PASSIVE;
- routing_info[NIGORI] = GROUP_UI;
- routing_info[PREFERENCES] = GROUP_DB;
- const ModelTypeSet expected_types(BOOKMARKS, NIGORI, PREFERENCES);
- EXPECT_EQ(expected_types, GetRoutingInfoTypes(routing_info));
-}
-
-} // namespace
-} // namespace syncer
« no previous file with comments | « sync/internal_api/public/engine/model_safe_worker.cc ('k') | sync/internal_api/public/engine/passive_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698