aboutsummaryrefslogtreecommitdiff
path: root/mojo/edk/system/watcher_unittest.cc
blob: dd396cd90592caa658563ac737a1fa8e102c610f (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
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
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
// Copyright 2017 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 <stdint.h>

#include <map>
#include <memory>
#include <set>

#include "base/bind.h"
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/platform_thread.h"
#include "base/threading/simple_thread.h"
#include "base/time/time.h"
#include "mojo/edk/test/mojo_test_base.h"
#include "mojo/public/c/system/data_pipe.h"
#include "mojo/public/c/system/types.h"
#include "mojo/public/c/system/watcher.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace mojo {
namespace edk {
namespace {

using WatcherTest = test::MojoTestBase;

class WatchHelper {
 public:
  using ContextCallback =
      base::Callback<void(MojoResult, MojoHandleSignalsState)>;

  WatchHelper() {}
  ~WatchHelper() {}

  MojoResult CreateWatcher(MojoHandle* handle) {
    return MojoCreateWatcher(&Notify, handle);
  }

  uintptr_t CreateContext(const ContextCallback& callback) {
    return CreateContextWithCancel(callback, base::Closure());
  }

  uintptr_t CreateContextWithCancel(const ContextCallback& callback,
                                    const base::Closure& cancel_callback) {
    auto context = base::MakeUnique<NotificationContext>(callback);
    NotificationContext* raw_context = context.get();
    raw_context->SetCancelCallback(base::Bind(
        [](std::unique_ptr<NotificationContext> context,
           const base::Closure& cancel_callback) {
          if (cancel_callback)
            cancel_callback.Run();
        },
        base::Passed(&context), cancel_callback));
    return reinterpret_cast<uintptr_t>(raw_context);
  }

 private:
  class NotificationContext {
   public:
    explicit NotificationContext(const ContextCallback& callback)
        : callback_(callback) {}

    ~NotificationContext() {}

    void SetCancelCallback(const base::Closure& cancel_callback) {
      cancel_callback_ = cancel_callback;
    }

    void Notify(MojoResult result, MojoHandleSignalsState state) {
      if (result == MOJO_RESULT_CANCELLED)
        cancel_callback_.Run();
      else
        callback_.Run(result, state);
    }

   private:
    const ContextCallback callback_;
    base::Closure cancel_callback_;

    DISALLOW_COPY_AND_ASSIGN(NotificationContext);
  };

  static void Notify(uintptr_t context,
                     MojoResult result,
                     MojoHandleSignalsState state,
                     MojoWatcherNotificationFlags flags) {
    reinterpret_cast<NotificationContext*>(context)->Notify(result, state);
  }

  DISALLOW_COPY_AND_ASSIGN(WatchHelper);
};

class ThreadedRunner : public base::SimpleThread {
 public:
  explicit ThreadedRunner(const base::Closure& callback)
      : SimpleThread("ThreadedRunner"), callback_(callback) {}
  ~ThreadedRunner() override {}

  void Run() override { callback_.Run(); }

 private:
  const base::Closure callback_;

  DISALLOW_COPY_AND_ASSIGN(ThreadedRunner);
};

void ExpectNoNotification(uintptr_t context,
                          MojoResult result,
                          MojoHandleSignalsState state,
                          MojoWatcherNotificationFlags flags) {
  NOTREACHED();
}

void ExpectOnlyCancel(uintptr_t context,
                      MojoResult result,
                      MojoHandleSignalsState state,
                      MojoWatcherNotificationFlags flags) {
  EXPECT_EQ(result, MOJO_RESULT_CANCELLED);
}

TEST_F(WatcherTest, InvalidArguments) {
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT,
            MojoCreateWatcher(&ExpectNoNotification, nullptr));
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, MojoCreateWatcher(&ExpectNoNotification, &w));

  // Try to watch unwatchable handles.
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT,
            MojoWatch(w, w, MOJO_HANDLE_SIGNAL_READABLE, 0));
  MojoHandle buffer_handle = CreateBuffer(42);
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT,
            MojoWatch(w, buffer_handle, MOJO_HANDLE_SIGNAL_READABLE, 0));

  // Try to cancel a watch on an invalid watcher handle.
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT, MojoCancelWatch(buffer_handle, 0));

  // Try to arm an invalid handle.
  EXPECT_EQ(
      MOJO_RESULT_INVALID_ARGUMENT,
      MojoArmWatcher(MOJO_HANDLE_INVALID, nullptr, nullptr, nullptr, nullptr));
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT,
            MojoArmWatcher(buffer_handle, nullptr, nullptr, nullptr, nullptr));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(buffer_handle));

  // Try to arm with a non-null count but at least one null output buffer.
  uint32_t num_ready_contexts = 1;
  uintptr_t ready_context;
  MojoResult ready_result;
  MojoHandleSignalsState ready_state;
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT,
            MojoArmWatcher(w, &num_ready_contexts, nullptr, &ready_result,
                           &ready_state));
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT,
            MojoArmWatcher(w, &num_ready_contexts, &ready_context, nullptr,
                           &ready_state));
  EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT,
            MojoArmWatcher(w, &num_ready_contexts, &ready_context,
                           &ready_result, nullptr));

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

TEST_F(WatcherTest, WatchMessagePipeReadable) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  int num_expected_notifications = 1;
  const uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, int* expected_count, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_GT(*expected_count, 0);
        *expected_count -= 1;

        EXPECT_EQ(MOJO_RESULT_OK, result);
        event->Signal();
      },
      &event, &num_expected_notifications));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  const char kMessage1[] = "hey hey hey hey";
  const char kMessage2[] = "i said hey";
  const char kMessage3[] = "what's goin' on?";

  // Writing to |b| multiple times should notify exactly once.
  WriteMessage(b, kMessage1);
  WriteMessage(b, kMessage2);
  event.Wait();

  // This also shouldn't fire a notification; the watcher is still disarmed.
  WriteMessage(b, kMessage3);

  // Arming should fail with relevant information.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(readable_a_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);

  // Flush the three messages from above.
  EXPECT_EQ(kMessage1, ReadMessage(a));
  EXPECT_EQ(kMessage2, ReadMessage(a));
  EXPECT_EQ(kMessage3, ReadMessage(a));

  // Now we can rearm the watcher.
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
}

TEST_F(WatcherTest, CloseWatchedMessagePipeHandle) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  const uintptr_t readable_a_context = helper.CreateContextWithCancel(
      WatchHelper::ContextCallback(),
      base::Bind([](base::WaitableEvent* event) { event->Signal(); }, &event));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));

  // Test that closing a watched handle fires an appropriate notification, even
  // when the watcher is unarmed.
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

TEST_F(WatcherTest, CloseWatchedMessagePipeHandlePeer) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  const uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, result);
        event->Signal();
      },
      &event));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));

  // Test that closing a watched handle's peer with an armed watcher fires an
  // appropriate notification.
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
  event.Wait();

  // And now arming should fail with correct information about |a|'s state.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(readable_a_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals &
              MOJO_HANDLE_SIGNAL_PEER_CLOSED);
  EXPECT_FALSE(ready_states[0].satisfiable_signals &
               MOJO_HANDLE_SIGNAL_READABLE);

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
}

TEST_F(WatcherTest, WatchDataPipeConsumerReadable) {
  constexpr size_t kTestPipeCapacity = 64;
  MojoHandle producer, consumer;
  CreateDataPipe(&producer, &consumer, kTestPipeCapacity);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  int num_expected_notifications = 1;
  const uintptr_t readable_consumer_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, int* expected_count, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_GT(*expected_count, 0);
        *expected_count -= 1;

        EXPECT_EQ(MOJO_RESULT_OK, result);
        event->Signal();
      },
      &event, &num_expected_notifications));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, consumer, MOJO_HANDLE_SIGNAL_READABLE,
                                      readable_consumer_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  const char kMessage1[] = "hey hey hey hey";
  const char kMessage2[] = "i said hey";
  const char kMessage3[] = "what's goin' on?";

  // Writing to |producer| multiple times should notify exactly once.
  WriteData(producer, kMessage1);
  WriteData(producer, kMessage2);
  event.Wait();

  // This also shouldn't fire a notification; the watcher is still disarmed.
  WriteData(producer, kMessage3);

  // Arming should fail with relevant information.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(readable_consumer_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);

  // Flush the three messages from above.
  EXPECT_EQ(kMessage1, ReadData(consumer, sizeof(kMessage1) - 1));
  EXPECT_EQ(kMessage2, ReadData(consumer, sizeof(kMessage2) - 1));
  EXPECT_EQ(kMessage3, ReadData(consumer, sizeof(kMessage3) - 1));

  // Now we can rearm the watcher.
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(producer));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(consumer));
}

TEST_F(WatcherTest, WatchDataPipeConsumerNewDataReadable) {
  constexpr size_t kTestPipeCapacity = 64;
  MojoHandle producer, consumer;
  CreateDataPipe(&producer, &consumer, kTestPipeCapacity);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  int num_new_data_notifications = 0;
  const uintptr_t new_data_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, int* notification_count, MojoResult result,
         MojoHandleSignalsState state) {
        *notification_count += 1;

        EXPECT_EQ(MOJO_RESULT_OK, result);
        event->Signal();
      },
      &event, &num_new_data_notifications));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, consumer, MOJO_HANDLE_SIGNAL_NEW_DATA_READABLE,
                      new_data_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  const char kMessage1[] = "hey hey hey hey";
  const char kMessage2[] = "i said hey";
  const char kMessage3[] = "what's goin' on?";

  // Writing to |producer| multiple times should notify exactly once.
  WriteData(producer, kMessage1);
  WriteData(producer, kMessage2);
  event.Wait();

  // This also shouldn't fire a notification; the watcher is still disarmed.
  WriteData(producer, kMessage3);

  // Arming should fail with relevant information.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(new_data_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);

  // Attempt to read more data than is available. Should fail but clear the
  // NEW_DATA_READABLE signal.
  char large_buffer[512];
  uint32_t large_read_size = 512;
  EXPECT_EQ(MOJO_RESULT_OUT_OF_RANGE,
            MojoReadData(consumer, large_buffer, &large_read_size,
                         MOJO_READ_DATA_FLAG_ALL_OR_NONE));

  // Attempt to arm again. Should succeed.
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  // Write more data. Should notify.
  event.Reset();
  WriteData(producer, kMessage1);
  event.Wait();

  // Reading some data should clear NEW_DATA_READABLE again so we can rearm.
  EXPECT_EQ(kMessage1, ReadData(consumer, sizeof(kMessage1) - 1));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  EXPECT_EQ(2, num_new_data_notifications);

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(producer));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(consumer));
}

TEST_F(WatcherTest, WatchDataPipeProducerWritable) {
  constexpr size_t kTestPipeCapacity = 8;
  MojoHandle producer, consumer;
  CreateDataPipe(&producer, &consumer, kTestPipeCapacity);

  // Half the capacity of the data pipe.
  const char kTestData[] = "aaaa";
  static_assert((sizeof(kTestData) - 1) * 2 == kTestPipeCapacity,
                "Invalid test data for this test.");

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  int num_expected_notifications = 1;
  const uintptr_t writable_producer_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, int* expected_count, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_GT(*expected_count, 0);
        *expected_count -= 1;

        EXPECT_EQ(MOJO_RESULT_OK, result);
        event->Signal();
      },
      &event, &num_expected_notifications));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, producer, MOJO_HANDLE_SIGNAL_WRITABLE,
                                      writable_producer_context));

  // The producer is already writable, so arming should fail with relevant
  // information.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(writable_producer_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);

  // Write some data, but don't fill the pipe yet. Arming should fail again.
  WriteData(producer, kTestData);
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(writable_producer_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);

  // Write more data, filling the pipe to capacity. Arming should succeed now.
  WriteData(producer, kTestData);
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  // Now read from the pipe, making the producer writable again. Should notify.
  EXPECT_EQ(kTestData, ReadData(consumer, sizeof(kTestData) - 1));
  event.Wait();

  // Arming should fail again.
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(writable_producer_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);

  // Fill the pipe once more and arm the watcher. Should succeed.
  WriteData(producer, kTestData);
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(producer));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(consumer));
};

TEST_F(WatcherTest, CloseWatchedDataPipeConsumerHandle) {
  constexpr size_t kTestPipeCapacity = 8;
  MojoHandle producer, consumer;
  CreateDataPipe(&producer, &consumer, kTestPipeCapacity);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  const uintptr_t readable_consumer_context = helper.CreateContextWithCancel(
      WatchHelper::ContextCallback(),
      base::Bind([](base::WaitableEvent* event) { event->Signal(); }, &event));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, consumer, MOJO_HANDLE_SIGNAL_READABLE,
                                      readable_consumer_context));

  // Closing the consumer should fire a cancellation notification.
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(consumer));
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(producer));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

TEST_F(WatcherTest, CloseWatcherDataPipeConsumerHandlePeer) {
  constexpr size_t kTestPipeCapacity = 8;
  MojoHandle producer, consumer;
  CreateDataPipe(&producer, &consumer, kTestPipeCapacity);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  const uintptr_t readable_consumer_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, result);
        event->Signal();
      },
      &event));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, consumer, MOJO_HANDLE_SIGNAL_READABLE,
                                      readable_consumer_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  // Closing the producer should fire a notification for an unsatisfiable watch.
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(producer));
  event.Wait();

  // Now attempt to rearm and expect appropriate error feedback.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(readable_consumer_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, ready_results[0]);
  EXPECT_FALSE(ready_states[0].satisfiable_signals &
               MOJO_HANDLE_SIGNAL_READABLE);

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(consumer));
}

TEST_F(WatcherTest, CloseWatchedDataPipeProducerHandle) {
  constexpr size_t kTestPipeCapacity = 8;
  MojoHandle producer, consumer;
  CreateDataPipe(&producer, &consumer, kTestPipeCapacity);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  const uintptr_t writable_producer_context = helper.CreateContextWithCancel(
      WatchHelper::ContextCallback(),
      base::Bind([](base::WaitableEvent* event) { event->Signal(); }, &event));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, producer, MOJO_HANDLE_SIGNAL_WRITABLE,
                                      writable_producer_context));

  // Closing the consumer should fire a cancellation notification.
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(producer));
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(consumer));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

TEST_F(WatcherTest, CloseWatchedDataPipeProducerHandlePeer) {
  constexpr size_t kTestPipeCapacity = 8;
  MojoHandle producer, consumer;
  CreateDataPipe(&producer, &consumer, kTestPipeCapacity);

  const char kTestMessageFullCapacity[] = "xxxxxxxx";
  static_assert(sizeof(kTestMessageFullCapacity) - 1 == kTestPipeCapacity,
                "Invalid test message size for this test.");

  // Make the pipe unwritable initially.
  WriteData(producer, kTestMessageFullCapacity);

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  const uintptr_t writable_producer_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, result);
        event->Signal();
      },
      &event));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, producer, MOJO_HANDLE_SIGNAL_WRITABLE,
                                      writable_producer_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  // Closing the consumer should fire a notification for an unsatisfiable watch,
  // as the full data pipe can never be read from again and is therefore
  // permanently full and unwritable.
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(consumer));
  event.Wait();

  // Now attempt to rearm and expect appropriate error feedback.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(writable_producer_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, ready_results[0]);
  EXPECT_FALSE(ready_states[0].satisfiable_signals &
               MOJO_HANDLE_SIGNAL_WRITABLE);

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(producer));
}

TEST_F(WatcherTest, ArmWithNoWatches) {
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, MojoCreateWatcher(&ExpectNoNotification, &w));
  EXPECT_EQ(MOJO_RESULT_NOT_FOUND,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

TEST_F(WatcherTest, WatchDuplicateContext) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, MojoCreateWatcher(&ExpectOnlyCancel, &w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, 0));
  EXPECT_EQ(MOJO_RESULT_ALREADY_EXISTS,
            MojoWatch(w, b, MOJO_HANDLE_SIGNAL_READABLE, 0));

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
}

TEST_F(WatcherTest, CancelUnknownWatch) {
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, MojoCreateWatcher(&ExpectNoNotification, &w));
  EXPECT_EQ(MOJO_RESULT_NOT_FOUND, MojoCancelWatch(w, 1234));
}

TEST_F(WatcherTest, ArmWithWatchAlreadySatisfied) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, MojoCreateWatcher(&ExpectOnlyCancel, &w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, a, MOJO_HANDLE_SIGNAL_WRITABLE, 0));

  // |a| is always writable, so we can never arm this watcher.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(0u, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
}

TEST_F(WatcherTest, ArmWithWatchAlreadyUnsatisfiable) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, MojoCreateWatcher(&ExpectOnlyCancel, &w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, 0));

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));

  // |b| is closed and never wrote any messages, so |a| won't be readable again.
  // MojoArmWatcher() should fail, incidcating as much.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = kMaxReadyContexts;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(0u, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals &
              MOJO_HANDLE_SIGNAL_PEER_CLOSED);
  EXPECT_FALSE(ready_states[0].satisfiable_signals &
               MOJO_HANDLE_SIGNAL_READABLE);

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
}

TEST_F(WatcherTest, MultipleWatches) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  base::WaitableEvent a_event(base::WaitableEvent::ResetPolicy::MANUAL,
                              base::WaitableEvent::InitialState::NOT_SIGNALED);
  base::WaitableEvent b_event(base::WaitableEvent::ResetPolicy::MANUAL,
                              base::WaitableEvent::InitialState::NOT_SIGNALED);
  WatchHelper helper;
  int num_a_notifications = 0;
  int num_b_notifications = 0;
  auto notify_callback =
      base::Bind([](base::WaitableEvent* event, int* notification_count,
                    MojoResult result, MojoHandleSignalsState state) {
        *notification_count += 1;
        EXPECT_EQ(MOJO_RESULT_OK, result);
        event->Signal();
      });
  uintptr_t readable_a_context = helper.CreateContext(
      base::Bind(notify_callback, &a_event, &num_a_notifications));
  uintptr_t readable_b_context = helper.CreateContext(
      base::Bind(notify_callback, &b_event, &num_b_notifications));

  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  // Add two independent watch contexts to watch for |a| or |b| readability.
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, b, MOJO_HANDLE_SIGNAL_READABLE, readable_b_context));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  const char kMessage1[] = "things are happening";
  const char kMessage2[] = "ok. ok. ok. ok.";
  const char kMessage3[] = "plz wake up";

  // Writing to |b| should signal |a|'s watch.
  WriteMessage(b, kMessage1);
  a_event.Wait();
  a_event.Reset();

  // Subsequent messages on |b| should not trigger another notification.
  WriteMessage(b, kMessage2);
  WriteMessage(b, kMessage3);

  // Messages on |a| also shouldn't trigger |b|'s notification, since the
  // watcher should be disarmed by now.
  WriteMessage(a, kMessage1);
  WriteMessage(a, kMessage2);
  WriteMessage(a, kMessage3);

  // Arming should fail. Since we only ask for at most one context's information
  // that's all we should get back. Which one we get is unspecified.
  constexpr size_t kMaxReadyContexts = 10;
  uint32_t num_ready_contexts = 1;
  uintptr_t ready_contexts[kMaxReadyContexts];
  MojoResult ready_results[kMaxReadyContexts];
  MojoHandleSignalsState ready_states[kMaxReadyContexts];
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_TRUE(ready_contexts[0] == readable_a_context ||
              ready_contexts[0] == readable_b_context);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);

  // Now try arming again, verifying that both contexts are returned.
  num_ready_contexts = kMaxReadyContexts;
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(2u, num_ready_contexts);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[1]);
  EXPECT_TRUE(ready_states[0].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);
  EXPECT_TRUE(ready_states[1].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);
  EXPECT_TRUE((ready_contexts[0] == readable_a_context &&
               ready_contexts[1] == readable_b_context) ||
              (ready_contexts[0] == readable_b_context &&
               ready_contexts[1] == readable_a_context));

  // Flush out the test messages so we should be able to successfully rearm.
  EXPECT_EQ(kMessage1, ReadMessage(a));
  EXPECT_EQ(kMessage2, ReadMessage(a));
  EXPECT_EQ(kMessage3, ReadMessage(a));
  EXPECT_EQ(kMessage1, ReadMessage(b));
  EXPECT_EQ(kMessage2, ReadMessage(b));
  EXPECT_EQ(kMessage3, ReadMessage(b));

  // Add a watch which is always satisfied, so we can't arm. Arming should fail
  // with only this new watch's information.
  uintptr_t writable_c_context = helper.CreateContext(base::Bind(
      [](MojoResult result, MojoHandleSignalsState state) { NOTREACHED(); }));
  MojoHandle c, d;
  CreateMessagePipe(&c, &d);

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, c, MOJO_HANDLE_SIGNAL_WRITABLE, writable_c_context));
  num_ready_contexts = kMaxReadyContexts;
  EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
            MojoArmWatcher(w, &num_ready_contexts, ready_contexts,
                           ready_results, ready_states));
  EXPECT_EQ(1u, num_ready_contexts);
  EXPECT_EQ(writable_c_context, ready_contexts[0]);
  EXPECT_EQ(MOJO_RESULT_OK, ready_results[0]);
  EXPECT_TRUE(ready_states[0].satisfied_signals & MOJO_HANDLE_SIGNAL_WRITABLE);

  // Cancel the new watch and arming should succeed once again.
  EXPECT_EQ(MOJO_RESULT_OK, MojoCancelWatch(w, writable_c_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(c));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(d));
}

TEST_F(WatcherTest, NotifyOtherFromNotificationCallback) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  static const char kTestMessageToA[] = "hello a";
  static const char kTestMessageToB[] = "hello b";

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);

  WatchHelper helper;
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](MojoHandle w, MojoHandle a, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ("hello a", ReadMessage(a));

        // Re-arm the watcher and signal |b|.
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));
        WriteMessage(a, kTestMessageToB);
      },
      w, a));

  uintptr_t readable_b_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoHandle w, MojoHandle b,
         MojoResult result, MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ(kTestMessageToB, ReadMessage(b));
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));
        event->Signal();
      },
      &event, w, b));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, b, MOJO_HANDLE_SIGNAL_READABLE, readable_b_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  // Send a message to |a|. The relevant watch context should be notified, and
  // should in turn send a message to |b|, waking up the other context. The
  // second context signals |event|.
  WriteMessage(b, kTestMessageToA);
  event.Wait();
}

TEST_F(WatcherTest, NotifySelfFromNotificationCallback) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  static const char kTestMessageToA[] = "hello a";

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);

  WatchHelper helper;
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  int expected_notifications = 10;
  uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](int* expected_count, MojoHandle w, MojoHandle a, MojoHandle b,
         base::WaitableEvent* event, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ("hello a", ReadMessage(a));

        EXPECT_GT(*expected_count, 0);
        *expected_count -= 1;
        if (*expected_count == 0) {
          event->Signal();
          return;
        } else {
          // Re-arm the watcher and signal |a| again.
          EXPECT_EQ(MOJO_RESULT_OK,
                    MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));
          WriteMessage(b, kTestMessageToA);
        }
      },
      &expected_notifications, w, a, b, &event));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  // Send a message to |a|. When the watch above is notified, it will rearm and
  // send another message to |a|. This will happen until
  // |expected_notifications| reaches 0.
  WriteMessage(b, kTestMessageToA);
  event.Wait();
}

TEST_F(WatcherTest, ImplicitCancelOtherFromNotificationCallback) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  MojoHandle c, d;
  CreateMessagePipe(&c, &d);

  static const char kTestMessageToA[] = "hi a";
  static const char kTestMessageToC[] = "hi c";

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);

  WatchHelper helper;
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  uintptr_t readable_a_context = helper.CreateContextWithCancel(
      base::Bind([](MojoResult result, MojoHandleSignalsState state) {
        NOTREACHED();
      }),
      base::Bind([](base::WaitableEvent* event) { event->Signal(); }, &event));

  uintptr_t readable_c_context = helper.CreateContext(base::Bind(
      [](MojoHandle w, MojoHandle a, MojoHandle b, MojoHandle c,
         MojoResult result, MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ(kTestMessageToC, ReadMessage(c));

        // Now rearm the watcher.
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

        // Must result in exactly ONE notification on the above context, for
        // CANCELLED only. Because we cannot dispatch notifications until the
        // stack unwinds, and because we must never dispatch non-cancellation
        // notifications for a handle once it's been closed, we must be certain
        // that cancellation due to closure preemptively invalidates any
        // pending non-cancellation notifications queued on the current
        // RequestContext, such as the one resulting from the WriteMessage here.
        WriteMessage(b, kTestMessageToA);
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));

        // Rearming should be fine since |a|'s watch should already be
        // implicitly cancelled (even though the notification will not have
        // been invoked yet.)
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

        // Nothing interesting should happen as a result of this.
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
      },
      w, a, b, c));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, c, MOJO_HANDLE_SIGNAL_READABLE, readable_c_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  WriteMessage(d, kTestMessageToC);
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(c));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(d));
}

TEST_F(WatcherTest, ExplicitCancelOtherFromNotificationCallback) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  MojoHandle c, d;
  CreateMessagePipe(&c, &d);

  static const char kTestMessageToA[] = "hi a";
  static const char kTestMessageToC[] = "hi c";

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);

  WatchHelper helper;
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](MojoResult result, MojoHandleSignalsState state) { NOTREACHED(); }));

  uintptr_t readable_c_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, uintptr_t readable_a_context, MojoHandle w,
         MojoHandle a, MojoHandle b, MojoHandle c, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ(kTestMessageToC, ReadMessage(c));

        // Now rearm the watcher.
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

        // Should result in no notifications on the above context, because the
        // watch will have been cancelled by the time the notification callback
        // can execute.
        WriteMessage(b, kTestMessageToA);
        WriteMessage(b, kTestMessageToA);
        EXPECT_EQ(MOJO_RESULT_OK, MojoCancelWatch(w, readable_a_context));

        // Rearming should be fine now.
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

        // Nothing interesting should happen as a result of these.
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));

        event->Signal();
      },
      &event, readable_a_context, w, a, b, c));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, c, MOJO_HANDLE_SIGNAL_READABLE, readable_c_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  WriteMessage(d, kTestMessageToC);
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(c));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(d));
}

TEST_F(WatcherTest, NestedCancellation) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  MojoHandle c, d;
  CreateMessagePipe(&c, &d);

  static const char kTestMessageToA[] = "hey a";
  static const char kTestMessageToC[] = "hey c";
  static const char kTestMessageToD[] = "hey d";

  // This is a tricky test. It establishes a watch on |b| using one watcher and
  // watches on |c| and |d| using another watcher.
  //
  // A message is written to |d| to wake up |c|'s watch, and the notification
  // handler for that event does the following:
  //   1. Writes to |a| to eventually wake up |b|'s watcher.
  //   2. Rearms |c|'s watcher.
  //   3. Writes to |d| to eventually wake up |c|'s watcher again.
  //
  // Meanwhile, |b|'s watch notification handler cancels |c|'s watch altogether
  // before writing to |c| to wake up |d|.
  //
  // The net result should be that |c|'s context only gets notified once (from
  // the first write to |d| above) and everyone else gets notified as expected.

  MojoHandle b_watcher;
  MojoHandle cd_watcher;
  WatchHelper helper;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&b_watcher));
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&cd_watcher));

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  uintptr_t readable_d_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoHandle d, MojoResult result,
         MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ(kTestMessageToD, ReadMessage(d));
        event->Signal();
      },
      &event, d));

  static int num_expected_c_notifications = 1;
  uintptr_t readable_c_context = helper.CreateContext(base::Bind(
      [](MojoHandle cd_watcher, MojoHandle a, MojoHandle c, MojoHandle d,
         MojoResult result, MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_GT(num_expected_c_notifications--, 0);

        // Trigger an eventual |readable_b_context| notification.
        WriteMessage(a, kTestMessageToA);

        EXPECT_EQ(kTestMessageToC, ReadMessage(c));
        EXPECT_EQ(MOJO_RESULT_OK, MojoArmWatcher(cd_watcher, nullptr, nullptr,
                                                 nullptr, nullptr));

        // Trigger another eventual |readable_c_context| notification.
        WriteMessage(d, kTestMessageToC);
      },
      cd_watcher, a, c, d));

  uintptr_t readable_b_context = helper.CreateContext(base::Bind(
      [](MojoHandle cd_watcher, uintptr_t readable_c_context, MojoHandle c,
         MojoResult result, MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoCancelWatch(cd_watcher, readable_c_context));

        EXPECT_EQ(MOJO_RESULT_OK, MojoArmWatcher(cd_watcher, nullptr, nullptr,
                                                 nullptr, nullptr));

        WriteMessage(c, kTestMessageToD);
      },
      cd_watcher, readable_c_context, c));

  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(b_watcher, b, MOJO_HANDLE_SIGNAL_READABLE,
                                      readable_b_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(cd_watcher, c, MOJO_HANDLE_SIGNAL_READABLE,
                      readable_c_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(cd_watcher, d, MOJO_HANDLE_SIGNAL_READABLE,
                      readable_d_context));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(b_watcher, nullptr, nullptr, nullptr, nullptr));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(cd_watcher, nullptr, nullptr, nullptr, nullptr));

  WriteMessage(d, kTestMessageToC);
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(cd_watcher));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b_watcher));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(c));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(d));
}

TEST_F(WatcherTest, CancelSelfInNotificationCallback) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  static const char kTestMessageToA[] = "hey a";

  MojoHandle w;
  WatchHelper helper;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);

  static uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoHandle w, MojoHandle a,
         MojoResult result, MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);

        // There should be no problem cancelling this watch from its own
        // notification invocation.
        EXPECT_EQ(MOJO_RESULT_OK, MojoCancelWatch(w, readable_a_context));
        EXPECT_EQ(kTestMessageToA, ReadMessage(a));

        // Arming should fail because there are no longer any registered
        // watches on the watcher.
        EXPECT_EQ(MOJO_RESULT_NOT_FOUND,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

        // And closing |a| should be fine (and should not invoke this
        // notification with MOJO_RESULT_CANCELLED) for the same reason.
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));

        event->Signal();
      },
      &event, w, a));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  WriteMessage(b, kTestMessageToA);
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

TEST_F(WatcherTest, CloseWatcherInNotificationCallback) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  static const char kTestMessageToA1[] = "hey a";
  static const char kTestMessageToA2[] = "hey a again";

  MojoHandle w;
  WatchHelper helper;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);

  uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoHandle w, MojoHandle a, MojoHandle b,
         MojoResult result, MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ(kTestMessageToA1, ReadMessage(a));
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

        // There should be no problem closing this watcher from its own
        // notification callback.
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));

        // And these should not trigger more notifications, because |w| has been
        // closed already.
        WriteMessage(b, kTestMessageToA2);
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));

        event->Signal();
      },
      &event, w, a, b));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  WriteMessage(b, kTestMessageToA1);
  event.Wait();
}

TEST_F(WatcherTest, CloseWatcherAfterImplicitCancel) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  static const char kTestMessageToA[] = "hey a";

  MojoHandle w;
  WatchHelper helper;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);

  uintptr_t readable_a_context = helper.CreateContext(base::Bind(
      [](base::WaitableEvent* event, MojoHandle w, MojoHandle a,
         MojoResult result, MojoHandleSignalsState state) {
        EXPECT_EQ(MOJO_RESULT_OK, result);
        EXPECT_EQ(kTestMessageToA, ReadMessage(a));
        EXPECT_EQ(MOJO_RESULT_OK,
                  MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

        // This will cue up a notification for |MOJO_RESULT_CANCELLED|...
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));

        // ...but it should never fire because we close the watcher here.
        EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));

        event->Signal();
      },
      &event, w, a));

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  WriteMessage(b, kTestMessageToA);
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
}

TEST_F(WatcherTest, OtherThreadCancelDuringNotification) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  static const char kTestMessageToA[] = "hey a";

  MojoHandle w;
  WatchHelper helper;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  base::WaitableEvent wait_for_notification(
      base::WaitableEvent::ResetPolicy::MANUAL,
      base::WaitableEvent::InitialState::NOT_SIGNALED);

  base::WaitableEvent wait_for_cancellation(
      base::WaitableEvent::ResetPolicy::MANUAL,
      base::WaitableEvent::InitialState::NOT_SIGNALED);

  static bool callback_done = false;
  uintptr_t readable_a_context = helper.CreateContextWithCancel(
      base::Bind(
          [](base::WaitableEvent* wait_for_notification, MojoHandle w,
             MojoHandle a, MojoResult result, MojoHandleSignalsState state) {
            EXPECT_EQ(MOJO_RESULT_OK, result);
            EXPECT_EQ(kTestMessageToA, ReadMessage(a));

            wait_for_notification->Signal();

            // Give the other thread sufficient time to race with the completion
            // of this callback. There should be no race, since the cancellation
            // notification must be mutually exclusive to this notification.
            base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));

            callback_done = true;
          },
          &wait_for_notification, w, a),
      base::Bind(
          [](base::WaitableEvent* wait_for_cancellation) {
            EXPECT_TRUE(callback_done);
            wait_for_cancellation->Signal();
          },
          &wait_for_cancellation));

  ThreadedRunner runner(base::Bind(
      [](base::WaitableEvent* wait_for_notification,
         base::WaitableEvent* wait_for_cancellation, MojoHandle w,
         uintptr_t readable_a_context) {
        wait_for_notification->Wait();

        // Cancel the watch while the notification is still running.
        EXPECT_EQ(MOJO_RESULT_OK, MojoCancelWatch(w, readable_a_context));

        wait_for_cancellation->Wait();

        EXPECT_TRUE(callback_done);
      },
      &wait_for_notification, &wait_for_cancellation, w, readable_a_context));
  runner.Start();

  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(w, nullptr, nullptr, nullptr, nullptr));

  WriteMessage(b, kTestMessageToA);
  runner.Join();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

TEST_F(WatcherTest, WatchesCancelEachOtherFromNotifications) {
  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  static const char kTestMessageToA[] = "hey a";
  static const char kTestMessageToB[] = "hey b";

  base::WaitableEvent wait_for_a_to_notify(
      base::WaitableEvent::ResetPolicy::MANUAL,
      base::WaitableEvent::InitialState::NOT_SIGNALED);
  base::WaitableEvent wait_for_b_to_notify(
      base::WaitableEvent::ResetPolicy::MANUAL,
      base::WaitableEvent::InitialState::NOT_SIGNALED);
  base::WaitableEvent wait_for_a_to_cancel(
      base::WaitableEvent::ResetPolicy::MANUAL,
      base::WaitableEvent::InitialState::NOT_SIGNALED);
  base::WaitableEvent wait_for_b_to_cancel(
      base::WaitableEvent::ResetPolicy::MANUAL,
      base::WaitableEvent::InitialState::NOT_SIGNALED);

  MojoHandle a_watcher;
  MojoHandle b_watcher;
  WatchHelper helper;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&a_watcher));
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&b_watcher));

  // We set up two watchers, one on |a| and one on |b|. They cancel each other
  // from within their respective watch notifications. This should be safe,
  // i.e., it should not deadlock, in spite of the fact that we also guarantee
  // mutually exclusive notification execution (including cancellations) on any
  // given watch.
  bool a_cancelled = false;
  bool b_cancelled = false;
  static uintptr_t readable_b_context;
  uintptr_t readable_a_context = helper.CreateContextWithCancel(
      base::Bind(
          [](base::WaitableEvent* wait_for_a_to_notify,
             base::WaitableEvent* wait_for_b_to_notify, MojoHandle b_watcher,
             MojoHandle a, MojoResult result, MojoHandleSignalsState state) {
            EXPECT_EQ(MOJO_RESULT_OK, result);
            EXPECT_EQ(kTestMessageToA, ReadMessage(a));
            wait_for_a_to_notify->Signal();
            wait_for_b_to_notify->Wait();
            EXPECT_EQ(MOJO_RESULT_OK,
                      MojoCancelWatch(b_watcher, readable_b_context));
            EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b_watcher));
          },
          &wait_for_a_to_notify, &wait_for_b_to_notify, b_watcher, a),
      base::Bind(
          [](base::WaitableEvent* wait_for_a_to_cancel,
             base::WaitableEvent* wait_for_b_to_cancel, bool* a_cancelled) {
            *a_cancelled = true;
            wait_for_a_to_cancel->Signal();
            wait_for_b_to_cancel->Wait();
          },
          &wait_for_a_to_cancel, &wait_for_b_to_cancel, &a_cancelled));

  readable_b_context = helper.CreateContextWithCancel(
      base::Bind(
          [](base::WaitableEvent* wait_for_a_to_notify,
             base::WaitableEvent* wait_for_b_to_notify,
             uintptr_t readable_a_context, MojoHandle a_watcher, MojoHandle b,
             MojoResult result, MojoHandleSignalsState state) {
            EXPECT_EQ(MOJO_RESULT_OK, result);
            EXPECT_EQ(kTestMessageToB, ReadMessage(b));
            wait_for_b_to_notify->Signal();
            wait_for_a_to_notify->Wait();
            EXPECT_EQ(MOJO_RESULT_OK,
                      MojoCancelWatch(a_watcher, readable_a_context));
            EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a_watcher));
          },
          &wait_for_a_to_notify, &wait_for_b_to_notify, readable_a_context,
          a_watcher, b),
      base::Bind(
          [](base::WaitableEvent* wait_for_a_to_cancel,
             base::WaitableEvent* wait_for_b_to_cancel, bool* b_cancelled) {
            *b_cancelled = true;
            wait_for_b_to_cancel->Signal();
            wait_for_a_to_cancel->Wait();
          },
          &wait_for_a_to_cancel, &wait_for_b_to_cancel, &b_cancelled));

  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(a_watcher, a, MOJO_HANDLE_SIGNAL_READABLE,
                                      readable_a_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(a_watcher, nullptr, nullptr, nullptr, nullptr));
  EXPECT_EQ(MOJO_RESULT_OK, MojoWatch(b_watcher, b, MOJO_HANDLE_SIGNAL_READABLE,
                                      readable_b_context));
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoArmWatcher(b_watcher, nullptr, nullptr, nullptr, nullptr));

  ThreadedRunner runner(
      base::Bind([](MojoHandle b) { WriteMessage(b, kTestMessageToA); }, b));
  runner.Start();

  WriteMessage(a, kTestMessageToB);

  wait_for_a_to_cancel.Wait();
  wait_for_b_to_cancel.Wait();
  runner.Join();

  EXPECT_TRUE(a_cancelled);
  EXPECT_TRUE(b_cancelled);

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
}

TEST_F(WatcherTest, AlwaysCancel) {
  // Basic sanity check to ensure that all possible ways to cancel a watch
  // result in a final MOJO_RESULT_CANCELLED notification.

  MojoHandle a, b;
  CreateMessagePipe(&a, &b);

  MojoHandle w;
  WatchHelper helper;
  EXPECT_EQ(MOJO_RESULT_OK, helper.CreateWatcher(&w));

  base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
                            base::WaitableEvent::InitialState::NOT_SIGNALED);
  const base::Closure signal_event =
      base::Bind(&base::WaitableEvent::Signal, base::Unretained(&event));

  // Cancel via |MojoCancelWatch()|.
  uintptr_t context = helper.CreateContextWithCancel(
      WatchHelper::ContextCallback(), signal_event);
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, context));
  EXPECT_EQ(MOJO_RESULT_OK, MojoCancelWatch(w, context));
  event.Wait();
  event.Reset();

  // Cancel by closing the watched handle.
  context = helper.CreateContextWithCancel(WatchHelper::ContextCallback(),
                                           signal_event);
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, a, MOJO_HANDLE_SIGNAL_READABLE, context));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(a));
  event.Wait();
  event.Reset();

  // Cancel by closing the watcher handle.
  context = helper.CreateContextWithCancel(WatchHelper::ContextCallback(),
                                           signal_event);
  EXPECT_EQ(MOJO_RESULT_OK,
            MojoWatch(w, b, MOJO_HANDLE_SIGNAL_READABLE, context));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
  event.Wait();

  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(b));
}

TEST_F(WatcherTest, ArmFailureCirculation) {
  // Sanity check to ensure that all ready handles will eventually be returned
  // over a finite number of calls to MojoArmWatcher().

  constexpr size_t kNumTestPipes = 100;
  constexpr size_t kNumTestHandles = kNumTestPipes * 2;
  MojoHandle handles[kNumTestHandles];

  // Create a bunch of pipes and make sure they're all readable.
  for (size_t i = 0; i < kNumTestPipes; ++i) {
    CreateMessagePipe(&handles[i], &handles[i + kNumTestPipes]);
    WriteMessage(handles[i], "hey");
    WriteMessage(handles[i + kNumTestPipes], "hay");
    WaitForSignals(handles[i], MOJO_HANDLE_SIGNAL_READABLE);
    WaitForSignals(handles[i + kNumTestPipes], MOJO_HANDLE_SIGNAL_READABLE);
  }

  // Create a watcher and watch all of them.
  MojoHandle w;
  EXPECT_EQ(MOJO_RESULT_OK, MojoCreateWatcher(&ExpectOnlyCancel, &w));
  for (size_t i = 0; i < kNumTestHandles; ++i) {
    EXPECT_EQ(MOJO_RESULT_OK,
              MojoWatch(w, handles[i], MOJO_HANDLE_SIGNAL_READABLE, i));
  }

  // Keep trying to arm |w| until every watch gets an entry in |ready_contexts|.
  // If MojoArmWatcher() is well-behaved, this should terminate eventually.
  std::set<uintptr_t> ready_contexts;
  while (ready_contexts.size() < kNumTestHandles) {
    uint32_t num_ready_contexts = 1;
    uintptr_t ready_context;
    MojoResult ready_result;
    MojoHandleSignalsState ready_state;
    EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
              MojoArmWatcher(w, &num_ready_contexts, &ready_context,
                             &ready_result, &ready_state));
    EXPECT_EQ(1u, num_ready_contexts);
    EXPECT_EQ(MOJO_RESULT_OK, ready_result);
    ready_contexts.insert(ready_context);
  }

  for (size_t i = 0; i < kNumTestHandles; ++i)
    EXPECT_EQ(MOJO_RESULT_OK, MojoClose(handles[i]));
  EXPECT_EQ(MOJO_RESULT_OK, MojoClose(w));
}

}  // namespace
}  // namespace edk
}  // namespace mojo