blob: 665b5c6b9a79e4226d7e64c4be3cf9ec9e2c695d [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2009 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#include "rtc_base/win32_window.h"
Jonas Olssona4d87372019-07-05 19:08:33 +020012
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "rtc_base/gunit.h"
14#include "rtc_base/logging.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000015
16static LRESULT kDummyResult = 0x1234ABCD;
17
18class TestWindow : public rtc::Win32Window {
19 public:
20 TestWindow() : destroyed_(false) { memset(&msg_, 0, sizeof(msg_)); }
21 const MSG& msg() const { return msg_; }
22 bool destroyed() const { return destroyed_; }
23
Steve Anton9de3aac2017-10-24 10:08:26 -070024 bool OnMessage(UINT uMsg,
25 WPARAM wParam,
26 LPARAM lParam,
27 LRESULT& result) override {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000028 msg_.message = uMsg;
29 msg_.wParam = wParam;
30 msg_.lParam = lParam;
31 result = kDummyResult;
32 return true;
33 }
Steve Anton9de3aac2017-10-24 10:08:26 -070034 void OnNcDestroy() override { destroyed_ = true; }
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000035
36 private:
37 MSG msg_;
38 bool destroyed_;
39};
40
41TEST(Win32WindowTest, Basics) {
42 TestWindow wnd;
deadbeef37f5ecf2017-02-27 14:06:41 -080043 EXPECT_TRUE(wnd.handle() == nullptr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000044 EXPECT_FALSE(wnd.destroyed());
45 EXPECT_TRUE(wnd.Create(0, L"Test", 0, 0, 0, 0, 100, 100));
deadbeef37f5ecf2017-02-27 14:06:41 -080046 EXPECT_TRUE(wnd.handle() != nullptr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000047 EXPECT_EQ(kDummyResult, ::SendMessage(wnd.handle(), WM_USER, 1, 2));
ehmaldonadoda8dcfb2017-01-04 07:11:23 -080048 EXPECT_EQ(static_cast<UINT>(WM_USER), wnd.msg().message);
49 EXPECT_EQ(1u, wnd.msg().wParam);
50 EXPECT_EQ(2l, wnd.msg().lParam);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000051 wnd.Destroy();
deadbeef37f5ecf2017-02-27 14:06:41 -080052 EXPECT_TRUE(wnd.handle() == nullptr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000053 EXPECT_TRUE(wnd.destroyed());
54}
55
56TEST(Win32WindowTest, MultipleWindows) {
57 TestWindow wnd1, wnd2;
58 EXPECT_TRUE(wnd1.Create(0, L"Test", 0, 0, 0, 0, 100, 100));
59 EXPECT_TRUE(wnd2.Create(0, L"Test", 0, 0, 0, 0, 100, 100));
deadbeef37f5ecf2017-02-27 14:06:41 -080060 EXPECT_TRUE(wnd1.handle() != nullptr);
61 EXPECT_TRUE(wnd2.handle() != nullptr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000062 wnd1.Destroy();
63 wnd2.Destroy();
deadbeef37f5ecf2017-02-27 14:06:41 -080064 EXPECT_TRUE(wnd2.handle() == nullptr);
65 EXPECT_TRUE(wnd1.handle() == nullptr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000066}