summaryrefslogtreecommitdiffstats
path: root/remoting/base/breakpad_win_unittest.cc
blob: d0b59a0ddfe6ceb7735ddf956404d805d05421eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <stdio.h>

#include "base/compiler_specific.h"
#include "base/environment.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/string16.h"
#include "base/stringprintf.h"
#include "base/utf_string_conversions.h"
#include "breakpad/src/client/windows/crash_generation/client_info.h"
#include "breakpad/src/client/windows/crash_generation/crash_generation_server.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace remoting {

namespace {

// The name of the environment variable used to pass the crash server pipe name
// to the crashing child process.
const char kPipeVariableName[] = "REMOTING_BREAKPAD_WIN_DEATH_TEST_PIPE_NAME";

// The prefix string used to generate a unique crash server pipe name.
// The name has to be unique as multiple test instances can be running
// simultaneously.
const wchar_t kPipeNamePrefix[] = L"\\\\.\\pipe\\";

class MockCrashServerCallbacks {
 public:
  MockCrashServerCallbacks() {}
  virtual ~MockCrashServerCallbacks() {}

  // |google_breakpad::CrashGenerationServer| invokes callbacks from artitrary
  // thread pool threads. |OnClientDumpRequested| is the only one that happened
  // to be called in synchronous manner. While it is still called on
  // a thread pool thread, the crashing process will wait until the server
  // signals an event after |OnClientDumpRequested| completes (or until 15
  // seconds timeout expires).
  MOCK_METHOD0(OnClientDumpRequested, void());

  static void OnClientDumpRequestCallback(
      void* context,
      const google_breakpad::ClientInfo* client_info,
      const string16* file_path) {
    reinterpret_cast<MockCrashServerCallbacks*>(context)->
        OnClientDumpRequested();
  }
};

}  // namespace

void InitializeCrashReportingForTest(const wchar_t*);

class BreakpadWinDeathTest : public testing::Test {
 public:
  BreakpadWinDeathTest() {}
  virtual void SetUp() OVERRIDE {
    scoped_ptr<base::Environment> environment(base::Environment::Create());
    std::string pipe_name;
    if (environment->GetVar(kPipeVariableName, &pipe_name)) {
      // This is a child process. Initialize crash dump reporting to the crash
      // dump server.
      pipe_name_ = UTF8ToUTF16(pipe_name);
      ::remoting::InitializeCrashReportingForTest(pipe_name_.c_str());
    } else {
      // This is the parent process. Generate a unique pipe name and setup
      // a dummy crash dump server.
      UUID guid = {0};
      RPC_STATUS status = ::UuidCreate(&guid);
      EXPECT_TRUE(status == RPC_S_OK || status == RPC_S_UUID_LOCAL_ONLY);

      pipe_name_ = kPipeNamePrefix +
          base::StringPrintf(
              L"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
              guid.Data1, guid.Data2, guid.Data3,
              guid.Data4[0], guid.Data4[1], guid.Data4[2],
              guid.Data4[3], guid.Data4[4], guid.Data4[5],
              guid.Data4[6], guid.Data4[7]);
      bool result = environment->SetVar(kPipeVariableName,
                                        UTF16ToUTF8(pipe_name_));
      EXPECT_TRUE(result);

      // Setup a dummy crash dump server.
      callbacks_.reset(new MockCrashServerCallbacks());
      crash_server_.reset(
          new google_breakpad::CrashGenerationServer(
              pipe_name_, NULL,
              NULL, 0,
              MockCrashServerCallbacks::OnClientDumpRequestCallback,
              callbacks_.get(),
              NULL, 0,
              false, NULL));

      result = crash_server_->Start();
      ASSERT_TRUE(result);
    }
  }

 protected:
  scoped_ptr<google_breakpad::CrashGenerationServer> crash_server_;
  scoped_ptr<MockCrashServerCallbacks> callbacks_;
  string16 pipe_name_;
};

TEST_F(BreakpadWinDeathTest, TestAccessViolation) {
  if (callbacks_.get()) {
    EXPECT_CALL(*callbacks_, OnClientDumpRequested());
  }

  // Generate access violation exception.
  ASSERT_DEATH(*reinterpret_cast<int*>(0) = 1, "");
}

TEST_F(BreakpadWinDeathTest, TestInvalidParameter) {
  if (callbacks_.get()) {
    EXPECT_CALL(*callbacks_, OnClientDumpRequested());
  }

  // Cause the invalid parameter callback to be called.
  ASSERT_EXIT(printf(NULL), ::testing::ExitedWithCode(0), "");
}

TEST_F(BreakpadWinDeathTest, TestDebugbreak) {
  if (callbacks_.get()) {
    EXPECT_CALL(*callbacks_, OnClientDumpRequested());
  }

  // See if __debugbreak() is intercepted.
  ASSERT_DEATH(__debugbreak(), "");
}

}  // namespace remoting