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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/client_session.h"
#include <array>
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <vector>
#include "base/check.h"
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/run_loop.h"
#include "base/strings/string_split.h"
#include "base/test/task_environment.h"
#include "base/test/test_future.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "remoting/base/auto_thread_task_runner.h"
#include "remoting/base/constants.h"
#include "remoting/base/errors.h"
#include "remoting/base/local_session_policies_provider.h"
#include "remoting/base/session_policies.h"
#include "remoting/host/base/desktop_environment_options.h"
#include "remoting/host/desktop_display_info.h"
#include "remoting/host/fake_desktop_environment.h"
#include "remoting/host/fake_host_extension.h"
#include "remoting/host/host_extension.h"
#include "remoting/host/host_extension_session.h"
#include "remoting/host/host_mock_objects.h"
#include "remoting/proto/control.pb.h"
#include "remoting/proto/event.pb.h"
#include "remoting/protocol/capability_names.h"
#include "remoting/protocol/fake_connection_to_client.h"
#include "remoting/protocol/fake_desktop_capturer.h"
#include "remoting/protocol/fake_message_pipe.h"
#include "remoting/protocol/fake_session.h"
#include "remoting/protocol/message_pipe.h"
#include "remoting/protocol/protocol_mock_objects.h"
#include "remoting/protocol/session_config.h"
#include "remoting/protocol/test_event_matchers.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/libjingle_xmpp/xmllite/qname.h"
#include "third_party/libjingle_xmpp/xmllite/xmlelement.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_capture_types.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
#include "ui/events/types/event_type.h"
namespace remoting {
using protocol::FakeSession;
using protocol::MockClientStub;
using protocol::MockHostStub;
using protocol::MockInputStub;
using protocol::MockVideoStub;
using protocol::SessionConfig;
using protocol::test::EqualsClipboardEvent;
using protocol::test::EqualsKeyEvent;
using protocol::test::EqualsMouseButtonEvent;
using protocol::test::EqualsMouseMoveEvent;
using testing::_;
using testing::AtLeast;
using testing::Eq;
using testing::Not;
using testing::Return;
using testing::ReturnRef;
using testing::StrictMock;
namespace {
constexpr char kTestDataChannelCallbackName[] = "test_channel_name";
// Use large fake screen-ids on 64-bit systems, to detect errors caused by
// inadvertent casts to 32-bits.
constexpr bool kUse64BitDisplayId = (sizeof(webrtc::ScreenId) >= 8);
// Matches a |protocol::Capabilities| argument against a list of capabilities
// formatted as a space-separated string.
MATCHER_P(IncludesCapabilities, expected_capabilities, "") {
if (!arg.has_capabilities()) {
return false;
}
std::vector<std::string> words_args =
base::SplitString(arg.capabilities(), " ", base::KEEP_WHITESPACE,
base::SPLIT_WANT_NONEMPTY);
std::vector<std::string> words_expected =
base::SplitString(expected_capabilities, " ", base::KEEP_WHITESPACE,
base::SPLIT_WANT_NONEMPTY);
for (const auto& word : words_expected) {
if (!base::Contains(words_args, word)) {
return false;
}
}
return true;
}
MATCHER_P(ScreenIdMatches, expected_id, "") {
return arg.screen_id() == expected_id;
}
protocol::MouseEvent MakeMouseMoveEvent(int x, int y) {
protocol::MouseEvent result;
result.set_x(x);
result.set_y(y);
return result;
}
protocol::KeyEvent MakeKeyEvent(bool pressed, std::uint32_t keycode) {
protocol::KeyEvent result;
result.set_pressed(pressed);
result.set_usb_keycode(keycode);
return result;
}
protocol::ClipboardEvent MakeClipboardEvent(const std::string& text) {
protocol::ClipboardEvent result;
result.set_mime_type(kMimeTypeTextUtf8);
result.set_data(text);
return result;
}
} // namespace
class ClientSessionTest : public testing::Test {
public:
ClientSessionTest() = default;
void SetUp() override;
void TearDown() override;
protected:
// Fake multi-monitor setup.
static const int kDisplay1Width =
protocol::FakeDesktopCapturer::kWidth; // 800
static const int kDisplay1Height =
protocol::FakeDesktopCapturer::kHeight; // 600
static const std::int64_t kDisplay1Id =
kUse64BitDisplayId ? 1111111111111111 : 11111111;
static const int kDisplay2Width = 1024;
static const int kDisplay2Height = 768;
static const int kDisplay2YOffset = 35;
static const std::int64_t kDisplay2Id =
kUse64BitDisplayId ? 2222222222222222 : 22222222;
// Creates the client session from a FakeSession instance.
void CreateClientSession(std::unique_ptr<protocol::FakeSession> session);
// Creates the client session.
void CreateClientSession();
// Notifies the client session that the client connection has been
// authenticated and channels have been connected. This effectively enables
// the input pipe line and starts video capturing.
void ConnectClientSession(const SessionPolicies* session_policies = nullptr);
// Fakes video size notification from the VideoStream.
void SendOnVideoSizeChanged(int width, int height, int dpi_x, int dpi_y);
void NotifyVideoSize(int id);
void NotifyVideoSizeAll();
// Add a fake display to the layout list. Used in conjunction with
// NotifyDesktopDisplaySize.
void AddDisplayToLayout(protocol::VideoLayout* displays,
int x,
int y,
int width,
int height,
int dpi_x,
int dpi_y,
std::int64_t display_id);
// Fakes desktop display size notification from Webrtc.
void NotifyDesktopDisplaySize(
std::unique_ptr<protocol::VideoLayout> displays);
// Fakes display select request from user.
void NotifySelectDesktopDisplay(std::string id);
// Convenience methods to setup a single- or double-monitor setup.
void ResetDisplayInfo();
void SetupSingleDisplay();
void SetupMultiDisplay();
void SetupMultiDisplay_SameSize();
// When using a multi-mon setup, this fakes the user selecting which display
// to show.
void MultiMon_SelectFirstDisplay();
void MultiMon_SelectSecondDisplay();
void MultiMon_SelectAllDisplays();
void MultiMon_SelectDisplay(std::string display_id);
// Return the identifier of the display that's currently selected.
webrtc::ScreenId GetSelectedSourceDisplayId();
// Geometry info for displays being tested.
DesktopDisplayInfo displays_;
int curr_display_;
// Message loop that will process all ClientSession tasks.
base::test::TaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
// AutoThreadTaskRunner on which |client_session_| will be run.
scoped_refptr<AutoThreadTaskRunner> task_runner_;
// Used to run |message_loop_| after each test, until no objects remain that
// require it.
base::RunLoop run_loop_;
// HostExtensions to pass when creating the ClientSession. Caller retains
// ownership of the HostExtensions themselves.
std::vector<raw_ptr<HostExtension, VectorExperimental>> extensions_;
// Vectors of events to bind to `client_sessions_`, must outlive it.
std::vector<protocol::KeyEvent> key_events_;
std::vector<protocol::MouseEvent> mouse_events_;
std::vector<protocol::ClipboardEvent> clipboard_events_;
SessionPolicies initial_local_policies_;
LocalSessionPoliciesProvider local_session_policies_provider_;
// ClientSession instance under test.
std::unique_ptr<ClientSession> client_session_;
// ClientSession::EventHandler mock for use in tests.
MockClientSessionEventHandler session_event_handler_;
// Stubs returned to |client_session_| components by |connection_|.
MockClientStub client_stub_;
// ClientSession owns |connection_| but tests need it to inject fake events.
raw_ptr<protocol::FakeConnectionToClient, DanglingUntriaged> connection_;
std::unique_ptr<FakeDesktopEnvironmentFactory> desktop_environment_factory_;
DesktopEnvironmentOptions desktop_environment_options_;
};
void ClientSessionTest::SetUp() {
// Arrange to run |task_environment_| until no components depend on it.
task_runner_ = new AutoThreadTaskRunner(
task_environment_.GetMainThreadTaskRunner(), run_loop_.QuitClosure());
desktop_environment_factory_ =
std::make_unique<FakeDesktopEnvironmentFactory>(
task_environment_.GetMainThreadTaskRunner());
desktop_environment_options_ = DesktopEnvironmentOptions::CreateDefault();
initial_local_policies_.maximum_session_duration = base::Hours(10);
local_session_policies_provider_.set_local_policies(initial_local_policies_);
// Suppress spammy "uninteresting call" logs.
EXPECT_CALL(client_stub_, SetCursorShape(_)).Times(testing::AnyNumber());
}
void ClientSessionTest::TearDown() {
if (client_session_) {
if (connection_->is_connected()) {
client_session_->DisconnectSession(ErrorCode::OK, {}, FROM_HERE);
}
client_session_.reset();
desktop_environment_factory_.reset();
}
// Clear out |task_runner_| reference so the loop can quit, and run it until
// it does.
task_runner_ = nullptr;
run_loop_.Run();
}
void ClientSessionTest::CreateClientSession(
std::unique_ptr<protocol::FakeSession> session) {
DCHECK(session);
// Mock protocol::ConnectionToClient APIs called directly by ClientSession.
// HostStub is not touched by ClientSession, so we can safely pass nullptr.
std::unique_ptr<protocol::FakeConnectionToClient> connection(
new protocol::FakeConnectionToClient(std::move(session)));
connection->set_client_stub(&client_stub_);
connection_ = connection.get();
client_session_ = std::make_unique<ClientSession>(
&session_event_handler_, std::move(connection),
desktop_environment_factory_.get(), desktop_environment_options_, nullptr,
extensions_, &local_session_policies_provider_);
}
void ClientSessionTest::CreateClientSession() {
CreateClientSession(std::make_unique<protocol::FakeSession>());
}
void ClientSessionTest::ConnectClientSession(
const SessionPolicies* session_policies) {
EXPECT_CALL(session_event_handler_, OnSessionPoliciesReceived(_))
.WillOnce(Return(std::nullopt));
EXPECT_CALL(session_event_handler_, OnSessionAuthenticated(_));
base::test::TestFuture<void> future;
EXPECT_CALL(session_event_handler_, OnSessionChannelsConnected(_))
.WillOnce([&future] { future.SetValue(); });
// Stubs should be set only after connection is authenticated.
EXPECT_FALSE(connection_->clipboard_stub());
EXPECT_FALSE(connection_->input_stub());
client_session_->OnConnectionAuthenticated(session_policies);
client_session_->CreateMediaStreams();
client_session_->OnConnectionChannelsConnected();
future.Get();
EXPECT_TRUE(connection_->clipboard_stub());
EXPECT_TRUE(connection_->input_stub());
}
void ClientSessionTest::SendOnVideoSizeChanged(int width,
int height,
int dpi_x,
int dpi_y) {
connection_->last_video_stream()->observer()->OnVideoSizeChanged(
connection_->last_video_stream().get(),
webrtc::DesktopSize(width, height), webrtc::DesktopVector(dpi_x, dpi_y));
}
void ClientSessionTest::NotifyVideoSize(int display_index) {
const DisplayGeometry* oldDisp = displays_.GetDisplayInfo(curr_display_);
const DisplayGeometry* disp = displays_.GetDisplayInfo(display_index);
curr_display_ = display_index;
// The OnVideoSizeChanged message is sent only if the size has actually
// changed.
if (oldDisp == nullptr || disp == nullptr || oldDisp->width != disp->width ||
oldDisp->height != disp->height) {
SendOnVideoSizeChanged(disp->width, disp->height, disp->dpi, disp->dpi);
} else {
client_session_->UpdateMouseClampingFilterOffset();
}
}
void ClientSessionTest::NotifyVideoSizeAll() {
if (curr_display_ == webrtc::kFullDesktopScreenId) {
return;
}
curr_display_ = webrtc::kFullDesktopScreenId;
int x_min, x_max, y_min, y_max;
bool initialized = false;
for (const auto& disp : displays_.displays()) {
int disp_x_max = disp.x + disp.width;
int disp_y_max = disp.y + disp.height;
if (!initialized) {
x_min = disp.x;
x_max = disp_x_max;
y_min = disp.y;
y_max = disp_y_max;
initialized = true;
} else {
if (disp.x < x_min) {
x_min = disp.x;
}
if (disp_x_max > x_max) {
x_max = disp_x_max;
}
if (disp.y < y_min) {
y_min = disp.y;
}
if (disp_y_max > y_max) {
y_max = disp_y_max;
}
}
}
int width = x_max - x_min;
int height = y_max - y_min;
SendOnVideoSizeChanged(width, height, kDefaultDpi, kDefaultDpi);
}
void ClientSessionTest::AddDisplayToLayout(protocol::VideoLayout* displays,
int x,
int y,
int width,
int height,
int dpi_x,
int dpi_y,
std::int64_t display_id) {
protocol::VideoTrackLayout* video_track = displays->add_video_track();
video_track->set_position_x(x);
video_track->set_position_y(y);
video_track->set_width(width);
video_track->set_height(height);
video_track->set_x_dpi(dpi_x);
video_track->set_y_dpi(dpi_y);
video_track->set_screen_id(display_id);
displays_.AddDisplayFrom(*video_track);
}
void ClientSessionTest::NotifyDesktopDisplaySize(
std::unique_ptr<protocol::VideoLayout> displays) {
client_session_->OnDesktopDisplayChanged(std::move(displays));
}
void ClientSessionTest::NotifySelectDesktopDisplay(std::string id) {
protocol::SelectDesktopDisplayRequest req;
req.set_id(id);
client_session_->SelectDesktopDisplay(req);
}
void ClientSessionTest::ResetDisplayInfo() {
displays_.Reset();
curr_display_ = webrtc::kInvalidScreenId;
}
// Set up a single display (default size).
void ClientSessionTest::SetupSingleDisplay() {
ResetDisplayInfo();
auto displays = std::make_unique<protocol::VideoLayout>();
AddDisplayToLayout(displays.get(), 0, 0, kDisplay1Width, kDisplay1Height,
kDefaultDpi, kDefaultDpi, kDisplay1Id);
NotifyVideoSizeAll();
NotifyDesktopDisplaySize(std::move(displays));
}
// Set up multiple displays:
// +-----------+
// | 800x600 |---------------+
// | 0 | 1024x768 |
// +-----------+ 1 |
// | |
// +---------------+
void ClientSessionTest::SetupMultiDisplay() {
ResetDisplayInfo();
auto displays = std::make_unique<protocol::VideoLayout>();
AddDisplayToLayout(displays.get(), 0, 0, kDisplay1Width, kDisplay1Height,
kDefaultDpi, kDefaultDpi, kDisplay1Id);
AddDisplayToLayout(displays.get(), kDisplay1Width, kDisplay2YOffset,
kDisplay2Width, kDisplay2Height, kDefaultDpi, kDefaultDpi,
kDisplay2Id);
NotifyVideoSizeAll();
NotifyDesktopDisplaySize(std::move(displays));
}
// Set up multiple displays that are the same size:
// +-----------+
// | 800x600 |-----------+
// | 0 | 800x600 |
// +-----------+ 1 |
// +-----------+
void ClientSessionTest::SetupMultiDisplay_SameSize() {
ResetDisplayInfo();
auto displays = std::make_unique<protocol::VideoLayout>();
AddDisplayToLayout(displays.get(), 0, 0, kDisplay1Width, kDisplay1Height,
kDefaultDpi, kDefaultDpi, kDisplay1Id);
AddDisplayToLayout(displays.get(), kDisplay1Width, kDisplay2YOffset,
kDisplay1Width, kDisplay1Height, kDefaultDpi, kDefaultDpi,
kDisplay2Id);
NotifyVideoSizeAll();
NotifyDesktopDisplaySize(std::move(displays));
}
void ClientSessionTest::MultiMon_SelectFirstDisplay() {
NotifySelectDesktopDisplay("0");
NotifyVideoSize(0);
}
void ClientSessionTest::MultiMon_SelectSecondDisplay() {
NotifySelectDesktopDisplay("1");
NotifyVideoSize(1);
}
void ClientSessionTest::MultiMon_SelectAllDisplays() {
NotifySelectDesktopDisplay("all");
NotifyVideoSizeAll();
}
void ClientSessionTest::MultiMon_SelectDisplay(std::string display_id) {
NotifySelectDesktopDisplay(display_id);
}
webrtc::ScreenId ClientSessionTest::GetSelectedSourceDisplayId() {
return connection_->last_video_stream()->selected_source();
}
TEST_F(
ClientSessionTest,
OnLocalPoliciesChanged_DoesNotDisconnectIfEffectivePoliciesComeFromRemotePolicies) {
SessionPolicies remote_policies;
remote_policies.maximum_session_duration = base::Hours(8);
CreateClientSession();
ConnectClientSession(&remote_policies);
EXPECT_TRUE(connection_->is_connected());
SessionPolicies new_policies;
new_policies.maximum_session_duration = base::Hours(23);
local_session_policies_provider_.set_local_policies(new_policies);
EXPECT_TRUE(connection_->is_connected());
}
TEST_F(ClientSessionTest,
OnLocalPoliciesChanged_DoesNotDisconnectIfEffectivePoliciesNotChanged) {
CreateClientSession();
ConnectClientSession();
EXPECT_TRUE(connection_->is_connected());
local_session_policies_provider_.set_local_policies(initial_local_policies_);
EXPECT_TRUE(connection_->is_connected());
}
TEST_F(ClientSessionTest,
OnLocalPoliciesChanged_DisconnectsIfEffectivePoliciesChanged) {
CreateClientSession();
ConnectClientSession();
EXPECT_TRUE(connection_->is_connected());
SessionPolicies local_policies;
local_policies.maximum_session_duration = base::Hours(23);
local_session_policies_provider_.set_local_policies(local_policies);
EXPECT_FALSE(connection_->is_connected());
}
TEST_F(ClientSessionTest, DisconnectsAfterMaxSessionDurationIsReached) {
CreateClientSession();
ConnectClientSession();
EXPECT_TRUE(connection_->is_connected());
// Calling FastForwardBy() would result in a livelock, so we just advance the
// clock and run all the scheduled tasks, which includes the max duration
// timer.
task_environment_.AdvanceClock(
*initial_local_policies_.maximum_session_duration + base::Minutes(1));
task_environment_.RunUntilIdle();
EXPECT_FALSE(connection_->is_connected());
}
TEST_F(ClientSessionTest, DisconnectsIfOnSessionPoliciesReceivedReturnsError) {
EXPECT_CALL(session_event_handler_,
OnSessionPoliciesReceived(initial_local_policies_))
.WillOnce(Return(ErrorCode::DISALLOWED_BY_POLICY));
CreateClientSession();
client_session_->OnConnectionAuthenticated(nullptr);
EXPECT_FALSE(connection_->is_connected());
EXPECT_EQ(connection_->disconnect_error(), ErrorCode::DISALLOWED_BY_POLICY);
}
TEST_F(ClientSessionTest,
EffectivePoliciesImplicitlyAllowFileTransfer_HasCapability) {
local_session_policies_provider_.set_local_policies({});
EXPECT_CALL(
client_stub_,
SetCapabilities(IncludesCapabilities(protocol::kFileTransferCapability)));
CreateClientSession();
ConnectClientSession();
}
TEST_F(ClientSessionTest,
EffectivePoliciesExplicitlyAllowFileTransfer_HasCapability) {
SessionPolicies local_policies;
local_policies.allow_file_transfer = true;
local_session_policies_provider_.set_local_policies(local_policies);
EXPECT_CALL(
client_stub_,
SetCapabilities(IncludesCapabilities(protocol::kFileTransferCapability)));
CreateClientSession();
ConnectClientSession();
}
TEST_F(ClientSessionTest,
EffectivePoliciesDisallowFileTransfer_DoesNotHaveCapability) {
SessionPolicies local_policies;
local_policies.allow_file_transfer = false;
local_session_policies_provider_.set_local_policies(local_policies);
EXPECT_CALL(client_stub_, SetCapabilities(Not(IncludesCapabilities(
protocol::kFileTransferCapability))));
CreateClientSession();
ConnectClientSession();
}
TEST_F(ClientSessionTest, ApplyPoliciesFromRemotePolicies) {
SessionPolicies local_policies;
local_policies.allow_file_transfer = true;
local_policies.allow_uri_forwarding = true;
local_session_policies_provider_.set_local_policies(local_policies);
SessionPolicies remote_policies;
remote_policies.allow_file_transfer = false;
remote_policies.allow_uri_forwarding = false;
EXPECT_CALL(client_stub_,
SetCapabilities(Not(IncludesCapabilities(
std::string() + protocol::kFileTransferCapability + " " +
protocol::kRemoteOpenUrlCapability))));
CreateClientSession();
ConnectClientSession(&remote_policies);
}
TEST_F(ClientSessionTest, MultiMonMouseMove) {
CreateClientSession();
ConnectClientSession();
SetupMultiDisplay();
FakeInputInjector* input_injector =
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
.get();
input_injector->set_mouse_events(&mouse_events_);
// These mouse events are in global (full desktop) coordinates.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(70, 50));
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(1000, 650));
// Select second display: origin: 800,35 ; size: 1024x768
MultiMon_SelectSecondDisplay();
// This mouse event is injected relative to the second display.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(1005, 625));
// Events should clamp to the selected display.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(2000, 700));
// Select first display: origin: 0,0 ; size: 800x600
MultiMon_SelectFirstDisplay();
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(80, 60));
// Events should clamp to the selected display (800,600).
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(1000, 640));
// Select entire desktop again: origin: 0,0 ; size: 1824x768
MultiMon_SelectAllDisplays();
// Events should clamp to the entire desktop (800+1024, 35+768).
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(2000, 1000));
client_session_->DisconnectSession(ErrorCode::OK, {}, FROM_HERE);
client_session_.reset();
EXPECT_EQ(7U, mouse_events_.size());
// Full desktop.
EXPECT_THAT(mouse_events_[0], EqualsMouseMoveEvent(70, 50));
EXPECT_THAT(mouse_events_[1], EqualsMouseMoveEvent(1000, 650));
// Second display.
EXPECT_THAT(mouse_events_[2], EqualsMouseMoveEvent(1005 + kDisplay1Width,
625 + kDisplay2YOffset));
EXPECT_THAT(mouse_events_[3],
EqualsMouseMoveEvent(kDisplay1Width + kDisplay2Width - 1,
700 + kDisplay2YOffset));
// First display.
EXPECT_THAT(mouse_events_[4], EqualsMouseMoveEvent(80, 60));
EXPECT_THAT(mouse_events_[5],
EqualsMouseMoveEvent(kDisplay1Width - 1, kDisplay1Height - 1));
// Full desktop.
EXPECT_THAT(mouse_events_[6],
EqualsMouseMoveEvent(kDisplay1Width + kDisplay2Width - 1,
kDisplay2Height + kDisplay2YOffset - 1));
}
TEST_F(ClientSessionTest, MultiMonMouseMove_SameSize) {
CreateClientSession();
ConnectClientSession();
SetupMultiDisplay_SameSize();
FakeInputInjector* input_injector =
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
.get();
input_injector->set_mouse_events(&mouse_events_);
// These mouse events are in global (full desktop) coordinates.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(70, 50));
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(1000, 550));
// Select second display: origin: 800,35 ; size: 800x600
MultiMon_SelectSecondDisplay();
// This mouse event is injected relative to the second display.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(705, 525));
// Events should clamp to the selected display.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(2000, 500));
// Select first display: origin: 0,0 ; size: 800x600
MultiMon_SelectFirstDisplay();
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(80, 60));
// Events should clamp to the selected display (800,600).
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(1000, 640));
// Select entire desktop again: origin: 0,0 ; size: 1600x635
MultiMon_SelectAllDisplays();
// Events should clamp to the entire desktop (800+800, 35+600).
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(2000, 1000));
client_session_->DisconnectSession(ErrorCode::OK, {}, FROM_HERE);
client_session_.reset();
EXPECT_EQ(7U, mouse_events_.size());
// Full desktop.
EXPECT_THAT(mouse_events_[0], EqualsMouseMoveEvent(70, 50));
EXPECT_THAT(mouse_events_[1], EqualsMouseMoveEvent(1000, 550));
// Second display.
EXPECT_THAT(mouse_events_[2], EqualsMouseMoveEvent(705 + kDisplay1Width,
525 + kDisplay2YOffset));
EXPECT_THAT(mouse_events_[3], EqualsMouseMoveEvent(2 * kDisplay1Width - 1,
500 + kDisplay2YOffset));
// First display.
EXPECT_THAT(mouse_events_[4], EqualsMouseMoveEvent(80, 60));
EXPECT_THAT(mouse_events_[5],
EqualsMouseMoveEvent(kDisplay1Width - 1, kDisplay1Height - 1));
// Full desktop.
EXPECT_THAT(mouse_events_[6],
EqualsMouseMoveEvent(2 * kDisplay1Width - 1,
kDisplay1Height + kDisplay2YOffset - 1));
}
TEST_F(ClientSessionTest, DisableInputs) {
CreateClientSession();
ConnectClientSession();
SetupSingleDisplay();
FakeInputInjector* input_injector =
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
.get();
input_injector->set_key_events(&key_events_);
input_injector->set_mouse_events(&mouse_events_);
input_injector->set_clipboard_events(&clipboard_events_);
// Inject test events that are expected to be injected.
connection_->clipboard_stub()->InjectClipboardEvent(MakeClipboardEvent("a"));
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(true, 1));
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(100, 101));
// Disable input.
client_session_->SetDisableInputs(true);
// These event shouldn't get though to the input injector.
connection_->clipboard_stub()->InjectClipboardEvent(MakeClipboardEvent("b"));
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(true, 2));
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(false, 2));
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(200, 201));
// Enable input again.
client_session_->SetDisableInputs(false);
connection_->clipboard_stub()->InjectClipboardEvent(MakeClipboardEvent("c"));
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(true, 3));
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(300, 301));
client_session_->DisconnectSession(ErrorCode::OK, {}, FROM_HERE);
client_session_.reset();
EXPECT_EQ(2U, mouse_events_.size());
EXPECT_THAT(mouse_events_[0], EqualsMouseMoveEvent(100, 101));
EXPECT_THAT(mouse_events_[1], EqualsMouseMoveEvent(300, 301));
EXPECT_EQ(4U, key_events_.size());
EXPECT_THAT(key_events_[0], EqualsKeyEvent(1, true));
EXPECT_THAT(key_events_[1], EqualsKeyEvent(1, false));
EXPECT_THAT(key_events_[2], EqualsKeyEvent(3, true));
EXPECT_THAT(key_events_[3], EqualsKeyEvent(3, false));
EXPECT_EQ(2U, clipboard_events_.size());
EXPECT_THAT(clipboard_events_[0],
EqualsClipboardEvent(kMimeTypeTextUtf8, "a"));
EXPECT_THAT(clipboard_events_[1],
EqualsClipboardEvent(kMimeTypeTextUtf8, "c"));
}
TEST_F(ClientSessionTest, InputAllowedFromRemotePolicy) {
SessionPolicies remote_policies;
remote_policies.allow_remote_input = true;
CreateClientSession();
ConnectClientSession(&remote_policies);
SetupSingleDisplay();
FakeInputInjector* input_injector =
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
.get();
input_injector->set_key_events(&key_events_);
input_injector->set_mouse_events(&mouse_events_);
input_injector->set_clipboard_events(&clipboard_events_);
connection_->clipboard_stub()->InjectClipboardEvent(MakeClipboardEvent("a"));
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(true, 1));
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(100, 101));
client_session_->DisconnectSession(ErrorCode::OK, {}, FROM_HERE);
client_session_.reset();
EXPECT_EQ(1U, mouse_events_.size());
EXPECT_THAT(mouse_events_[0], EqualsMouseMoveEvent(100, 101));
EXPECT_EQ(2U, key_events_.size());
EXPECT_THAT(key_events_[0], EqualsKeyEvent(1, true));
EXPECT_THAT(key_events_[1], EqualsKeyEvent(1, false));
EXPECT_EQ(1U, clipboard_events_.size());
EXPECT_THAT(clipboard_events_[0],
EqualsClipboardEvent(kMimeTypeTextUtf8, "a"));
}
TEST_F(ClientSessionTest, InputDisabledFromRemotePolicy) {
SessionPolicies remote_policies;
remote_policies.allow_remote_input = false;
CreateClientSession();
ConnectClientSession(&remote_policies);
SetupSingleDisplay();
FakeInputInjector* input_injector =
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
.get();
input_injector->set_key_events(&key_events_);
input_injector->set_mouse_events(&mouse_events_);
input_injector->set_clipboard_events(&clipboard_events_);
connection_->clipboard_stub()->InjectClipboardEvent(MakeClipboardEvent("a"));
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(true, 1));
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(100, 101));
client_session_->DisconnectSession(ErrorCode::OK, {}, FROM_HERE);
client_session_.reset();
EXPECT_EQ(0U, mouse_events_.size());
EXPECT_EQ(0U, key_events_.size());
EXPECT_EQ(0U, clipboard_events_.size());
}
TEST_F(ClientSessionTest, LocalInputTest) {
CreateClientSession();
ConnectClientSession();
SetupSingleDisplay();
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
->set_mouse_events(&mouse_events_);
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(100, 101));
#if !BUILDFLAG(IS_WIN) && !BUILDFLAG(IS_CHROMEOS)
// The OS echoes the injected event back.
client_session_->OnLocalPointerMoved(webrtc::DesktopVector(100, 101),
ui::EventType::kMouseMoved);
#endif // !BUILDFLAG(IS_WIN)
// This one should get throught as well.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(200, 201));
// Now this is a genuine local event.
client_session_->OnLocalPointerMoved(webrtc::DesktopVector(100, 101),
ui::EventType::kMouseMoved);
// This one should be blocked because of the previous local input event.
connection_->input_stub()->InjectMouseEvent(MakeMouseMoveEvent(300, 301));
// Verify that we've received correct set of mouse events.
ASSERT_EQ(2U, mouse_events_.size());
EXPECT_THAT(mouse_events_[0], EqualsMouseMoveEvent(100, 101));
EXPECT_THAT(mouse_events_[1], EqualsMouseMoveEvent(200, 201));
// Verify that we're still connected.
EXPECT_TRUE(connection_->is_connected());
// TODO(jamiewalch): Verify that remote inputs are re-enabled
// eventually (via dependency injection, not sleep!)
}
TEST_F(ClientSessionTest, DisconnectOnLocalInputTest) {
desktop_environment_options_.set_terminate_upon_input(true);
CreateClientSession();
ConnectClientSession();
SetupSingleDisplay();
client_session_->OnLocalPointerMoved(webrtc::DesktopVector(100, 101),
ui::EventType::kMouseMoved);
EXPECT_FALSE(connection_->is_connected());
}
TEST_F(ClientSessionTest, RestoreEventState) {
CreateClientSession();
ConnectClientSession();
SetupSingleDisplay();
FakeInputInjector* input_injector =
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
.get();
input_injector->set_key_events(&key_events_);
input_injector->set_mouse_events(&mouse_events_);
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(true, 1));
connection_->input_stub()->InjectKeyEvent(MakeKeyEvent(true, 2));
protocol::MouseEvent mousedown;
mousedown.set_button(protocol::MouseEvent::BUTTON_LEFT);
mousedown.set_button_down(true);
connection_->input_stub()->InjectMouseEvent(mousedown);
client_session_->DisconnectSession(ErrorCode::OK, {}, FROM_HERE);
client_session_.reset();
EXPECT_EQ(2U, mouse_events_.size());
EXPECT_THAT(mouse_events_[0],
EqualsMouseButtonEvent(protocol::MouseEvent::BUTTON_LEFT, true));
EXPECT_THAT(mouse_events_[1],
EqualsMouseButtonEvent(protocol::MouseEvent::BUTTON_LEFT, false));
EXPECT_EQ(4U, key_events_.size());
EXPECT_THAT(key_events_[0], EqualsKeyEvent(1, true));
EXPECT_THAT(key_events_[1], EqualsKeyEvent(2, true));
EXPECT_THAT(key_events_[2], EqualsKeyEvent(1, false));
EXPECT_THAT(key_events_[3], EqualsKeyEvent(2, false));
}
TEST_F(ClientSessionTest, ClampMouseEvents) {
CreateClientSession();
ConnectClientSession();
SetupSingleDisplay();
desktop_environment_factory_->last_desktop_environment()
->last_input_injector()
->set_mouse_events(&mouse_events_);
std::array<int, 3> input_x = {-999, 100, 999};
std::array<int, 3> expected_x = {
0,
100,
protocol::FakeDesktopCapturer::kWidth - 1,
};
std::array<int, 3> input_y = {-999, 50, 999};
std::array<int, 3> expected_y = {
0,
50,
protocol::FakeDesktopCapturer::kHeight - 1,
};
protocol::MouseEvent expected_event;
for (int j = 0; j < 3; j++) {
for (int i = 0; i < 3; i++) {
mouse_events_.clear();
connection_->input_stub()->InjectMouseEvent(
MakeMouseMoveEvent(input_x[i], input_y[j]));
EXPECT_EQ(1U, mouse_events_.size());
EXPECT_THAT(mouse_events_[0],
EqualsMouseMoveEvent(expected_x[i], expected_y[j]));
}
}
}
// Verifies that clients can have extensions registered, resulting in the
// correct capabilities being reported, and messages delivered correctly.
// The extension system is tested more extensively in the
// HostExtensionSessionManager unit-tests.
TEST_F(ClientSessionTest, Extensions) {
// Configure fake extensions for testing.
FakeExtension extension1("ext1", "cap1");
extensions_.push_back(&extension1);
FakeExtension extension2("ext2", "");
extensions_.push_back(&extension2);
FakeExtension extension3("ext3", "cap3");
extensions_.push_back(&extension3);
// Verify that the ClientSession reports the correct capabilities.
EXPECT_CALL(client_stub_, SetCapabilities(IncludesCapabilities("cap1 cap3")));
CreateClientSession();
ConnectClientSession();
testing::Mock::VerifyAndClearExpectations(&client_stub_);
// Mimic the client reporting an overlapping set of capabilities.
protocol::Capabilities capabilities_message;
capabilities_message.set_capabilities("cap1 cap4 default");
client_session_->SetCapabilities(capabilities_message);
// Verify that the correct extension messages are delivered, and dropped.
protocol::ExtensionMessage message1;
message1.set_type("ext1");
message1.set_data("data");
client_session_->DeliverClientMessage(message1);
protocol::ExtensionMessage message3;
message3.set_type("ext3");
message3.set_data("data");
client_session_->DeliverClientMessage(message3);
protocol::ExtensionMessage message4;
message4.set_type("ext4");
message4.set_data("data");
client_session_->DeliverClientMessage(message4);
base::RunLoop().RunUntilIdle();
// ext1 was instantiated and sent a message, and did not wrap anything.
EXPECT_TRUE(extension1.was_instantiated());
EXPECT_TRUE(extension1.has_handled_message());
// ext2 was instantiated but not sent a message, and wrapped video encoder.
EXPECT_TRUE(extension2.was_instantiated());
EXPECT_FALSE(extension2.has_handled_message());
// ext3 was sent a message but not instantiated.
EXPECT_FALSE(extension3.was_instantiated());
// Drop references to locals before they go out of scope.
extensions_.clear();
}
TEST_F(ClientSessionTest, DataChannelCallbackIsCalled) {
bool callback_called = false;
CreateClientSession();
client_session_->RegisterCreateHandlerCallbackForTesting(
kTestDataChannelCallbackName,
base::BindRepeating([](bool* callback_was_called, const std::string& name,
std::unique_ptr<protocol::MessagePipe> pipe)
-> void { *callback_was_called = true; },
&callback_called));
ConnectClientSession();
std::unique_ptr<protocol::MessagePipe> pipe =
base::WrapUnique(new protocol::FakeMessagePipe(false));
client_session_->OnIncomingDataChannel(kTestDataChannelCallbackName,
std::move(pipe));
ASSERT_TRUE(callback_called);
}
TEST_F(ClientSessionTest, ForwardHostSessionOptions1) {
auto session = std::make_unique<protocol::FakeSession>();
auto configuration = std::make_unique<jingle_xmpp::XmlElement>(
jingle_xmpp::QName(kChromotingXmlNamespace, "host-configuration"));
configuration->SetBodyText("Detect-Updated-Region:true");
session->SetAttachment(0, std::move(configuration));
CreateClientSession(std::move(session));
ConnectClientSession();
ASSERT_TRUE(desktop_environment_factory_->last_desktop_environment()
->options()
.desktop_capture_options()
->detect_updated_region());
}
TEST_F(ClientSessionTest, ForwardHostSessionOptions2) {
auto session = std::make_unique<protocol::FakeSession>();
auto configuration = std::make_unique<jingle_xmpp::XmlElement>(
jingle_xmpp::QName(kChromotingXmlNamespace, "host-configuration"));
configuration->SetBodyText("Detect-Updated-Region:false");
session->SetAttachment(0, std::move(configuration));
CreateClientSession(std::move(session));
ConnectClientSession();
ASSERT_FALSE(desktop_environment_factory_->last_desktop_environment()
->options()
.desktop_capture_options()
->detect_updated_region());
}
TEST_F(ClientSessionTest, ActiveDisplayMessageSent) {
EXPECT_CALL(client_stub_, SetActiveDisplay(ScreenIdMatches(kDisplay1Id)));
// The ActiveDisplayMonitor only gets created after negotiating this
// capability with the client.
desktop_environment_factory_->set_capabilities(
protocol::kMultiStreamCapability);
CreateClientSession();
ConnectClientSession();
protocol::Capabilities client_capabilities;
client_capabilities.set_capabilities(protocol::kMultiStreamCapability);
client_session_->SetCapabilities(client_capabilities);
auto monitor = desktop_environment_factory_->last_desktop_environment()
->last_active_display_monitor();
ASSERT_TRUE(monitor);
monitor->SetActiveDisplay(static_cast<webrtc::ScreenId>(kDisplay1Id));
}
// Display selection behaves quite differently if capturing of the full desktop
// is enabled or not. To simplify things these tests only handle the ChromeOS
// situation, where full desktop capturing is disabled.
#if BUILDFLAG(IS_CHROMEOS)
TEST_F(ClientSessionTest, ShouldSelectFirstDesktopByDefault) {
CreateClientSession();
ConnectClientSession();
SetupMultiDisplay();
EXPECT_THAT(GetSelectedSourceDisplayId(), Eq(kDisplay1Id));
}
TEST_F(ClientSessionTest,
ShouldChangeSelectedSourceDisplayWhenSwitchingDisplay) {
CreateClientSession();
ConnectClientSession();
SetupMultiDisplay();
MultiMon_SelectSecondDisplay();
EXPECT_THAT(GetSelectedSourceDisplayId(), Eq(kDisplay2Id));
MultiMon_SelectFirstDisplay();
EXPECT_THAT(GetSelectedSourceDisplayId(), Eq(kDisplay1Id));
}
TEST_F(ClientSessionTest,
ShouldFallBackToPrimaryDisplayWhenSwitchingToInvalidDisplay) {
CreateClientSession();
ConnectClientSession();
SetupMultiDisplay();
MultiMon_SelectDisplay("Not an integer");
EXPECT_THAT(GetSelectedSourceDisplayId(), Eq(kDisplay1Id));
MultiMon_SelectDisplay("123456"); // There is no display with this id.
EXPECT_THAT(GetSelectedSourceDisplayId(), Eq(kDisplay1Id));
// Full desktop capturing is not supported on ChromeOS.
MultiMon_SelectDisplay("all");
EXPECT_THAT(GetSelectedSourceDisplayId(), Eq(kDisplay1Id));
}
TEST_F(ClientSessionTest,
ShouldFallBackToPrimaryDisplayWhenSelectedDisplayIsDisconnected) {
CreateClientSession();
ConnectClientSession();
SetupMultiDisplay();
MultiMon_SelectSecondDisplay();
SetupSingleDisplay();
EXPECT_THAT(GetSelectedSourceDisplayId(), Eq(kDisplay1Id));
}
#endif // if BUILDFLAG(IS_CHROMEOS)
} // namespace remoting
|