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

Unified Diff: third_party/crashpad/crashpad/util/win/session_end_watcher_test.cc

Issue 2710663006: Update Crashpad to 4a2043ea65e2641ef1a921801c0aaa15ada02fc7 (Closed)
Patch Set: Update Crashpad to 4a2043ea65e2 Created 3 years, 10 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: third_party/crashpad/crashpad/util/win/session_end_watcher_test.cc
diff --git a/third_party/crashpad/crashpad/util/win/session_end_watcher_test.cc b/third_party/crashpad/crashpad/util/win/session_end_watcher_test.cc
new file mode 100644
index 0000000000000000000000000000000000000000..692d76e3277a765e3d3ec3dcc6e75b4d16d343b8
--- /dev/null
+++ b/third_party/crashpad/crashpad/util/win/session_end_watcher_test.cc
@@ -0,0 +1,62 @@
+// Copyright 2017 The Crashpad Authors. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#include "util/win/session_end_watcher.h"
+
+#include "gtest/gtest.h"
+#include "test/errors.h"
+
+namespace crashpad {
+namespace test {
+namespace {
+
+class SessionEndWatcherTest final : public SessionEndWatcher {
+ public:
+ SessionEndWatcherTest() : SessionEndWatcher(), called_(false) {}
+
+ ~SessionEndWatcherTest() override {}
+
+ void Run() {
+ WaitForStart();
+
+ HWND window = GetWindow();
+ ASSERT_TRUE(window);
+ EXPECT_TRUE(PostMessage(window, WM_ENDSESSION, 1, 0));
+
+ WaitForStop();
+
+ EXPECT_TRUE(called_);
+ }
+
+ private:
+ // SessionEndWatcher:
+ void SessionEnding() override { called_ = true; }
+
+ bool called_;
+
+ DISALLOW_COPY_AND_ASSIGN(SessionEndWatcherTest);
+};
+
+TEST(SessionEndWatcher, SessionEndWatcher) {
+ SessionEndWatcherTest test;
+ test.Run();
+}
+
+TEST(SessionEndWatcher, DoNothing) {
+ SessionEndWatcherTest test;
+}
+
+} // namespace
+} // namespace test
+} // namespace crashpad
« no previous file with comments | « third_party/crashpad/crashpad/util/win/session_end_watcher.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698