summaryrefslogtreecommitdiffstats
path: root/chromium/sync/internal_api/public/engine/model_safe_worker_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/sync/internal_api/public/engine/model_safe_worker_unittest.cc')
-rw-r--r--chromium/sync/internal_api/public/engine/model_safe_worker_unittest.cc52
1 files changed, 0 insertions, 52 deletions
diff --git a/chromium/sync/internal_api/public/engine/model_safe_worker_unittest.cc b/chromium/sync/internal_api/public/engine/model_safe_worker_unittest.cc
deleted file mode 100644
index f2e8c0ee525..00000000000
--- a/chromium/sync/internal_api/public/engine/model_safe_worker_unittest.cc
+++ /dev/null
@@ -1,52 +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 "base/memory/scoped_ptr.h"
-#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;
- base::DictionaryValue expected_value;
- expected_value.SetString("Bookmarks", "GROUP_PASSIVE");
- expected_value.SetString("Encryption keys", "GROUP_UI");
- expected_value.SetString("Preferences", "GROUP_DB");
- scoped_ptr<base::DictionaryValue> value(
- ModelSafeRoutingInfoToValue(routing_info));
- EXPECT_TRUE(value->Equals(&expected_value));
-}
-
-TEST_F(ModelSafeWorkerTest, ModelSafeRoutingInfoToString) {
- ModelSafeRoutingInfo routing_info;
- routing_info[BOOKMARKS] = GROUP_PASSIVE;
- routing_info[NIGORI] = GROUP_UI;
- routing_info[PREFERENCES] = GROUP_DB;
- EXPECT_EQ(
- "{\"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_TRUE(GetRoutingInfoTypes(routing_info).Equals(expected_types));
-}
-
-} // namespace
-} // namespace syncer