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 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
|
/*
* Copyright (C) 2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "IPCTestUtilities.h"
#include "Test.h"
#include <wtf/threads/BinarySemaphore.h>
namespace TestWebKitAPI {
static constexpr Seconds kDefaultWaitForTimeout = 1_s;
static constexpr Seconds kWaitForAbsenceTimeout = 300_ms;
struct MockTestMessageWithConnection {
static constexpr bool isSync = false;
static constexpr bool canDispatchOutOfOrder = false;
static constexpr bool replyCanDispatchOutOfOrder = false;
static constexpr IPC::MessageName name() { return static_cast<IPC::MessageName>(123); }
auto&& arguments() { return WTFMove(m_arguments); }
MockTestMessageWithConnection(IPC::Connection::Handle&& handle)
: m_arguments(WTFMove(handle))
{
}
std::tuple<IPC::Connection::Handle&&> m_arguments;
};
struct MockTestSyncMessage {
static constexpr bool isSync = true;
static constexpr bool canDispatchOutOfOrder = false;
static constexpr bool replyCanDispatchOutOfOrder = false;
static constexpr IPC::MessageName name() { return IPC::MessageName::IPCTester_SyncPing; }
using ReplyArguments = std::tuple<>;
auto&& arguments()
{
return WTFMove(m_arguments);
}
MockTestSyncMessage()
{
}
std::tuple<> m_arguments;
};
struct MockTestSyncMessageWithDataReply {
static constexpr bool isSync = true;
static constexpr bool canDispatchOutOfOrder = false;
static constexpr bool replyCanDispatchOutOfOrder = false;
static constexpr IPC::MessageName name() { return IPC::MessageName::IPCTester_SyncPing; } // Needs to be sync.
using ReplyArguments = std::tuple<std::span<const uint8_t>>;
auto&& arguments()
{
return WTFMove(m_arguments);
}
MockTestSyncMessageWithDataReply()
{
}
std::tuple<> m_arguments;
};
namespace {
class SimpleConnectionTest : public testing::Test {
public:
SimpleConnectionTest()
: m_mockServerClient(MockConnectionClient::create())
, m_mockClientClient(MockConnectionClient::create())
{
}
void SetUp() override
{
WTF::initializeMainThread();
}
protected:
Ref<MockConnectionClient> m_mockServerClient;
Ref<MockConnectionClient> m_mockClientClient;
};
}
TEST_F(SimpleConnectionTest, CreateServerConnection)
{
auto identifiers = IPC::Connection::createConnectionIdentifierPair();
ASSERT_NE(identifiers, std::nullopt);
Ref<IPC::Connection> connection = IPC::Connection::createServerConnection(WTFMove(identifiers->server));
connection->invalidate();
}
TEST_F(SimpleConnectionTest, CreateClientConnection)
{
auto identifiers = IPC::Connection::createConnectionIdentifierPair();
ASSERT_NE(identifiers, std::nullopt);
Ref<IPC::Connection> connection = IPC::Connection::createClientConnection(IPC::Connection::Identifier { WTFMove(identifiers->client) });
connection->invalidate();
}
TEST_F(SimpleConnectionTest, ConnectLocalConnection)
{
auto identifiers = IPC::Connection::createConnectionIdentifierPair();
ASSERT_NE(identifiers, std::nullopt);
Ref<IPC::Connection> serverConnection = IPC::Connection::createServerConnection(WTFMove(identifiers->server));
Ref<IPC::Connection> clientConnection = IPC::Connection::createClientConnection(IPC::Connection::Identifier { WTFMove(identifiers->client) });
serverConnection->open(m_mockServerClient);
clientConnection->open(m_mockClientClient);
serverConnection->invalidate();
clientConnection->invalidate();
}
TEST_F(SimpleConnectionTest, ClearOutgoingMessages)
{
// Create a connection, but leave the client
// handle pending.
auto firstIdentifiers = IPC::Connection::createConnectionIdentifierPair();
ASSERT_NE(firstIdentifiers, std::nullopt);
Ref<IPC::Connection> firstServerConnection = IPC::Connection::createServerConnection(WTFMove(firstIdentifiers->server));
firstServerConnection->open(m_mockServerClient);
// Create a second connection, and send the client
// handle in a message over the first connection (such
// that it will be stored as a pending message).
auto secondIdentifiers = IPC::Connection::createConnectionIdentifierPair();
ASSERT_NE(secondIdentifiers, std::nullopt);
Ref<IPC::Connection> secondServerConnection = IPC::Connection::createServerConnection(WTFMove(secondIdentifiers->server));
Ref mockSecondServerClient = MockConnectionClient::create();
secondServerConnection->open(mockSecondServerClient);
firstServerConnection->send(MockTestMessageWithConnection { WTFMove(secondIdentifiers->client) }, 0);
// Invalidate the first connection's client handle,
// which should clear pending messages and also invalidate
// the second connection.
firstIdentifiers->client = IPC::Connection::Handle();
// Try a sync send over the second connection, which should
// fail immediately if the client handle has been released.
secondServerConnection->sendSync(MockTestSyncMessage(), 0, IPC::Timeout::infinity(), IPC::SendSyncOption::UseFullySynchronousModeForTesting);
firstServerConnection->invalidate();
secondServerConnection->invalidate();
}
class ConnectionTest : public testing::Test, protected ConnectionTestBase {
public:
void SetUp() override
{
setupBase();
}
void TearDown() override
{
teardownBase();
}
auto openServer() { return openA(); }
auto openClient() { return openB(); }
auto* server() { return a(); }
auto* client() { return b(); }
auto& serverClient() { return aClient(); }
auto& clientClient() { return bClient(); }
void deleteServer() { deleteA(); }
void deleteClient() { deleteB(); }
};
// Explicit version of AInvalidateDeliversBDidClose that was flaky on Cocoa in scenario to
// 1. Both connections open
// 2. Client sends the initialization message with the mach port to use as server's send port
// 3. Client is cancelled and the mach port destroyed
// 4. Server receives the initialization message
TEST_F(ConnectionTest, ClientInvalidateBeforeServerHandlesInitializationDeliversDidClose)
{
ASSERT_TRUE(openServer());
// Simulation for scheduling for step 4: insert a wait after receive source has been
// resumed.
BinarySemaphore semaphore;
bool captureGuard = false;
server()->dispatchOnReceiveQueueForTesting([&semaphore, &captureGuard] {
semaphore.wait();
captureGuard = true;
});
ASSERT_TRUE(openClient());
Util::runFor(0.2_s); // Simulation for step 2. Give client time to send the initialization message.
client()->invalidate(); // Step 3.
semaphore.signal(); // Step 4.
ASSERT_FALSE(serverClient().gotDidClose());
// Test for the contract that did not work: invalidated on client causes didClose on server.
EXPECT_TRUE(serverClient().waitForDidClose(kDefaultWaitForTimeout));
// End of test. Ensure clean up for buggy cases.
EXPECT_FALSE(clientClient().gotDidClose());
Util::run(&captureGuard);
}
TEST_P(ConnectionTestABBA, SendLocalMessage)
{
ASSERT_TRUE(openBoth());
for (uint64_t i = 0u; i < 55u; ++i)
a()->send(MockTestMessage1 { }, i);
for (uint64_t i = 100u; i < 160u; ++i)
b()->send(MockTestMessage1 { }, i);
for (uint64_t i = 0u; i < 55u; ++i) {
auto message = bClient().waitForMessage(kDefaultWaitForTimeout);
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, i);
}
for (uint64_t i = 100u; i < 160u; ++i) {
auto message = aClient().waitForMessage(kDefaultWaitForTimeout);
EXPECT_EQ(message.messageName, MockTestMessage1::name()) << " i:" << i;
EXPECT_EQ(message.destinationID, i) << " i:" << i;
}
}
TEST_P(ConnectionTestABBA, AInvalidateDeliversBDidClose)
{
ASSERT_TRUE(openBoth());
a()->invalidate();
ASSERT_FALSE(bClient().gotDidClose());
EXPECT_TRUE(bClient().waitForDidClose(kDefaultWaitForTimeout));
EXPECT_FALSE(aClient().gotDidClose());
}
TEST_P(ConnectionTestABBA, AAndBInvalidateDoesNotDeliverDidClose)
{
ASSERT_TRUE(openBoth());
a()->invalidate();
b()->invalidate();
EXPECT_FALSE(aClient().waitForDidClose(kWaitForAbsenceTimeout));
EXPECT_FALSE(bClient().waitForDidClose(kWaitForAbsenceTimeout));
}
TEST_P(ConnectionTestABBA, UnopenedAAndInvalidateDoesNotDeliverBDidClose)
{
ASSERT_TRUE(openB());
a()->invalidate();
deleteA();
EXPECT_FALSE(bClient().waitForDidClose(kWaitForAbsenceTimeout));
}
TEST_P(ConnectionTestABBA, IncomingMessageThrottlingWorks)
{
const size_t testedCount = 2300;
a()->enableIncomingMessagesThrottling();
ASSERT_TRUE(openBoth());
size_t otherRunLoopTasksRun = 0u;
for (uint64_t i = 0u; i < testedCount; ++i)
b()->send(MockTestMessage1 { }, i);
while (a()->pendingMessageCountForTesting() < testedCount)
sleep(0.1_s);
Vector<MessageInfo> messages;
std::array<size_t, 18> messageCounts { 600, 300, 200, 150, 120, 100, 85, 75, 66, 60, 60, 66, 75, 85, 100, 120, 37, 1 };
for (size_t i = 0; i < messageCounts.size(); ++i) {
SCOPED_TRACE(i);
RunLoop::protectedCurrent()->dispatch([&otherRunLoopTasksRun] {
otherRunLoopTasksRun++;
});
Util::spinRunLoop();
EXPECT_EQ(otherRunLoopTasksRun, i + 1u);
auto messages1 = aClient().takeMessages();
EXPECT_EQ(messageCounts[i], messages1.size());
messages.appendVector(WTFMove(messages1));
}
EXPECT_EQ(testedCount, messages.size());
for (uint64_t i = 0u; i < messages.size(); ++i) {
auto& message = messages[i];
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, i);
}
}
// Tests the case where a throttled connection dispatches a message that
// spins the run loop in the message handler. A naive throttled connection
// would only schedule one work dispatch function, which would then fail
// in this scenario. Thus test the non-naive implementation where the throttled
// connection schedules another dispatch function that ensures that nested
// runloops will dispatch the throttled connection messages.
TEST_P(ConnectionTestABBA, IncomingMessageThrottlingNestedRunLoopDispatches)
{
const size_t testedCount = 2300;
a()->enableIncomingMessagesThrottling();
ASSERT_TRUE(openBoth());
size_t otherRunLoopTasksRun = 0u;
for (uint64_t i = 0u; i < testedCount; ++i)
b()->send(MockTestMessage1 { }, i);
while (a()->pendingMessageCountForTesting() < testedCount)
sleep(0.1_s);
// Two messages invoke nested run loop. The handler skips total 4 messages for the
// proofs of logic that the test was ran.
bool isProcessing = false;
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto destinationID = decoder.destinationID();
if (destinationID == 888 || destinationID == 1299) {
isProcessing = true;
Util::spinRunLoop();
isProcessing = false;
return true; // Skiping the message is the proof that the message was processed.
}
if (destinationID == 889 || destinationID == 1300) {
EXPECT_TRUE(isProcessing); // Passing the EXPECT is the proof that we ran the message in a nested event loop.
return true; // Skipping the message is the proof that above EXPECT was ran.
}
return false;
});
Vector<MessageInfo> messages;
std::array<size_t, 16> messageCounts { 600, 498, 150, 218, 85, 75, 66, 60, 60, 66, 75, 85, 100, 120, 37, 1 };
for (size_t i = 0; i < messageCounts.size(); ++i) {
SCOPED_TRACE(i);
RunLoop::protectedCurrent()->dispatch([&otherRunLoopTasksRun] {
otherRunLoopTasksRun++;
});
Util::spinRunLoop();
EXPECT_EQ(otherRunLoopTasksRun, i + 1u);
auto messages1 = aClient().takeMessages();
EXPECT_EQ(messageCounts[i], messages1.size());
messages.appendVector(WTFMove(messages1));
}
EXPECT_EQ(testedCount - 4, messages.size());
for (uint64_t i = 0u, j = 0u; i < messages.size(); ++i, ++j) {
if (j == 888 || j == 1299)
j += 2;
auto& message = messages[i];
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, j);
}
}
// Sends a connection that is already closed (invalidated). We still expect to receive the connection
// and receive didClose on the connection.
TEST_P(ConnectionTestABBA, ReceiveAlreadyInvalidatedClientNoAssert)
{
ASSERT_TRUE(openBoth());
constexpr size_t iterations = 800;
HashSet<uint64_t> done;
struct {
RefPtr<IPC::Connection> clientConnection;
Ref<MockConnectionClient> mockClientClient { MockConnectionClient::create() };
} connections[iterations];
bClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto i = decoder.destinationID();
auto handle = decoder.decode<IPC::Connection::Handle>();
if (!handle)
return false;
Ref<IPC::Connection> clientConnection = IPC::Connection::createClientConnection(IPC::Connection::Identifier { WTFMove(*handle) });
clientConnection->open(connections[i].mockClientClient);
connections[i].clientConnection = WTFMove(clientConnection);
// The connection starts as not closed in order for the system to deliver didClose().
EXPECT_FALSE(connections[i].mockClientClient->gotDidClose()) << i;
done.add(i);
return true;
});
for (uint64_t i = 1; i < iterations; ++i) {
auto identifiers = IPC::Connection::createConnectionIdentifierPair();
ASSERT_NE(identifiers, std::nullopt);
Ref<IPC::Connection> serverConnection = IPC::Connection::createServerConnection(WTFMove(identifiers->server));
Ref mockServerClient = MockConnectionClient::create();
serverConnection->open(mockServerClient);
a()->send(MockTestMessageWithConnection { WTFMove(identifiers->client) }, i);
serverConnection->invalidate();
}
while (done.size() < iterations - 1)
RunLoop::current().cycle();
for (uint64_t i = 1; i < iterations; ++i) {
auto& connection = connections[i];
EXPECT_TRUE(connection.mockClientClient->gotDidClose() || connection.mockClientClient->waitForDidClose(kDefaultWaitForTimeout)) << i;
connection.clientConnection->invalidate();
}
}
// DISABLED: currently cannot test that wait on unopened connection causes InvalidConnection,
// since that will crash. The semantics are that isValid() == true for unopened connection,
// which doesn't make much sense.
TEST_P(ConnectionTestABBA, DISABLED_UnopenedWaitForAndDispatchImmediatelyIsInvalidConnection)
{
IPC::Error error = a()->waitForAndDispatchImmediately<MockTestMessage1>(0, kWaitForAbsenceTimeout);
EXPECT_EQ(IPC::Error::InvalidConnection, error);
}
TEST_P(ConnectionTestABBA, InvalidatedWaitForAndDispatchImmediatelyIsInvalidConnection)
{
ASSERT_TRUE(openA());
a()->invalidate();
IPC::Error error = a()->waitForAndDispatchImmediately<MockTestMessage1>(0, kWaitForAbsenceTimeout);
EXPECT_EQ(IPC::Error::InvalidConnection, error);
}
TEST_P(ConnectionTestABBA, UnsentWaitForAndDispatchImmediatelyIsTimeout)
{
ASSERT_TRUE(openA());
IPC::Error error = a()->waitForAndDispatchImmediately<MockTestMessage1>(0, kWaitForAbsenceTimeout);
EXPECT_EQ(IPC::Error::Timeout, error);
}
template<typename C>
static void dispatchSync(RunLoop& runLoop, C&& function)
{
BinarySemaphore semaphore;
runLoop.dispatch([&] () mutable {
function();
semaphore.signal();
});
semaphore.wait();
}
template<typename C>
static void dispatchAndWait(RunLoop& runLoop, C&& function)
{
std::atomic<bool> done = false;
runLoop.dispatch([&] () mutable {
function();
done = true;
});
while (!done)
RunLoop::current().cycle();
}
class ConnectionRunLoopTest : public ConnectionTestABBA {
public:
void TearDown() override
{
ConnectionTestABBA::TearDown();
// Remember to call localReferenceBarrier() in test scope.
// Otherwise run loops might be executing code that uses variables
// that went out of scope.
EXPECT_EQ(m_runLoops.size(), 0u);
}
Ref<RunLoop> createRunLoop(ASCIILiteral name)
{
auto runLoop = RunLoop::create(name, ThreadType::Unknown);
m_runLoops.append(runLoop);
return runLoop;
}
void localReferenceBarrier()
{
// Since we need to send sync to create a barrier to run loops,
// we might as well destroy the run loops in this function.
Vector<Ref<Thread>> threadsToWait;
// FIXME: Cannot wait for RunLoop to really exit.
for (auto& runLoop : std::exchange(m_runLoops, { })) {
dispatchSync(runLoop, [&] {
threadsToWait.append(Thread::current());
RunLoop::current().stop();
});
}
while (true) {
sleep(0.1_s);
Locker lock { Thread::allThreadsLock() };
for (auto& thread : threadsToWait) {
if (Thread::allThreads().contains(thread.ptr()))
continue;
}
break;
}
}
protected:
Vector<Ref<RunLoop>> m_runLoops;
};
#define LOCAL_STRINGIFY(x) #x
#define RUN_LOOP_NAME "RunLoop at ConnectionTests.cpp:" LOCAL_STRINGIFY(__LINE__) ""_s
TEST_P(ConnectionRunLoopTest, RunLoopOpen)
{
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
BinarySemaphore semaphore;
runLoop->dispatch([&] {
ASSERT_TRUE(openB());
bClient().waitForDidClose(kDefaultWaitForTimeout);
semaphore.signal();
});
a()->invalidate();
semaphore.wait();
localReferenceBarrier();
}
TEST_P(ConnectionRunLoopTest, RunLoopInvalidate)
{
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
runLoop->dispatch([&] {
ASSERT_TRUE(openB());
b()->invalidate();
});
aClient().waitForDidClose(kDefaultWaitForTimeout);
localReferenceBarrier();
}
TEST_P(ConnectionRunLoopTest, RunLoopSend)
{
ASSERT_TRUE(openA());
for (uint64_t i = 0u; i < 55u; ++i)
a()->send(MockTestMessage1 { }, i);
auto runLoop = createRunLoop(RUN_LOOP_NAME);
BinarySemaphore semaphore;
runLoop->dispatch([&] {
ASSERT_TRUE(openB());
for (uint64_t i = 100u; i < 160u; ++i)
b()->send(MockTestMessage1 { }, i);
for (uint64_t i = 0u; i < 55u; ++i) {
auto message = bClient().waitForMessage(kDefaultWaitForTimeout);
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, i);
}
auto flushResult = b()->flushSentMessages(kDefaultWaitForTimeout);
EXPECT_EQ(flushResult, IPC::Error::NoError);
b()->invalidate();
});
for (uint64_t i = 100u; i < 160u; ++i) {
auto message = aClient().waitForMessage(kDefaultWaitForTimeout);
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, i);
}
semaphore.signal();
localReferenceBarrier();
}
TEST_P(ConnectionRunLoopTest, RunLoopSendAsync)
{
ASSERT_TRUE(openA());
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
a()->sendSyncReply(WTFMove(encoder));
return true;
});
HashSet<uint64_t> replies;
auto runLoop = createRunLoop(RUN_LOOP_NAME);
dispatchAndWait(runLoop, [&] {
ASSERT_TRUE(openB());
for (uint64_t i = 100u; i < 160u; ++i) {
b()->sendWithAsyncReply(MockTestMessageWithAsyncReply1 { }, [&, j = i] (uint64_t value) {
if (!value)
WTFLogAlways("GOT: %llu", j);
EXPECT_GE(value, 100u);
replies.add(value);
}, i);
}
while (replies.size() < 60u)
RunLoop::current().cycle();
b()->invalidate();
});
for (uint64_t i = 100u; i < 160u; ++i)
EXPECT_TRUE(replies.contains(i));
localReferenceBarrier();
}
class AutoWorkQueue {
public:
class WorkQueueWithShutdown : public WorkQueue {
public:
static Ref<WorkQueueWithShutdown> create(ASCIILiteral name) { return adoptRef(*new WorkQueueWithShutdown(name)); }
void beginShutdown()
{
dispatch([this, strong = Ref { *this }] {
m_shutdown = true;
m_semaphore.signal();
});
}
void waitUntilShutdown()
{
while (!m_shutdown)
m_semaphore.wait();
}
private:
WorkQueueWithShutdown(ASCIILiteral name)
: WorkQueue(name, QOS::Default)
{
}
std::atomic<bool> m_shutdown { false };
BinarySemaphore m_semaphore;
};
AutoWorkQueue()
: m_workQueue(WorkQueueWithShutdown::create("com.apple.WebKit.Test.simple"_s))
{
}
Ref<WorkQueueWithShutdown> queue() { return m_workQueue; }
~AutoWorkQueue()
{
m_workQueue->waitUntilShutdown();
}
private:
Ref<WorkQueueWithShutdown> m_workQueue;
};
TEST_P(ConnectionRunLoopTest, RunLoopSendAsyncOnTarget)
{
HashSet<uint64_t> replies;
{
AutoWorkQueue awq;
ASSERT_TRUE(openA());
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
a()->sendSyncReply(WTFMove(encoder));
return true;
});
auto runLoop = createRunLoop(RUN_LOOP_NAME);
dispatchAndWait(runLoop, [&] {
ASSERT_TRUE(openB());
for (uint64_t i = 100u; i < 160u; ++i) {
b()->sendWithAsyncReplyOnDispatcher(MockTestMessageWithAsyncReply1 { }, awq.queue(), [&, j = i, queue = awq.queue()] (uint64_t value) {
assertIsCurrent(queue);
if (!value)
WTFLogAlways("GOT: %llu", j);
EXPECT_GE(value, 100u);
replies.add(value);
}, i);
}
while (replies.size() < 60u)
RunLoop::current().cycle();
b()->invalidate();
});
awq.queue()->beginShutdown();
}
for (uint64_t i = 100u; i < 160u; ++i)
EXPECT_TRUE(replies.contains(i));
localReferenceBarrier();
}
TEST_P(ConnectionRunLoopTest, RunLoopSendWithPromisedReply)
{
ASSERT_TRUE(openA());
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
a()->sendSyncReply(WTFMove(encoder));
return true;
});
HashSet<uint64_t> replies;
auto runLoop = createRunLoop(RUN_LOOP_NAME);
dispatchAndWait(runLoop, [&] {
ASSERT_TRUE(openB());
for (uint64_t i = 100u; i < 160u; ++i) {
b()->sendWithPromisedReply(MockTestMessageWithAsyncReply1 { }, i)->then(runLoop,
[&, j = i] (uint64_t value) {
if (!value)
WTFLogAlways("GOT: %llu", j);
EXPECT_GE(value, 100u);
replies.add(value);
},
[] {
// There should never be a connection failure in this case.
EXPECT_TRUE(false);
});
}
while (replies.size() < 60u)
RunLoop::current().cycle();
b()->invalidate();
});
for (uint64_t i = 100u; i < 160u; ++i)
EXPECT_TRUE(replies.contains(i));
localReferenceBarrier();
}
struct PromiseConverter {
static auto convertError(IPC::Error)
{
return makeUnexpected(String { "2"_s });
}
};
TEST_P(ConnectionRunLoopTest, SendWithConvertedPromisedReply)
{
ASSERT_TRUE(openA());
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
a()->sendSyncReply(WTFMove(encoder));
return true;
});
std::atomic<bool> isFinished = false;
auto runLoop = createRunLoop(RUN_LOOP_NAME);
dispatchAndWait(runLoop, [&] {
ASSERT_TRUE(openB());
b()->sendWithPromisedReply<PromiseConverter>(MockTestMessageWithAsyncReply1 { }, 1)->then(runLoop, [&] (uint64_t value) {
EXPECT_EQ(value, 1u);
isFinished = true;
}, [&] (String&& error) {
EXPECT_EQ(error, "2"_s);
isFinished = true;
});
while (!isFinished)
RunLoop::current().cycle();
b()->invalidate();
});
localReferenceBarrier();
}
TEST_P(ConnectionRunLoopTest, RunLoopSendWithPromisedReplyOnMixAndMatchDispatcher)
{
HashSet<uint64_t> replies;
{
AutoWorkQueue awq;
ASSERT_TRUE(openA());
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
a()->sendSyncReply(WTFMove(encoder));
return true;
});
auto runLoop = createRunLoop(RUN_LOOP_NAME);
dispatchAndWait(runLoop, [&] {
ASSERT_TRUE(openB());
for (uint64_t i = 100u; i < 160u; ++i) {
b()->sendWithPromisedReply(MockTestMessageWithAsyncReply1 { }, i)->whenSettled(runLoop, [&, j = i] (auto&& result) {
EXPECT_TRUE(result);
auto value = *result;
if (!value)
WTFLogAlways("GOT: %llu", j);
EXPECT_GE(value, 100u);
replies.add(value);
});
}
while (replies.size() < 60u)
RunLoop::current().cycle();
b()->invalidate();
});
awq.queue()->beginShutdown();
}
for (uint64_t i = 100u; i < 160u; ++i)
EXPECT_TRUE(replies.contains(i));
localReferenceBarrier();
}
// Tests that all sent messages with async replies are received, even if sender invalidates
// without synchronizing with the receiver. The async reply callbacks are always run, either
// with the reply or the cancel value and always on the provided dispatcher
TEST_P(ConnectionRunLoopTest, SendAsyncAndInvalidateOnDispatcher)
{
HashSet<uint64_t> messages;
HashSet<uint64_t> replies;
constexpr uint64_t messageCount = 1536u;
{
AutoWorkQueue awq;
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
BinarySemaphore semaphore;
runLoop->dispatch([&] {
bClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
b()->sendSyncReply(WTFMove(encoder));
messages.add(decoder.destinationID());
return true;
});
ASSERT_TRUE(openB());
while (messages.size() < messageCount - 1)
RunLoop::current().cycle();
semaphore.signal();
});
for (uint64_t i = 1u; i < messageCount; ++i) {
a()->sendWithAsyncReplyOnDispatcher(MockTestMessageWithAsyncReply1 { }, awq.queue(), [&, j = i] (uint64_t) {
assertIsCurrent(awq.queue());
// The reply value might be the reply value (destinationID) or zero in case the
// reply was resolved as invalid. Either of these are expected valid results.
// Use the `j` to prove that reply callback was run as expected.
replies.add(j);
}, i);
}
auto flushResult = a()->flushSentMessages(kDefaultWaitForTimeout);
EXPECT_EQ(flushResult, IPC::Error::NoError);
a()->invalidate();
semaphore.wait();
// Sending a message on an invalidated Connection should still deliver the message on the dispatcher.
a()->sendWithAsyncReplyOnDispatcher(MockTestMessageWithAsyncReply1 { }, awq.queue(), [queue = awq.queue()] (uint64_t) {
assertIsCurrent(queue);
queue->beginShutdown();
}, 0);
}
for (uint64_t i = 1u; i < messageCount; ++i) {
EXPECT_TRUE(replies.contains(i)) << i;
EXPECT_TRUE(messages.contains(i)) << i;
}
localReferenceBarrier();
}
// Tests that all sent messages are received, even if sender invalidates
// without synchronizing with the receiver.
TEST_P(ConnectionRunLoopTest, SendAndInvalidate)
{
constexpr uint64_t messageCount = 1777;
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
BinarySemaphore semaphore;
runLoop->dispatch([&] {
ASSERT_TRUE(openB());
for (uint64_t i = 1u; i < messageCount; ++i) {
auto message = bClient().waitForMessage(kDefaultWaitForTimeout);
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, i);
}
semaphore.signal();
});
for (uint64_t i = 1u; i < messageCount; ++i)
a()->send(MockTestMessage1 { }, i);
auto flushResult = a()->flushSentMessages(kDefaultWaitForTimeout);
EXPECT_EQ(flushResult, IPC::Error::NoError);
a()->invalidate();
semaphore.wait();
localReferenceBarrier();
}
// Tests that all sent messages with async replies are received, even if sender invalidates
// without synchronizing with the receiver. The async reply callbacks are always run, either
// with the reply or the cancel value.
TEST_P(ConnectionRunLoopTest, SendAsyncAndInvalidate)
{
constexpr uint64_t messageCount = 1536u;
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
HashSet<uint64_t> messages;
HashSet<uint64_t> replies;
BinarySemaphore semaphore;
runLoop->dispatch([&] {
bClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
b()->sendSyncReply(WTFMove(encoder));
messages.add(decoder.destinationID());
return true;
});
ASSERT_TRUE(openB());
while (messages.size() < messageCount - 1)
RunLoop::current().cycle();
semaphore.signal();
});
for (uint64_t i = 1u; i < messageCount; ++i) {
a()->sendWithAsyncReply(MockTestMessageWithAsyncReply1 { }, [&, j = i] (uint64_t) {
// The reply value might be the reply value (destinationID) or zero in case the
// reply was resolved as invalid. Either of these are expected valid results.
// Use the `j` to prove that reply callback was run as expected.
replies.add(j);
}, i);
}
auto flushResult = a()->flushSentMessages(kDefaultWaitForTimeout);
EXPECT_EQ(flushResult, IPC::Error::NoError);
a()->invalidate();
semaphore.wait();
for (uint64_t i = 1u; i < messageCount; ++i) {
EXPECT_TRUE(replies.contains(i)) << i;
EXPECT_TRUE(messages.contains(i)) << i;
}
localReferenceBarrier();
}
// Ensure that replies are received in the right order.
TEST_P(ConnectionRunLoopTest, RunLoopSendWithPromisedReplyOrder)
{
using Promise = MockTestMessageWithAsyncReply1::Promise;
ASSERT_TRUE(openA());
uint64_t replyID = 0;
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << replyID++;
a()->sendSyncReply(WTFMove(encoder));
return true;
});
Vector<uint64_t> replies;
constexpr size_t counter = 50;
replies.reserveInitialCapacity(counter);
auto runLoop = createRunLoop(RUN_LOOP_NAME);
dispatchAndWait(runLoop, [&] {
ASSERT_TRUE(openB());
for (uint64_t i = 0; i < counter; ++i) {
if (!(i % 2)) {
b()->sendWithPromisedReply(MockTestMessageWithAsyncReply1 { }, 100)->whenSettled(runLoop, [&, i] (Promise::Result result) {
EXPECT_TRUE(result.has_value());
EXPECT_EQ(result.value(), i);
replies.append(i);
});
} else {
b()->sendWithAsyncReply(MockTestMessageWithAsyncReply1 { }, [&, i] (uint64_t value) {
EXPECT_EQ(value, i);
replies.append(i);
}, 100);
}
}
while (replies.size() < counter)
RunLoop::current().cycle();
b()->invalidate();
});
for (uint64_t i = 0u; i < counter; ++i)
EXPECT_EQ(replies[i], i);
localReferenceBarrier();
}
// This API contract does not make sense. Not only that, but there is no good way currently
// to capture this in a thread-safe way (construct completion handler in a thread-safe way
// so that it would assert that it would execute in the run loop thread). This is disabled
// until the API contract is changed.
TEST_P(ConnectionRunLoopTest, DISABLED_RunLoopSendAsyncOnAnotherRunLoopDispatchesOnConnectionRunLoop)
{
ASSERT_TRUE(openA());
aClient().setAsyncMessageHandler([&] (IPC::Decoder& decoder) -> bool {
auto listenerID = decoder.decode<uint64_t>();
auto encoder = makeUniqueRef<IPC::Encoder>(MockTestMessageWithAsyncReply1::asyncMessageReplyName(), *listenerID);
encoder.get() << decoder.destinationID();
a()->sendSyncReply(WTFMove(encoder));
return true;
});
HashSet<uint64_t> replies;
auto runLoop = createRunLoop(RUN_LOOP_NAME);
dispatchSync(runLoop, [&] {
ASSERT_TRUE(openB());
});
BinarySemaphore semaphore;
auto otherRunLoop = createRunLoop(RUN_LOOP_NAME);
otherRunLoop->dispatch([&] {
for (uint64_t i = 100u; i < 160u; ++i) {
b()->sendWithAsyncReply(MockTestMessageWithAsyncReply1 { }, [&] (uint64_t value) {
EXPECT_GE(value, 100u);
// These should be dispatched on `runLoop` above, which does not make much sense.
replies.add(value);
}, i);
}
// Halt the runloop for a proof that the async replies are not processed on
// this run loop.
semaphore.wait();
});
dispatchAndWait(runLoop, [&] {
while (replies.size() < 60u)
RunLoop::current().cycle();
});
for (uint64_t i = 100u; i < 160u; ++i)
EXPECT_TRUE(replies.contains(i));
semaphore.signal();
localReferenceBarrier();
}
// This makes no sense:
// - async reply handlers are dispatched on the connection run loop
// - async reply handlers are dispatched as cancelled on connection run loop during invalidate
// - async reply handlers that are sent to already invalid connection are dispatched on main run loop
// We have to make the discrepancy as the Connection is not bound to any run loop if it is invalid, e.g.
// prior to open() and after invalidate().
// Previously Connection was bound only to main run loop. In that scenario also the invalid send could cancel the reply handler
// on main run loop, as that is guaranteed to exist. After Connection could be bound to an arbitrary run loop, we cannot
// cancel the reply handler on a run loop we do not know about.
// Will be fixed later. Likely this needs an API contract change, where async reply handlers are dispatched on the
// calling run loop.
TEST_P(ConnectionRunLoopTest, InvalidSendWithAsyncReplyDispatchesCancelHandlerOnMainThread)
{
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
uint64_t reply = 1u;
BinarySemaphore semaphore;
runLoop->dispatch([&] {
ASSERT_TRUE(openB());
b()->invalidate();
b()->sendWithAsyncReply(MockTestMessageWithAsyncReply1 { }, [&] (uint64_t value) {
reply = value;
}, 77);
// Halt the runloop for a proof that the async replies are not processed on
// this run loop.
semaphore.wait();
});
EXPECT_EQ(reply, 1u);
while (reply == 1u)
RunLoop::current().cycle();
EXPECT_EQ(reply, 0u);
semaphore.signal();
localReferenceBarrier();
}
TEST_P(ConnectionRunLoopTest, RunLoopWaitForAndDispatchImmediately)
{
ASSERT_TRUE(openA());
for (uint64_t i = 0u; i < 55u; ++i)
a()->send(MockTestMessage1 { }, i);
auto runLoop = createRunLoop(RUN_LOOP_NAME);
runLoop->dispatch([&] {
ASSERT_TRUE(openB());
for (uint64_t i = 100u; i < 160u; ++i)
b()->send(MockTestMessage1 { }, i);
for (uint64_t i = 0u; i < 55u; ++i) {
IPC::Error error = b()->waitForAndDispatchImmediately<MockTestMessage1>(i, kDefaultWaitForTimeout);
ASSERT_EQ(IPC::Error::NoError, error);
auto message = bClient().waitForMessage(0_s);
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, i);
}
});
for (uint64_t i = 100u; i < 160u; ++i) {
IPC::Error error = a()->waitForAndDispatchImmediately<MockTestMessage1>(i, kDefaultWaitForTimeout);
ASSERT_EQ(IPC::Error::NoError, error);
auto message = aClient().waitForMessage(0_s);
EXPECT_EQ(message.messageName, MockTestMessage1::name());
EXPECT_EQ(message.destinationID, i);
}
runLoop->dispatch([&] {
b()->invalidate();
});
localReferenceBarrier();
}
TEST_P(ConnectionRunLoopTest, SendLocalSyncMessageWithDataReply)
{
constexpr int iterations = 5;
constexpr size_t dataSize = 1e8; // 100 MB.
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
runLoop->dispatch([&] {
bClient().setSyncMessageHandler([&](IPC::Decoder& decoder, UniqueRef<IPC::Encoder>& encoder) -> bool {
Vector<uint8_t> data(dataSize);
for (size_t i = 0; i < dataSize; ++i)
data[i] = static_cast<uint8_t>(i);
encoder.get() << data;
b()->sendSyncReply(WTFMove(encoder));
return true;
});
ASSERT_TRUE(openB());
});
for (int i = 0; i < iterations; ++i) {
auto sendResult = a()->sendSync(MockTestSyncMessageWithDataReply { }, i, kDefaultWaitForTimeout);
ASSERT_TRUE(sendResult.succeeded());
auto& [replyData] = sendResult.reply();
for (size_t i = 0; i < replyData.size(); ++i) {
auto expected = static_cast<uint8_t>(i);
if (expected != replyData[i])
ASSERT_EQ(expected, replyData[i]);
}
ASSERT_EQ(dataSize, replyData.size());
}
runLoop->dispatch([&] {
b()->invalidate();
});
localReferenceBarrier();
}
// Tests that unhandled sync message is cancelled. IPC::Connection receiving unhandled messages.
TEST_P(ConnectionRunLoopTest, SyncMessageNotHandledIsCancelled)
{
constexpr size_t iterations = 10;
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
uint64_t gotDestination = 0;
runLoop->dispatch([&] {
bClient().setSyncMessageHandler([&](IPC::Decoder& decoder, UniqueRef<IPC::Encoder>& encoder) -> bool {
gotDestination = decoder.destinationID();
// Unhandled message.
if (decoder.destinationID() == 77)
return false; // Message destiation was unknown, unhandled message.
if (decoder.destinationID() == 99) {
b()->sendSyncReply(WTFMove(encoder));
return true;
}
EXPECT_TRUE(false);
return false;
});
ASSERT_TRUE(openB());
});
for (size_t i = 0; i < iterations; ++i) {
{
gotDestination = 0;
auto result = a()->sendSync(MockTestSyncMessage(), 77, kDefaultWaitForTimeout);
ASSERT_FALSE(result.succeeded());
EXPECT_EQ(IPC::Error::SyncMessageCancelled, result.error());
EXPECT_EQ(77u, gotDestination);
}
{
gotDestination = 0;
auto result = a()->sendSync(MockTestSyncMessage(), 99, kDefaultWaitForTimeout);
EXPECT_TRUE(result.succeeded());
EXPECT_EQ(99u, gotDestination);
}
}
runLoop->dispatch([&] {
b()->invalidate();
});
localReferenceBarrier();
}
#if ENABLE(IPC_TESTING_API)
// Tests that sync message with decode failure is cancelled. IPC::Connection does not allow these,
// but JS IPC Testing API uses these.
TEST_P(ConnectionRunLoopTest, SyncMessageDecodeFailureIsCancelled)
{
constexpr size_t iterations = 10;
ASSERT_TRUE(openA());
auto runLoop = createRunLoop(RUN_LOOP_NAME);
uint64_t gotDestination = 0;
runLoop->dispatch([&] {
b()->setIgnoreInvalidMessageForTesting();
bClient().setSyncMessageHandler([&](IPC::Decoder& decoder, UniqueRef<IPC::Encoder>& encoder) -> bool {
gotDestination = decoder.destinationID();
// Decode failure.
if (decoder.destinationID() == 88) {
EXPECT_FALSE(decoder.decode<uint64_t>());
return true; // Message was handled, but decode failed.
}
if (decoder.destinationID() == 99) {
b()->sendSyncReply(WTFMove(encoder));
return true;
}
EXPECT_TRUE(false);
return false;
});
ASSERT_TRUE(openB());
});
for (size_t i = 0; i < iterations; ++i) {
{
gotDestination = 0;
auto result = a()->sendSync(MockTestSyncMessage(), 88, IPC::Timeout::infinity());
ASSERT_FALSE(result.succeeded());
EXPECT_EQ(IPC::Error::SyncMessageCancelled, result.error());
EXPECT_EQ(88u, gotDestination);
}
{
gotDestination = 0;
auto result = a()->sendSync(MockTestSyncMessage(), 99, IPC::Timeout::infinity());
EXPECT_TRUE(result.succeeded());
EXPECT_EQ(99u, gotDestination);
}
}
runLoop->dispatch([&] {
b()->invalidate();
});
localReferenceBarrier();
}
#endif
#undef RUN_LOOP_NAME
#undef LOCAL_STRINGIFY
INSTANTIATE_TEST_SUITE_P(ConnectionTest,
ConnectionTestABBA,
testing::Values(ConnectionTestDirection::ServerIsA, ConnectionTestDirection::ClientIsA),
TestParametersToStringFormatter());
INSTANTIATE_TEST_SUITE_P(ConnectionTest,
ConnectionRunLoopTest,
testing::Values(ConnectionTestDirection::ServerIsA, ConnectionTestDirection::ClientIsA),
TestParametersToStringFormatter());
}
|