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

Side by Side Diff: chrome/browser/supervised_user/legacy/supervised_user_registration_utility_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, 4 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/supervised_user/legacy/supervised_user_registration_uti lity.h" 5 #include "chrome/browser/supervised_user/legacy/supervised_user_registration_uti lity.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8
8 #include <utility> 9 #include <utility>
9 10
10 #include "base/bind.h" 11 #include "base/bind.h"
11 #include "base/message_loop/message_loop.h" 12 #include "base/message_loop/message_loop.h"
12 #include "base/run_loop.h" 13 #include "base/run_loop.h"
13 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
14 #include "base/threading/sequenced_worker_pool.h" 15 #include "base/threading/sequenced_worker_pool.h"
15 #include "chrome/browser/supervised_user/legacy/supervised_user_refresh_token_fe tcher.h" 16 #include "chrome/browser/supervised_user/legacy/supervised_user_refresh_token_fe tcher.h"
16 #include "chrome/browser/supervised_user/legacy/supervised_user_shared_settings_ service.h" 17 #include "chrome/browser/supervised_user/legacy/supervised_user_shared_settings_ service.h"
17 #include "chrome/browser/supervised_user/legacy/supervised_user_shared_settings_ service_factory.h" 18 #include "chrome/browser/supervised_user/legacy/supervised_user_shared_settings_ service_factory.h"
18 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service.h" 19 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service.h"
19 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service_fac tory.h" 20 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service_fac tory.h"
20 #include "chrome/common/pref_names.h" 21 #include "chrome/common/pref_names.h"
21 #include "chrome/test/base/testing_profile.h" 22 #include "chrome/test/base/testing_profile.h"
22 #include "components/prefs/scoped_user_pref_update.h" 23 #include "components/prefs/scoped_user_pref_update.h"
24 #include "components/sync/api/attachments/attachment_id.h"
25 #include "components/sync/api/sync_change.h"
26 #include "components/sync/api/sync_error_factory_mock.h"
27 #include "components/sync/core/attachments/attachment_service_proxy_for_test.h"
28 #include "components/sync/protocol/sync.pb.h"
23 #include "components/syncable_prefs/testing_pref_service_syncable.h" 29 #include "components/syncable_prefs/testing_pref_service_syncable.h"
24 #include "content/public/browser/browser_thread.h" 30 #include "content/public/browser/browser_thread.h"
25 #include "content/public/test/test_utils.h" 31 #include "content/public/test/test_utils.h"
26 #include "google_apis/gaia/google_service_auth_error.h" 32 #include "google_apis/gaia/google_service_auth_error.h"
27 #include "sync/api/attachments/attachment_id.h"
28 #include "sync/api/sync_change.h"
29 #include "sync/api/sync_error_factory_mock.h"
30 #include "sync/internal_api/public/attachments/attachment_service_proxy_for_test .h"
31 #include "sync/protocol/sync.pb.h"
32 #include "testing/gtest/include/gtest/gtest.h" 33 #include "testing/gtest/include/gtest/gtest.h"
33 34
34 using sync_pb::ManagedUserSpecifics; 35 using sync_pb::ManagedUserSpecifics;
35 using syncer::SUPERVISED_USERS; 36 using syncer::SUPERVISED_USERS;
36 using syncer::SyncChange; 37 using syncer::SyncChange;
37 using syncer::SyncChangeList; 38 using syncer::SyncChangeList;
38 using syncer::SyncChangeProcessor; 39 using syncer::SyncChangeProcessor;
39 using syncer::SyncData; 40 using syncer::SyncData;
40 using syncer::SyncDataList; 41 using syncer::SyncDataList;
41 using syncer::SyncError; 42 using syncer::SyncError;
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 SupervisedUserRegistrationUtility::GenerateNewSupervisedUserId(), 293 SupervisedUserRegistrationUtility::GenerateNewSupervisedUserId(),
293 SupervisedUserRegistrationInfo(base::ASCIIToUTF16("Mike"), 17), 294 SupervisedUserRegistrationInfo(base::ASCIIToUTF16("Mike"), 17),
294 GetRegistrationCallback()); 295 GetRegistrationCallback());
295 EXPECT_EQ(1u, prefs()->GetDictionary(prefs::kSupervisedUsers)->size()); 296 EXPECT_EQ(1u, prefs()->GetDictionary(prefs::kSupervisedUsers)->size());
296 service()->StopSyncing(SUPERVISED_USERS); 297 service()->StopSyncing(SUPERVISED_USERS);
297 EXPECT_EQ(0u, prefs()->GetDictionary(prefs::kSupervisedUsers)->size()); 298 EXPECT_EQ(0u, prefs()->GetDictionary(prefs::kSupervisedUsers)->size());
298 EXPECT_TRUE(received_callback()); 299 EXPECT_TRUE(received_callback());
299 EXPECT_EQ(GoogleServiceAuthError::REQUEST_CANCELED, error().state()); 300 EXPECT_EQ(GoogleServiceAuthError::REQUEST_CANCELED, error().state());
300 EXPECT_EQ(std::string(), token()); 301 EXPECT_EQ(std::string(), token());
301 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698