blob: c64df34dee0804bb7687e000af23596a63cdfd03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) 2010 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/browser/profile.h"
#include "chrome/common/net/gaia/google_service_auth_error.h"
#include "chrome/test/live_sync/live_sync_test.h"
#include "chrome/test/live_sync/profile_sync_service_test_harness.h"
#include "testing/gmock/include/gmock/gmock.h"
class OfflineSyncTest : public LiveSyncTest {
public:
OfflineSyncTest() : LiveSyncTest(LiveSyncTest::SINGLE_CLIENT) {}
private:
DISALLOW_COPY_AND_ASSIGN(OfflineSyncTest);
};
IN_PROC_BROWSER_TEST_F(OfflineSyncTest, OfflineStart) {
ASSERT_TRUE(SetupClients()) << "SetupClients() failed.";
DisableNetwork(GetProfile(0));
EXPECT_FALSE(GetClient(0)->SetupSync());
EXPECT_EQ(GoogleServiceAuthError::CONNECTION_FAILED,
GetClient(0)->service()->GetAuthError().state());
EnableNetwork(GetProfile(0));
EXPECT_TRUE(GetClient(0)->RetryAuthentication());
}
|