blob: 70834a097f5454c2e8c8eee55020a41c3cabb79e (
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
30
31
32
33
34
35
36
37
38
|
// Copyright (c) 2011 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 "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/file_util.h"
#include "base/path_service.h"
#include "base/test/scoped_path_override.h"
#include "chrome/browser/first_run/first_run.h"
#include "chrome/browser/first_run/first_run_internal.h"
#include "chrome/common/chrome_paths.h"
#include "testing/gtest/include/gtest/gtest.h"
class FirstRunTest : public testing::Test {
protected:
FirstRunTest() : user_data_dir_override_(chrome::DIR_USER_DATA) {}
virtual ~FirstRunTest() {}
virtual void SetUp() OVERRIDE {
first_run::internal::GetFirstRunSentinelFilePath(&sentinel_path_);
}
base::FilePath sentinel_path_;
private:
base::ScopedPathOverride user_data_dir_override_;
DISALLOW_COPY_AND_ASSIGN(FirstRunTest);
};
TEST_F(FirstRunTest, RemoveSentinel) {
EXPECT_TRUE(first_run::CreateSentinel());
EXPECT_TRUE(file_util::PathExists(sentinel_path_));
EXPECT_TRUE(first_run::RemoveSentinel());
EXPECT_FALSE(file_util::PathExists(sentinel_path_));
}
|