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

Unified Diff: chrome/browser/process_singleton_posix_unittest.cc

Issue 218883008: Use process_singleton_linux on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle old SingletonLock Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/process_singleton_posix_unittest.cc
diff --git a/chrome/browser/process_singleton_linux_unittest.cc b/chrome/browser/process_singleton_posix_unittest.cc
similarity index 86%
rename from chrome/browser/process_singleton_linux_unittest.cc
rename to chrome/browser/process_singleton_posix_unittest.cc
index 689a2dfaf1e0c0e07d07f8c6dc564c3fa191cccf..122831f692bf9677cbec4156944b457405b3ccd0 100644
--- a/chrome/browser/process_singleton_linux_unittest.cc
+++ b/chrome/browser/process_singleton_posix_unittest.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/process_singleton.h"
+#include <fcntl.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/wait.h>
@@ -14,9 +15,11 @@
#include "base/bind.h"
#include "base/command_line.h"
+#include "base/file_util.h"
#include "base/files/file_path.h"
#include "base/files/scoped_temp_dir.h"
#include "base/message_loop/message_loop.h"
+#include "base/posix/eintr_wrapper.h"
#include "base/strings/stringprintf.h"
#include "base/synchronization/waitable_event.h"
#include "base/test/test_timeouts.h"
@@ -31,7 +34,7 @@ using content::BrowserThread;
namespace {
-class ProcessSingletonLinuxTest : public testing::Test {
+class ProcessSingletonPosixTest : public testing::Test {
public:
// A ProcessSingleton exposing some protected methods for testing.
class TestableProcessSingleton : public ProcessSingleton {
@@ -58,7 +61,7 @@ class ProcessSingletonLinuxTest : public testing::Test {
}
};
- ProcessSingletonLinuxTest()
+ ProcessSingletonPosixTest()
: kill_callbacks_(0),
io_thread_(BrowserThread::IO),
wait_event_(true, false),
@@ -89,7 +92,7 @@ class ProcessSingletonLinuxTest : public testing::Test {
if (process_singleton_on_thread_) {
worker_thread_->message_loop()->PostTask(
FROM_HERE,
- base::Bind(&ProcessSingletonLinuxTest::DestructProcessSingleton,
+ base::Bind(&ProcessSingletonPosixTest::DestructProcessSingleton,
base::Unretained(this)));
scoped_refptr<base::ThreadTestHelper> helper(new base::ThreadTestHelper(
@@ -108,7 +111,7 @@ class ProcessSingletonLinuxTest : public testing::Test {
worker_thread_->message_loop()->PostTask(
FROM_HERE,
- base::Bind(&ProcessSingletonLinuxTest::
+ base::Bind(&ProcessSingletonPosixTest::
CreateProcessSingletonInternal,
base::Unretained(this)));
@@ -132,7 +135,7 @@ class ProcessSingletonLinuxTest : public testing::Test {
process_singleton->OverrideCurrentPidForTesting(
base::GetCurrentProcId() + 1);
process_singleton->OverrideKillCallbackForTesting(
- base::Bind(&ProcessSingletonLinuxTest::KillCallback,
+ base::Bind(&ProcessSingletonPosixTest::KillCallback,
base::Unretained(this)));
}
@@ -172,7 +175,7 @@ class ProcessSingletonLinuxTest : public testing::Test {
void BlockWorkerThread() {
worker_thread_->message_loop()->PostTask(
FROM_HERE,
- base::Bind(&ProcessSingletonLinuxTest::BlockThread,
+ base::Bind(&ProcessSingletonPosixTest::BlockThread,
base::Unretained(this)));
}
@@ -219,10 +222,10 @@ class ProcessSingletonLinuxTest : public testing::Test {
} // namespace
-// Test if the socket file and symbol link created by ProcessSingletonLinux
+// Test if the socket file and symbol link created by ProcessSingletonPosix
// are valid.
// If this test flakes, use http://crbug.com/74554.
-TEST_F(ProcessSingletonLinuxTest, CheckSocketFile) {
+TEST_F(ProcessSingletonPosixTest, CheckSocketFile) {
CreateProcessSingletonOnThread();
struct stat statbuf;
ASSERT_EQ(0, lstat(lock_path_.value().c_str(), &statbuf));
@@ -254,7 +257,7 @@ TEST_F(ProcessSingletonLinuxTest, CheckSocketFile) {
// TODO(james.su@gmail.com): port following tests to Windows.
// Test success case of NotifyOtherProcess().
-TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessSuccess) {
+TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessSuccess) {
CreateProcessSingletonOnThread();
EXPECT_EQ(ProcessSingleton::PROCESS_NOTIFIED,
NotifyOtherProcess(true, TestTimeouts::action_timeout()));
@@ -262,7 +265,7 @@ TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessSuccess) {
}
// Test failure case of NotifyOtherProcess().
-TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessFailure) {
+TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessFailure) {
CreateProcessSingletonOnThread();
BlockWorkerThread();
@@ -275,7 +278,7 @@ TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessFailure) {
// Test that we don't kill ourselves by accident if a lockfile with the same pid
// happens to exist.
-TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessNoSuicide) {
+TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessNoSuicide) {
CreateProcessSingletonOnThread();
// Replace lockfile with one containing our own pid.
EXPECT_EQ(0, unlink(lock_path_.value().c_str()));
@@ -296,7 +299,7 @@ TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessNoSuicide) {
// Test that we can still notify a process on the same host even after the
// hostname changed.
-TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessHostChanged) {
+TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessHostChanged) {
CreateProcessSingletonOnThread();
EXPECT_EQ(0, unlink(lock_path_.value().c_str()));
EXPECT_EQ(0, symlink("FAKEFOOHOST-1234", lock_path_.value().c_str()));
@@ -308,7 +311,7 @@ TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessHostChanged) {
// Test that we fail when lock says process is on another host and we can't
// notify it over the socket.
-TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessDifferingHost) {
+TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessDifferingHost) {
CreateProcessSingletonOnThread();
BlockWorkerThread();
@@ -326,7 +329,7 @@ TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessDifferingHost) {
// Test that we fail when lock says process is on another host and we can't
// notify it over the socket.
-TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessOrCreate_DifferingHost) {
+TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessOrCreate_DifferingHost) {
CreateProcessSingletonOnThread();
BlockWorkerThread();
@@ -344,7 +347,7 @@ TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessOrCreate_DifferingHost) {
}
// Test that Create fails when another browser is using the profile directory.
-TEST_F(ProcessSingletonLinuxTest, CreateFailsWithExistingBrowser) {
+TEST_F(ProcessSingletonPosixTest, CreateFailsWithExistingBrowser) {
CreateProcessSingletonOnThread();
scoped_ptr<TestableProcessSingleton> process_singleton(
@@ -355,7 +358,7 @@ TEST_F(ProcessSingletonLinuxTest, CreateFailsWithExistingBrowser) {
// Test that Create fails when another browser is using the profile directory
// but with the old socket location.
-TEST_F(ProcessSingletonLinuxTest, CreateChecksCompatibilitySocket) {
+TEST_F(ProcessSingletonPosixTest, CreateChecksCompatibilitySocket) {
CreateProcessSingletonOnThread();
scoped_ptr<TestableProcessSingleton> process_singleton(
CreateProcessSingleton());
@@ -376,7 +379,7 @@ TEST_F(ProcessSingletonLinuxTest, CreateChecksCompatibilitySocket) {
// Test that we fail when lock says process is on another host and we can't
// notify it over the socket before of a bad cookie.
-TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessOrCreate_BadCookie) {
+TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessOrCreate_BadCookie) {
CreateProcessSingletonOnThread();
// Change the cookie.
EXPECT_EQ(0, unlink(cookie_path_.value().c_str()));
@@ -391,3 +394,25 @@ TEST_F(ProcessSingletonLinuxTest, NotifyOtherProcessOrCreate_BadCookie) {
NotifyOtherProcessOrCreate(url, TestTimeouts::action_timeout()));
}
+#if defined(OS_MACOSX)
+// Test that if there is an existing lock file, and we could not flock()
+// it, then exit.
+TEST_F(ProcessSingletonPosixTest, CreateRespectsOldMacLock) {
+ scoped_ptr<TestableProcessSingleton> process_singleton(
+ CreateProcessSingleton());
+ int lock_fd = HANDLE_EINTR(open(lock_path_.value().c_str(),
+ O_RDWR | O_CREAT | O_EXLOCK, 0644));
+ ASSERT_NE(-1, lock_fd);
+ EXPECT_FALSE(process_singleton->Create());
mattm 2014/04/24 22:58:51 maybe also double check that after that the lockpa
jackhou1 2014/04/28 05:20:16 Done.
+}
+
+// Test that if there is an existing lock file, and it's not locked, we replace
+// it.
+TEST_F(ProcessSingletonPosixTest, CreateReplacesOldMacLock) {
+ scoped_ptr<TestableProcessSingleton> process_singleton(
+ CreateProcessSingleton());
+ EXPECT_EQ(0, base::WriteFile(lock_path_, "", 0));
+ EXPECT_TRUE(process_singleton->Create());
+ EXPECT_TRUE(base::IsLink(lock_path_));
+}
+#endif // defined(OS_MACOSX)

Powered by Google App Engine
This is Rietveld 408576698