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

Side by Side Diff: chrome/common/service_process_util_unittest.cc

Issue 5634005: Add a new GetInstance() method for singleton classes under chrome/service and /net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 10 years 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 | Annotate | Revision Log
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 #include "base/process_util.h" 5 #include "base/process_util.h"
6 #include "base/string_util.h" 6 #include "base/string_util.h"
7 #include "chrome/common/chrome_version_info.h" 7 #include "chrome/common/chrome_version_info.h"
8 #include "chrome/common/service_process_util.h" 8 #include "chrome/common/service_process_util.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 11
12 TEST(ServiceProcessUtilTest, ScopedVersionedName) { 12 TEST(ServiceProcessUtilTest, ScopedVersionedName) {
13 std::string test_str = "test"; 13 std::string test_str = "test";
14 std::string scoped_name = GetServiceProcessScopedVersionedName(test_str); 14 std::string scoped_name = GetServiceProcessScopedVersionedName(test_str);
15 chrome::VersionInfo version_info; 15 chrome::VersionInfo version_info;
16 DCHECK(version_info.is_valid()); 16 DCHECK(version_info.is_valid());
17 EXPECT_TRUE(EndsWith(scoped_name, test_str, true)); 17 EXPECT_TRUE(EndsWith(scoped_name, test_str, true));
18 EXPECT_NE(std::string::npos, scoped_name.find(version_info.Version())); 18 EXPECT_NE(std::string::npos, scoped_name.find(version_info.Version()));
19 } 19 }
20 20
21 #if defined(OS_WIN) 21 #if defined(OS_WIN)
22 // Singleton-ness is only implemented on Windows. 22 // Singleton-ness is only implemented on Windows.
23 // TODO(sanjeev): Rewrite this test to spawn a new process and test using the
24 // ServiceProcessState singleton across processes.
25 /*
23 TEST(ServiceProcessStateTest, Singleton) { 26 TEST(ServiceProcessStateTest, Singleton) {
24 ServiceProcessState state; 27 ServiceProcessState state;
25 EXPECT_TRUE(state.Initialize()); 28 EXPECT_TRUE(state.Initialize());
26 // The second instance should fail to Initialize. 29 // The second instance should fail to Initialize.
27 ServiceProcessState another_state; 30 ServiceProcessState another_state;
28 EXPECT_FALSE(another_state.Initialize()); 31 EXPECT_FALSE(another_state.Initialize());
29 } 32 }
33 */
30 #endif // defined(OS_WIN) 34 #endif // defined(OS_WIN)
31 35
32 TEST(ServiceProcessStateTest, ReadyState) { 36 TEST(ServiceProcessStateTest, ReadyState) {
33 #if defined(OS_WIN) 37 #if defined(OS_WIN)
34 // On Posix, we use a lock file on disk to signal readiness. This lock file 38 // On Posix, we use a lock file on disk to signal readiness. This lock file
35 // could be lying around from previous crashes which could cause 39 // could be lying around from previous crashes which could cause
36 // CheckServiceProcessReady to lie. On Windows, we use a named event so we 40 // CheckServiceProcessReady to lie. On Windows, we use a named event so we
37 // don't have this issue. Until we have a more stable signalling mechanism on 41 // don't have this issue. Until we have a more stable signalling mechanism on
38 // Posix, this check will only execute on Windows. 42 // Posix, this check will only execute on Windows.
39 EXPECT_FALSE(CheckServiceProcessReady()); 43 EXPECT_FALSE(CheckServiceProcessReady());
40 #endif // defined(OS_WIN) 44 #endif // defined(OS_WIN)
41 ServiceProcessState state; 45 ServiceProcessState* state = ServiceProcessState::GetInstance();
willchan no longer on Chromium 2010/12/08 00:58:46 Are you sure this is recommended? What do we do w
Satish 2010/12/08 12:58:22 Yes this is bound to have issues later on. I have
42 EXPECT_TRUE(state.Initialize()); 46 EXPECT_TRUE(state->Initialize());
43 state.SignalReady(NULL); 47 state->SignalReady(NULL);
44 EXPECT_TRUE(CheckServiceProcessReady()); 48 EXPECT_TRUE(CheckServiceProcessReady());
45 state.SignalStopped(); 49 state->SignalStopped();
46 EXPECT_FALSE(CheckServiceProcessReady()); 50 EXPECT_FALSE(CheckServiceProcessReady());
47 } 51 }
48 52
49 TEST(ServiceProcessStateTest, SharedMem) { 53 TEST(ServiceProcessStateTest, SharedMem) {
50 #if defined(OS_WIN) 54 #if defined(OS_WIN)
51 // On Posix, named shared memory uses a file on disk. This file 55 // On Posix, named shared memory uses a file on disk. This file
52 // could be lying around from previous crashes which could cause 56 // could be lying around from previous crashes which could cause
53 // GetServiceProcessPid to lie. On Windows, we use a named event so we 57 // GetServiceProcessPid to lie. On Windows, we use a named event so we
54 // don't have this issue. Until we have a more stable shared memory 58 // don't have this issue. Until we have a more stable shared memory
55 // implementation on Posix, this check will only execute on Windows. 59 // implementation on Posix, this check will only execute on Windows.
56 EXPECT_EQ(0, GetServiceProcessPid()); 60 EXPECT_EQ(0, GetServiceProcessPid());
57 #endif // defined(OS_WIN) 61 #endif // defined(OS_WIN)
58 ServiceProcessState state; 62 ServiceProcessState* state = ServiceProcessState::GetInstance();
59 EXPECT_TRUE(state.Initialize()); 63 EXPECT_TRUE(state->Initialize());
60 EXPECT_EQ(base::GetCurrentProcId(), GetServiceProcessPid()); 64 EXPECT_EQ(base::GetCurrentProcId(), GetServiceProcessPid());
61 } 65 }
62 66
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698