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

Side by Side Diff: net/disk_cache/stress_cache.cc

Issue 3410008: GTTF: Make net_unittests run successfully with parallel test launcher (Closed)
Patch Set: fixes Created 10 years, 3 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
« no previous file with comments | « net/disk_cache/storage_block_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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"
32 #include "base/logging.h" 33 #include "base/logging.h"
33 #include "base/message_loop.h" 34 #include "base/message_loop.h"
34 #include "base/path_service.h" 35 #include "base/path_service.h"
35 #include "base/platform_thread.h" 36 #include "base/platform_thread.h"
36 #include "base/process_util.h" 37 #include "base/process_util.h"
37 #include "base/string_number_conversions.h" 38 #include "base/string_number_conversions.h"
38 #include "base/string_util.h" 39 #include "base/string_util.h"
39 #include "base/thread.h" 40 #include "base/thread.h"
40 #include "base/utf_string_conversions.h" 41 #include "base/utf_string_conversions.h"
41 #include "net/base/net_errors.h" 42 #include "net/base/net_errors.h"
42 #include "net/base/test_completion_callback.h" 43 #include "net/base/test_completion_callback.h"
43 #include "net/base/io_buffer.h" 44 #include "net/base/io_buffer.h"
44 #include "net/disk_cache/backend_impl.h" 45 #include "net/disk_cache/backend_impl.h"
45 #include "net/disk_cache/disk_cache.h" 46 #include "net/disk_cache/disk_cache.h"
46 #include "net/disk_cache/disk_cache_test_util.h" 47 #include "net/disk_cache/disk_cache_test_util.h"
47 48
48 using base::Time; 49 using base::Time;
49 50
50 const int kError = -1; 51 const int kError = -1;
51 const int kExpectedCrash = 100; 52 const int kExpectedCrash = 100;
52 53
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
53 // Starts a new process. 64 // Starts a new process.
54 int RunSlave(int iteration) { 65 int RunSlave(int iteration) {
55 FilePath exe; 66 FilePath exe;
56 PathService::Get(base::FILE_EXE, &exe); 67 PathService::Get(base::FILE_EXE, &exe);
57 68
58 CommandLine cmdline(exe); 69 CommandLine cmdline(exe);
59 cmdline.AppendArg(base::IntToString(iteration)); 70 cmdline.AppendArg(base::IntToString(iteration));
60 71
61 base::ProcessHandle handle; 72 base::ProcessHandle handle;
62 if (!base::LaunchApp(cmdline, false, false, &handle)) { 73 if (!base::LaunchApp(cmdline, false, false, &handle)) {
(...skipping 22 matching lines...) Expand all
85 return 0; 96 return 0;
86 } 97 }
87 98
88 // ----------------------------------------------------------------------- 99 // -----------------------------------------------------------------------
89 100
90 // This thread will loop forever, adding and removing entries from the cache. 101 // This thread will loop forever, adding and removing entries from the cache.
91 // iteration is the current crash cycle, so the entries on the cache are marked 102 // iteration is the current crash cycle, so the entries on the cache are marked
92 // to know which instance of the application wrote them. 103 // to know which instance of the application wrote them.
93 void StressTheCache(int iteration) { 104 void StressTheCache(int iteration) {
94 int cache_size = 0x800000; // 8MB 105 int cache_size = 0x800000; // 8MB
95 FilePath path = GetCacheFilePath().InsertBeforeExtensionASCII("_stress"); 106 FilePath path = GetStressCacheFilePath();
96 107
97 base::Thread cache_thread("CacheThread"); 108 base::Thread cache_thread("CacheThread");
98 if (!cache_thread.StartWithOptions( 109 if (!cache_thread.StartWithOptions(
99 base::Thread::Options(MessageLoop::TYPE_IO, 0))) 110 base::Thread::Options(MessageLoop::TYPE_IO, 0)))
100 return; 111 return;
101 112
102 TestCompletionCallback cb; 113 TestCompletionCallback cb;
103 disk_cache::Backend* cache; 114 disk_cache::Backend* cache;
104 int rv = disk_cache::BackendImpl::CreateBackend( 115 int rv = disk_cache::BackendImpl::CreateBackend(
105 path, false, cache_size, net::DISK_CACHE, 116 path, false, cache_size, net::DISK_CACHE,
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 long int iteration = strtol(argv[1], &end, 0); 246 long int iteration = strtol(argv[1], &end, 0);
236 247
237 if (!StartCrashThread()) { 248 if (!StartCrashThread()) {
238 printf("failed to start thread\n"); 249 printf("failed to start thread\n");
239 return kError; 250 return kError;
240 } 251 }
241 252
242 StressTheCache(iteration); 253 StressTheCache(iteration);
243 return 0; 254 return 0;
244 } 255 }
OLDNEW
« no previous file with comments | « net/disk_cache/storage_block_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698