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

Side by Side Diff: chrome/test/live_sync/single_client_live_sessions_sync_test.cc

Issue 4158009: Session sync integration tests. Left out many client for now, since even... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 "base/scoped_vector.h"
6 #include "chrome/test/live_sync/live_sessions_sync_test.h"
7
8 IN_PROC_BROWSER_TEST_F(SingleClientLiveSessionsSyncTest, Sanity) {
9 ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
10
11 ASSERT_TRUE(CheckInitialState(0));
12
13 std::vector<SessionWindow*>* old_windows =
14 InitializeNewWindowWithTab(0, GURL("about:bubba"));
15 ASSERT_TRUE(old_windows);
16
17 ASSERT_TRUE(GetClient(0)->AwaitSyncCycleCompletion(
18 "Waiting for session change."));
19
20 // Get foreign session data from client 0.
21 ScopedVector<ForeignSession> sessions;
22 ASSERT_TRUE(GetSessionData(0, &sessions.get()));
23 ASSERT_EQ(0U, sessions.size());
24
25 // Verify client didn't change.
26 std::vector<SessionWindow*>* new_windows = GetHelper(0)->ReadWindows();
27 ASSERT_TRUE(new_windows);
28 ASSERT_TRUE(WindowsMatch(*old_windows, *new_windows));
29 }
30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698