OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 // This is a simple application that stress-tests the crash recovery of the disk | 5 // This is a simple application that stress-tests the crash recovery of the disk |
6 // cache. The main application starts a copy of itself on a loop, checking the | 6 // cache. The main application starts a copy of itself on a loop, checking the |
7 // exit code of the child process. When the child dies in an unexpected way, | 7 // exit code of the child process. When the child dies in an unexpected way, |
8 // the main application quits. | 8 // the main application quits. |
9 | 9 |
10 // The child application has two threads: one to exercise the cache in an | 10 // The child application has two threads: one to exercise the cache in an |
(...skipping 11 matching lines...) Expand all Loading... |
22 // NOTREACHED(); | 22 // NOTREACHED(); |
23 // } | 23 // } |
24 | 24 |
25 #include <string> | 25 #include <string> |
26 #include <vector> | 26 #include <vector> |
27 | 27 |
28 #include "base/at_exit.h" | 28 #include "base/at_exit.h" |
29 #include "base/command_line.h" | 29 #include "base/command_line.h" |
30 #include "base/debug_util.h" | 30 #include "base/debug_util.h" |
31 #include "base/file_path.h" | 31 #include "base/file_path.h" |
32 #include "base/file_util.h" | |
33 #include "base/logging.h" | 32 #include "base/logging.h" |
34 #include "base/message_loop.h" | 33 #include "base/message_loop.h" |
35 #include "base/path_service.h" | 34 #include "base/path_service.h" |
36 #include "base/platform_thread.h" | 35 #include "base/platform_thread.h" |
37 #include "base/process_util.h" | 36 #include "base/process_util.h" |
38 #include "base/string_number_conversions.h" | 37 #include "base/string_number_conversions.h" |
39 #include "base/string_util.h" | 38 #include "base/string_util.h" |
40 #include "base/thread.h" | 39 #include "base/thread.h" |
41 #include "base/utf_string_conversions.h" | 40 #include "base/utf_string_conversions.h" |
42 #include "net/base/net_errors.h" | 41 #include "net/base/net_errors.h" |
43 #include "net/base/test_completion_callback.h" | 42 #include "net/base/test_completion_callback.h" |
44 #include "net/base/io_buffer.h" | 43 #include "net/base/io_buffer.h" |
45 #include "net/disk_cache/backend_impl.h" | 44 #include "net/disk_cache/backend_impl.h" |
46 #include "net/disk_cache/disk_cache.h" | 45 #include "net/disk_cache/disk_cache.h" |
47 #include "net/disk_cache/disk_cache_test_util.h" | 46 #include "net/disk_cache/disk_cache_test_util.h" |
48 | 47 |
49 using base::Time; | 48 using base::Time; |
50 | 49 |
51 const int kError = -1; | 50 const int kError = -1; |
52 const int kExpectedCrash = 100; | 51 const int kExpectedCrash = 100; |
53 | 52 |
54 FilePath GetStressCacheFilePath() { | |
55 FilePath path; | |
56 PathService::Get(base::DIR_TEMP, &path); // Ignore return value; | |
57 path = path.AppendASCII("cache_test_stress"); | |
58 if (!file_util::PathExists(path)) | |
59 file_util::CreateDirectory(path); | |
60 | |
61 return path; | |
62 } | |
63 | |
64 // Starts a new process. | 53 // Starts a new process. |
65 int RunSlave(int iteration) { | 54 int RunSlave(int iteration) { |
66 FilePath exe; | 55 FilePath exe; |
67 PathService::Get(base::FILE_EXE, &exe); | 56 PathService::Get(base::FILE_EXE, &exe); |
68 | 57 |
69 CommandLine cmdline(exe); | 58 CommandLine cmdline(exe); |
70 cmdline.AppendArg(base::IntToString(iteration)); | 59 cmdline.AppendArg(base::IntToString(iteration)); |
71 | 60 |
72 base::ProcessHandle handle; | 61 base::ProcessHandle handle; |
73 if (!base::LaunchApp(cmdline, false, false, &handle)) { | 62 if (!base::LaunchApp(cmdline, false, false, &handle)) { |
(...skipping 22 matching lines...) Expand all Loading... |
96 return 0; | 85 return 0; |
97 } | 86 } |
98 | 87 |
99 // ----------------------------------------------------------------------- | 88 // ----------------------------------------------------------------------- |
100 | 89 |
101 // This thread will loop forever, adding and removing entries from the cache. | 90 // This thread will loop forever, adding and removing entries from the cache. |
102 // iteration is the current crash cycle, so the entries on the cache are marked | 91 // iteration is the current crash cycle, so the entries on the cache are marked |
103 // to know which instance of the application wrote them. | 92 // to know which instance of the application wrote them. |
104 void StressTheCache(int iteration) { | 93 void StressTheCache(int iteration) { |
105 int cache_size = 0x800000; // 8MB | 94 int cache_size = 0x800000; // 8MB |
106 FilePath path = GetStressCacheFilePath(); | 95 FilePath path = GetCacheFilePath().InsertBeforeExtensionASCII("_stress"); |
107 | 96 |
108 base::Thread cache_thread("CacheThread"); | 97 base::Thread cache_thread("CacheThread"); |
109 if (!cache_thread.StartWithOptions( | 98 if (!cache_thread.StartWithOptions( |
110 base::Thread::Options(MessageLoop::TYPE_IO, 0))) | 99 base::Thread::Options(MessageLoop::TYPE_IO, 0))) |
111 return; | 100 return; |
112 | 101 |
113 TestCompletionCallback cb; | 102 TestCompletionCallback cb; |
114 disk_cache::Backend* cache; | 103 disk_cache::Backend* cache; |
115 int rv = disk_cache::BackendImpl::CreateBackend( | 104 int rv = disk_cache::BackendImpl::CreateBackend( |
116 path, false, cache_size, net::DISK_CACHE, | 105 path, false, cache_size, net::DISK_CACHE, |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 long int iteration = strtol(argv[1], &end, 0); | 235 long int iteration = strtol(argv[1], &end, 0); |
247 | 236 |
248 if (!StartCrashThread()) { | 237 if (!StartCrashThread()) { |
249 printf("failed to start thread\n"); | 238 printf("failed to start thread\n"); |
250 return kError; | 239 return kError; |
251 } | 240 } |
252 | 241 |
253 StressTheCache(iteration); | 242 StressTheCache(iteration); |
254 return 0; | 243 return 0; |
255 } | 244 } |
OLD | NEW |