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

Side by Side Diff: chrome/installer/util/logging_installer_unittest.cc

Issue 1116263002: Revert of Add installer_util_unittests to the GN windows build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wintests3
Patch Set: Created 5 years, 7 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <string> 5 #include <string>
6 6
7 #include "base/files/file.h" 7 #include "base/files/file.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/files/scoped_temp_dir.h" 10 #include "base/files/scoped_temp_dir.h"
11 #include "base/win/scoped_handle.h" 11 #include "base/win/scoped_handle.h"
12 #include "chrome/installer/util/logging_installer.h" 12 #include "chrome/installer/util/logging_installer.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 TEST(LoggingInstallerTest, TestTruncate) { 15 TEST(LoggingInstallerTest, TestTruncate) {
16 const std::string test_data(installer::kMaxInstallerLogFileSize + 1, 'a'); 16 const std::string test_data(installer::kMaxInstallerLogFileSize + 1, 'a');
17 17
18 base::ScopedTempDir temp_dir; 18 base::ScopedTempDir temp_dir;
19 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); 19 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
20 20
21 base::FilePath temp_file = temp_dir.path().Append(L"temp"); 21 base::FilePath temp_file = temp_dir.path().Append(L"temp");
22 EXPECT_EQ(test_data.size(), 22 EXPECT_EQ(test_data.size(),
23 base::WriteFile(temp_file, &test_data[0], 23 base::WriteFile(temp_file, &test_data[0], test_data.size()));
24 static_cast<int>(test_data.size())));
25 ASSERT_TRUE(base::PathExists(temp_file)); 24 ASSERT_TRUE(base::PathExists(temp_file));
26 25
27 int64 file_size = 0; 26 int64 file_size = 0;
28 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size)); 27 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size));
29 EXPECT_EQ(test_data.size(), file_size); 28 EXPECT_EQ(test_data.size(), file_size);
30 29
31 EXPECT_EQ(installer::LOGFILE_TRUNCATED, 30 EXPECT_EQ(installer::LOGFILE_TRUNCATED,
32 installer::TruncateLogFileIfNeeded(temp_file)); 31 installer::TruncateLogFileIfNeeded(temp_file));
33 32
34 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size)); 33 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size));
35 EXPECT_EQ(installer::kTruncatedInstallerLogFileSize , file_size); 34 EXPECT_EQ(installer::kTruncatedInstallerLogFileSize , file_size);
36 35
37 // Check that the temporary file was deleted. 36 // Check that the temporary file was deleted.
38 EXPECT_FALSE(base::PathExists(temp_file.Append(L".tmp"))); 37 EXPECT_FALSE(base::PathExists(temp_file.Append(L".tmp")));
39 } 38 }
40 39
41 TEST(LoggingInstallerTest, TestTruncationNotNeeded) { 40 TEST(LoggingInstallerTest, TestTruncationNotNeeded) {
42 const std::string test_data(installer::kMaxInstallerLogFileSize, 'a'); 41 const std::string test_data(installer::kMaxInstallerLogFileSize, 'a');
43 42
44 base::ScopedTempDir temp_dir; 43 base::ScopedTempDir temp_dir;
45 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); 44 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
46 45
47 base::FilePath temp_file = temp_dir.path().Append(L"temp"); 46 base::FilePath temp_file = temp_dir.path().Append(L"temp");
48 EXPECT_EQ(test_data.size(), 47 EXPECT_EQ(test_data.size(),
49 base::WriteFile(temp_file, &test_data[0], 48 base::WriteFile(temp_file, &test_data[0], test_data.size()));
50 static_cast<int>(test_data.size())));
51 ASSERT_TRUE(base::PathExists(temp_file)); 49 ASSERT_TRUE(base::PathExists(temp_file));
52 50
53 int64 file_size = 0; 51 int64 file_size = 0;
54 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size)); 52 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size));
55 EXPECT_EQ(test_data.size(), file_size); 53 EXPECT_EQ(test_data.size(), file_size);
56 54
57 EXPECT_EQ(installer::LOGFILE_UNTOUCHED, 55 EXPECT_EQ(installer::LOGFILE_UNTOUCHED,
58 installer::TruncateLogFileIfNeeded(temp_file)); 56 installer::TruncateLogFileIfNeeded(temp_file));
59 EXPECT_TRUE(base::PathExists(temp_file)); 57 EXPECT_TRUE(base::PathExists(temp_file));
60 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size)); 58 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size));
61 EXPECT_EQ(test_data.size(), file_size); 59 EXPECT_EQ(test_data.size(), file_size);
62 } 60 }
63 61
64 TEST(LoggingInstallerTest, TestInUseNeedsTruncation) { 62 TEST(LoggingInstallerTest, TestInUseNeedsTruncation) {
65 const std::string test_data(installer::kMaxInstallerLogFileSize + 1, 'a'); 63 const std::string test_data(installer::kMaxInstallerLogFileSize + 1, 'a');
66 64
67 base::ScopedTempDir temp_dir; 65 base::ScopedTempDir temp_dir;
68 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); 66 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
69 67
70 base::FilePath temp_file = temp_dir.path().Append(L"temp"); 68 base::FilePath temp_file = temp_dir.path().Append(L"temp");
71 EXPECT_EQ(test_data.size(), 69 EXPECT_EQ(test_data.size(),
72 base::WriteFile(temp_file, &test_data[0], 70 base::WriteFile(temp_file, &test_data[0], test_data.size()));
73 static_cast<int>(test_data.size())));
74 ASSERT_TRUE(base::PathExists(temp_file)); 71 ASSERT_TRUE(base::PathExists(temp_file));
75 int64 file_size = 0; 72 int64 file_size = 0;
76 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size)); 73 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size));
77 EXPECT_EQ(test_data.size(), file_size); 74 EXPECT_EQ(test_data.size(), file_size);
78 75
79 // Prevent the log file from being moved or deleted. 76 // Prevent the log file from being moved or deleted.
80 uint32 file_flags = base::File::FLAG_OPEN | 77 uint32 file_flags = base::File::FLAG_OPEN |
81 base::File::FLAG_READ | 78 base::File::FLAG_READ |
82 base::File::FLAG_EXCLUSIVE_READ; 79 base::File::FLAG_EXCLUSIVE_READ;
83 base::File temp_platform_file(temp_file, file_flags); 80 base::File temp_platform_file(temp_file, file_flags);
84 ASSERT_TRUE(temp_platform_file.IsValid()); 81 ASSERT_TRUE(temp_platform_file.IsValid());
85 82
86 EXPECT_EQ(installer::LOGFILE_UNTOUCHED, 83 EXPECT_EQ(installer::LOGFILE_UNTOUCHED,
87 installer::TruncateLogFileIfNeeded(temp_file)); 84 installer::TruncateLogFileIfNeeded(temp_file));
88 EXPECT_TRUE(base::PathExists(temp_file)); 85 EXPECT_TRUE(base::PathExists(temp_file));
89 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size)); 86 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size));
90 EXPECT_EQ(test_data.size(), file_size); 87 EXPECT_EQ(test_data.size(), file_size);
91 } 88 }
92 89
93 TEST(LoggingInstallerTest, TestMoveFailsNeedsTruncation) { 90 TEST(LoggingInstallerTest, TestMoveFailsNeedsTruncation) {
94 const std::string test_data(installer::kMaxInstallerLogFileSize + 1, 'a'); 91 const std::string test_data(installer::kMaxInstallerLogFileSize + 1, 'a');
95 92
96 base::ScopedTempDir temp_dir; 93 base::ScopedTempDir temp_dir;
97 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); 94 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
98 95
99 base::FilePath temp_file = temp_dir.path().Append(L"temp"); 96 base::FilePath temp_file = temp_dir.path().Append(L"temp");
100 EXPECT_EQ(test_data.size(), 97 EXPECT_EQ(test_data.size(),
101 base::WriteFile(temp_file, &test_data[0], 98 base::WriteFile(temp_file, &test_data[0], test_data.size()));
102 static_cast<int>(test_data.size())));
103 ASSERT_TRUE(base::PathExists(temp_file)); 99 ASSERT_TRUE(base::PathExists(temp_file));
104 int64 file_size = 0; 100 int64 file_size = 0;
105 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size)); 101 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size));
106 EXPECT_EQ(test_data.size(), file_size); 102 EXPECT_EQ(test_data.size(), file_size);
107 103
108 // Create an inconvenient, non-deletable file in the location that 104 // Create an inconvenient, non-deletable file in the location that
109 // TruncateLogFileIfNeeded would like to move the log file to. 105 // TruncateLogFileIfNeeded would like to move the log file to.
110 uint32 file_flags = base::File::FLAG_CREATE | 106 uint32 file_flags = base::File::FLAG_CREATE |
111 base::File::FLAG_READ | 107 base::File::FLAG_READ |
112 base::File::FLAG_EXCLUSIVE_READ; 108 base::File::FLAG_EXCLUSIVE_READ;
113 base::FilePath temp_file_move_dest( 109 base::FilePath temp_file_move_dest(
114 temp_file.value() + FILE_PATH_LITERAL(".tmp")); 110 temp_file.value() + FILE_PATH_LITERAL(".tmp"));
115 base::File temp_move_destination_file(temp_file_move_dest, file_flags); 111 base::File temp_move_destination_file(temp_file_move_dest, file_flags);
116 ASSERT_TRUE(temp_move_destination_file.IsValid()); 112 ASSERT_TRUE(temp_move_destination_file.IsValid());
117 113
118 EXPECT_EQ(installer::LOGFILE_DELETED, 114 EXPECT_EQ(installer::LOGFILE_DELETED,
119 installer::TruncateLogFileIfNeeded(temp_file)); 115 installer::TruncateLogFileIfNeeded(temp_file));
120 EXPECT_FALSE(base::PathExists(temp_file)); 116 EXPECT_FALSE(base::PathExists(temp_file));
121 } 117 }
OLDNEW
« no previous file with comments | « chrome/installer/util/language_selector.cc ('k') | chrome/installer/util/master_preferences_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698