aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Database/Tests/Integration/FData.m
blob: 390522cf889f8aefea49bd0fd1cf0a477a15eeb9 (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
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
/*
 * Copyright 2017 Google
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#import "FData.h"
#import "FTestHelpers.h"
#import "FEventTester.h"
#import "FTupleEventTypeString.h"
#import "FIRApp.h"
#import "FIRDatabaseQuery_Private.h"
#import "FIRDatabaseConfig_Private.h"
#import "FIROptions.h"
#import "FRepo_Private.h"
#import <limits.h>

@implementation FData

- (void) testGetNode {
    __unused FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    XCTAssertTrue(YES, @"Properly created node without throwing error");
}

- (void) testWriteData {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    [node setValue:@42];
    XCTAssertTrue(YES, @"Properly write to node without throwing error");
}

- (void) testWriteDataWithDebugLogging {
    [FIRDatabase setLoggingEnabled:YES];
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    [node setValue:@42];
    [FIRDatabase setLoggingEnabled:NO];
    XCTAssertTrue(YES, @"Properly write to node without throwing error");
}

- (void) testWriteAndReadData {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    [node setValue:@42];
    
    [self snapWaiter:node withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertEqualObjects(@42, [snapshot value], @"Properly saw correct value");
    }];
}

- (void) testProperParamChecking {
    // ios doesn't have an equivalent of this test
}

- (void) testNamespaceCaseInsensitivityWithinARepo {
    FIRDatabaseReference * ref1 = [[FIRDatabase database] referenceFromURL:[self.databaseURL uppercaseString]];
    FIRDatabaseReference * ref2 = [[FIRDatabase database] referenceFromURL:[self.databaseURL lowercaseString]];

    XCTAssertTrue([ref1.description isEqualToString:ref2.description], @"Descriptions should match");
}

- (void) testRootProperty {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    FIRDatabaseReference * root = node.root;
    XCTAssertTrue(root != nil, @"Should get a root");
    XCTAssertTrue([[root description] isEqualToString:self.databaseURL], @"Root is actually the root");
}

- (void) testValReturnsCompoundObjectWithChildren {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    [node setValue:@{@"foo": @{@"bar": @5}}];
    
    [self snapWaiter:node withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertEqualObjects([[[snapshot value] objectForKey:@"foo"] objectForKey:@"bar"], @5, @"Properly saw compound object");
    }];
}

- (void) testWriteDataAndWaitForServerConfirmation {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];

    [self waitForCompletionOf:node setValue:@42];
}

- (void) testWriteAValueAndRead {
    // dupe of FEvent testWriteLeafExpectValueChanged
}

- (void) testWriteABunchOfDataAndRead {
    FTupleFirebase* tuple = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writeNode = tuple.one;
    FIRDatabaseReference * readNode = tuple.two;

    
    __block BOOL done = NO;
    
    [[[[writeNode child:@"a"] child:@"b"] child:@"c"] setValue:@1];
    [[[[writeNode child:@"a"] child:@"d"] child:@"e"] setValue:@2];
    [[[[writeNode child:@"a"] child:@"d"] child:@"f"] setValue:@3];
    [[writeNode child:@"g"] setValue:@4 withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) { done = YES; }];
    
    [self waitUntil:^BOOL{ return done; }];
    
    [super snapWaiter:readNode withBlock:^(FIRDataSnapshot *s) {
        XCTAssertEqualObjects([[[[s childSnapshotForPath:@"a"] childSnapshotForPath:@"b"] childSnapshotForPath:@"c"] value], @1, @"Proper child value");
        XCTAssertEqualObjects([[[[s childSnapshotForPath:@"a"] childSnapshotForPath:@"d"] childSnapshotForPath:@"e"] value], @2, @"Proper child value");
        XCTAssertEqualObjects([[[[s childSnapshotForPath:@"a"] childSnapshotForPath:@"d"] childSnapshotForPath:@"f"] value], @3, @"Proper child value");
        XCTAssertEqualObjects([[s childSnapshotForPath:@"g"] value], @4, @"Proper child value");
    }];
}

- (void) testWriteABunchOfDataWithLeadingZeroesAndRead {
    FTupleFirebase* tuple = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writeNode = tuple.one;
    FIRDatabaseReference * readNode = tuple.two;

    [self waitForCompletionOf:[writeNode child:@"1"] setValue:@1];
    [self waitForCompletionOf:[writeNode child:@"01"] setValue:@2];
    [self waitForCompletionOf:[writeNode child:@"001"] setValue:@3];
    [self waitForCompletionOf:[writeNode child:@"0001"] setValue:@4];

    [super snapWaiter:readNode withBlock:^(FIRDataSnapshot *s) {
        XCTAssertEqualObjects([[s childSnapshotForPath:@"1"] value], @1, @"Proper child value");
        XCTAssertEqualObjects([[s childSnapshotForPath:@"01"] value], @2, @"Proper child value");
        XCTAssertEqualObjects([[s childSnapshotForPath:@"001"] value], @3, @"Proper child value");
        XCTAssertEqualObjects([[s childSnapshotForPath:@"0001"] value], @4, @"Proper child value");
    }];
}

- (void) testLeadingZeroesTurnIntoDictionary {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    [self waitForCompletionOf:[ref child:@"1"] setValue:@1];
    [self waitForCompletionOf:[ref child:@"01"] setValue:@2];

    __block BOOL done = NO;
    __block FIRDataSnapshot * snap = nil;

    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
        done = YES;
    }];

    WAIT_FOR(done);

    XCTAssertTrue([snap.value isKindOfClass:[NSDictionary class]], @"Should be dictionary");
    XCTAssertEqualObjects([snap.value objectForKey:@"1"], @1, @"Proper child value");
    XCTAssertEqualObjects([snap.value objectForKey:@"01"], @2, @"Proper child value");
}

- (void) testLeadingZerosDontCollapseLocally {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    __block BOOL done = NO;
    __block FIRDataSnapshot * snap = nil;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
        done = (snapshot.childrenCount == 2);
    }];

    [[ref child:@"3"] setValue:@YES];
    [[ref child:@"03"] setValue:@NO];

    WAIT_FOR(done);

    XCTAssertEqualObjects([[snap childSnapshotForPath:@"3"] value], @YES, @"Proper child value");
    XCTAssertEqualObjects([[snap childSnapshotForPath:@"03"] value], @NO, @"Proper child value");
}

- (void) testSnapshotRef {
    FIRDatabaseReference *ref = [FTestHelpers getRandomNode];

    __block BOOL done = NO;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        [snapshot.ref observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            done = YES;
        }];
    }];
    WAIT_FOR(done);
}

- (void) testWriteLeafNodeOverwriteAtParentVerifyExpectedEvents {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];

    FIRDatabaseReference * connected = [[[FIRDatabase database] reference] child:@".info/connected"];
    __block BOOL ready = NO;
    [connected observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSNumber *val = [snapshot value];
        ready = [val boolValue];
    }];

    WAIT_FOR(ready);

    NSArray* lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],     // 4
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeChildAdded withString:@"aa"], // 0
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],     // 4
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeChildChanged withString:@"aa"], // 2
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],        // 4
    ];

    [[node repo] interrupt]; // Going offline ensures that local events get queued up before server events
    FEventTester* et = [[FEventTester alloc] initFrom:self];
    [et addLookingFor:lookingFor];

    [[node child:@"a/aa"] setValue:@1];
    [[node child:@"a"] setValue:@{@"aa": @2}];

    [[node repo] resume];
    [et wait];
}

- (void) testWriteLeafNodeOverwriteAtParentMultipleTimesVerifyExpectedEvents {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];

    NSArray* lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeChildAdded withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/bb"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeChildChanged withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeChildChanged withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
    ];

    [[node repo] interrupt]; // Going offline ensures that local events get queued up before server events
    FEventTester* et = [[FEventTester alloc] initFrom:self];
    [et addLookingFor:lookingFor];
    
    [[node child:@"a/aa"] setValue:@1];
    [[node child:@"a"] setValue:@{@"aa": @2}];
    [[node child:@"a"] setValue:@{@"aa": @3}];
    [[node child:@"a"] setValue:@{@"aa": @3}];

    [[node repo] resume];
    [et wait];
}

- (void) testWriteParentNodeOverwriteAtLeafVerifyExpectedEvents {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];

    NSArray* lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeChildAdded withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeChildChanged withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
    ];

    [[node repo] interrupt]; // Going offline ensures that local events get queued up before server events
    FEventTester* et = [[FEventTester alloc] initFrom:self];
    [et addLookingFor:lookingFor];

    [[node child:@"a"] setValue:@{@"aa": @2}];
    [[node child:@"a/aa"] setValue:@1];

    [[node repo] resume];
    [et wait];
}

- (void) testWriteLeafNodeRemoveParentNodeVerifyExpectedEvents {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    NSArray* lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeChildAdded withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeChildAdded withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeValue withString:nil],
    ];
    FEventTester* et = [[FEventTester alloc] initFrom:self];
    [et addLookingFor:lookingFor];

    [[writer child:@"a/aa"] setValue:@42];
    // the local events
    [et wait];

    // the reader should get all of the events intermingled
    FEventTester* readerEvents = [[FEventTester alloc] initFrom:self];
    lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeChildAdded withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeChildAdded withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeValue withString:nil]
    ];

    [readerEvents addLookingFor:lookingFor];

    [readerEvents wait];

    lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeChildRemoved withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeChildRemoved withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeValue withString:nil]
    ];
    [readerEvents addLookingFor:lookingFor];

    lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeChildRemoved withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeChildRemoved withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeValue withString:nil]
    ];

    [et addLookingFor:lookingFor];

    [[writer child:@"a"] removeValue];

    [et wait];
    [readerEvents wait];

    [et unregister];
    [readerEvents unregister];

    // Ensure we can write a new value
    __block NSNumber* readVal = @0.0;
    __block NSNumber* writeVal = @0.0;

    [[reader child:@"a/aa"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        if (val != [NSNull null]) {
            readVal = val;
        }
    }];

    [[writer child:@"a/aa"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        if (val != [NSNull null]) {
            writeVal = val;
        }
    }];

    [[writer child:@"a/aa"] setValue:@3.1415];

    [self waitUntil:^BOOL{
        return fabs([readVal doubleValue] - 3.1415) < 0.001 && fabs([writeVal doubleValue] - 3.1415) < 0.001;
        //return [readVal isEqualToNumber:@3.1415] && [writeVal isEqualToNumber:@3.1415];
    }];
}

- (void) testWriteLeafNodeRemoveLeafVerifyExpectedEvents {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    NSArray* lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeChildAdded withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeChildAdded withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeValue withString:nil],
    ];
    FEventTester* et = [[FEventTester alloc] initFrom:self];
    [et addLookingFor:lookingFor];
    [[writer child:@"a/aa"] setValue:@42];

    // the local events
    [et wait];

    // the reader should get all of the events intermingled
    FEventTester* readerEvents = [[FEventTester alloc] initFrom:self];
    lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeChildAdded withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeChildAdded withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeValue withString:nil]
    ];

    [readerEvents addLookingFor:lookingFor];

    [readerEvents wait];

    lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeChildRemoved withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeChildRemoved withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeValue withString:nil]
    ];
    [readerEvents addLookingFor:lookingFor];

    lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeChildRemoved withString:@"aa"],
            [[FTupleEventTypeString alloc] initWithFirebase:[writer child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeChildRemoved withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:writer withEvent:FIRDataEventTypeValue withString:nil]
    ];

    [et addLookingFor:lookingFor];

    // remove just the leaf
    [[writer child:@"a/aa"] removeValue];

    [et wait];
    [readerEvents wait];

    [et unregister];
    [readerEvents unregister];

    // Ensure we can write a new value
    __block NSNumber* readVal = @0.0;
    __block NSNumber* writeVal = @0.0;

    [[reader child:@"a/aa"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        if (val != [NSNull null]) {
            readVal = val;
        }
    }];

    [[writer child:@"a/aa"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        if (val != [NSNull null]) {
            writeVal = val;
        }
    }];

    [[writer child:@"a/aa"] setValue:@3.1415];

    [self waitUntil:^BOOL{
        //NSLog(@"readVal: %@, writeVal: %@, vs %@", readVal, writeVal, @3.1415);
        //return [readVal isEqualToNumber:@3.1415] && [writeVal isEqualToNumber:@3.1415];
        return fabs([readVal doubleValue] - 3.1415) < 0.001 && fabs([writeVal doubleValue] - 3.1415) < 0.001;
    }];
}

- (void) testWriteMultipleLeafNodesRemoveOnlyOneVerifyExpectedEvents {
    // XXX impl
}

- (void) testVerifyNodeNamesCantStartWithADot {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    XCTAssertThrows([ref child:@".foo"], @"not a valid .prefix");
    XCTAssertThrows([ref child:@"foo/.foo"], @"not a valid path");
    // Should not throw
    [[ref parent] child:@".info"];
}

- (void) testVerifyWritingToDotLengthAndDotKeysThrows {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    XCTAssertThrows([[ref child:@".keys"] setValue:@42], @"not a valid .prefix");
    XCTAssertThrows([[ref child:@".length"] setValue:@42], @"not a valid path");
}

- (void) testNumericKeysGetTurnedIntoArrays {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    [[ref child:@"0"] setValue:@"alpha"];
    [[ref child:@"1"] setValue:@"bravo"];
    [[ref child:@"2"] setValue:@"charlie"];
    [[ref child:@"3"] setValue:@"delta"];
    [[ref child:@"4"] setValue:@"echo"];

    __block BOOL ready = NO;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        XCTAssertTrue([val isKindOfClass:[NSArray class]], @"Expected an array");
        NSArray *expected = @[@"alpha", @"bravo", @"charlie", @"delta", @"echo"];
        XCTAssertTrue([expected isEqualToArray:val], @"Did not get the correct array");
        ready = YES;
    }];

    [self waitUntil:^{ return ready; }];
}

// This was an issue on 64-bit.
- (void) testLargeNumericKeysDontGetTurnedIntoArrays {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    [[ref child:@"100003354884401"] setValue:@"alpha"];

    __block BOOL ready = NO;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        XCTAssertTrue([val isKindOfClass:[NSDictionary class]], @"Expected a dictionary.");
        ready = YES;
    }];

    [self waitUntil:^{ return ready; }];
}

- (void) testWriteCompoundObjectAndGetItBack {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    NSDictionary* data = @{
        @"a": @{@"aa": @5,
                @"ab": @3},
        @"b": @{@"ba": @"hey there!",
                @"bb": @{@"bba": @NO}},
        @"c": @[@0,
                @{@"c_1": @4},
                @"hey",
                @YES,
                @NO,
                @"dude"]
    };
    
    __block FIRDataSnapshot *snap = nil;
    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];
    
    __block BOOL done = NO;
    [node setValue:data withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) { done = YES; }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    [self snapWaiter:node withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertTrue([[[[snapshot value] objectForKey:@"c"] objectAtIndex:3] boolValue], @"Got proper boolean");
    }];
}

- (void) testCanPassValueToPush {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    FIRDatabaseReference * pushA = [node childByAutoId];
    [pushA setValue:@5];

    [self snapWaiter:pushA withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertEqualObjects(@5, [snapshot value], @"Got proper value");
    }];

    FIRDatabaseReference * pushB = [node childByAutoId];
    [pushB setValue:@{@"a": @5, @"b": @6}];
    
    [self snapWaiter:pushB withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertEqualObjects(@5, [[snapshot value] objectForKey:@"a"], @"Got proper value");
        XCTAssertEqualObjects(@6, [[snapshot value] objectForKey:@"b"], @"Got proper value");
    }];
}

// Dropped test that tested callbacks to push. Support was removed.

- (void) testRemoveCallbackHit {

    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    __block BOOL setDone = NO;
    __block BOOL removeDone = NO;
    __block BOOL readDone = NO;
    
    [node setValue:@42 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        setDone = YES;
    }];

    [self waitUntil:^BOOL{
        return setDone;
    }];

    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        if (val == [NSNull null]) {
            readDone = YES;
        }
    }];

    [node removeValueWithCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        XCTAssertTrue(error == nil, @"Should not be an error removing");
        removeDone = YES;
    }];

    [self waitUntil:^BOOL{
        return readDone && removeDone;
    }];         
}

- (void) testRemoveCallbackIsHitForNodesThatAreAlreadyRemoved {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    __block int removes = 0;
    
    [node removeValueWithCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        removes = removes + 1;
    }];
    
    [node removeValueWithCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        removes = removes + 1;
    }];
    
    [self waitUntil:^BOOL{
        return removes == 2;
    }];
}

- (void) testUsingNumbersAsKeysDoesntCreateHugeSparseArrays {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    [[ref child:@"3024"] setValue:@5];

    __block BOOL ready = NO;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        XCTAssertTrue(![val isKindOfClass:[NSArray class]], @"Should not be an array");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testOnceWithACallbackHitsServer {
    FTupleFirebase* tuple = [FTestHelpers getRandomNodeTriple];
    FIRDatabaseReference * writeNode = tuple.one;
    FIRDatabaseReference * readNode = tuple.two;
    FIRDatabaseReference * readNodeB = tuple.three;
    
    __block BOOL initialReadDone = NO;

    [readNode observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertTrue([[snapshot value] isEqual:[NSNull null]], @"First callback is null");
        initialReadDone = YES;
    }];
    
    [self waitUntil:^BOOL{
        return initialReadDone;
    }];
    
    __block BOOL writeDone = NO;
    
    [writeNode setValue:@42 withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        writeDone = YES;
    }];
    
    [self waitUntil:^BOOL{
        return writeDone;
    }];
    
    __block BOOL readDone = NO;

    [readNodeB observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertEqualObjects(@42, [snapshot value], @"Proper second read");
        readDone = YES;
    }];
    
    [self waitUntil:^BOOL{
        return readDone;
    }];
}

// Removed test of forEach aborting iteration. Support dropped, use for .. in syntax

- (void) testSetAndThenListenForValueEventsAreCorrect {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    __block BOOL setDone = NO;
    
    [node setValue:@"moo" withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        setDone = YES;
    }];
    
    __block int calls = 0;

    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        calls = calls + 1;
        XCTAssertTrue(calls == 1, @"Only called once");
        XCTAssertEqualObjects([snapshot value], @"moo", @"Proper snapshot value");
    }];
    
    [self waitUntil:^BOOL{
        return setDone && calls == 1;
    }];
}

- (void) testHasChildrenWorksCorrectly {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    [node setValue:@{@"one" : @42, @"two": @{@"a": @5}, @"three": @{@"a": @5, @"b": @6}}];
    
    __block BOOL removedTwo = NO;
    __block BOOL done = NO;

    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        if (!removedTwo) {
            XCTAssertFalse([[snapshot childSnapshotForPath:@"one"] hasChildren], @"nope");
            XCTAssertTrue([[snapshot childSnapshotForPath:@"two"] hasChildren], @"nope");
            XCTAssertTrue([[snapshot childSnapshotForPath:@"three"] hasChildren], @"nope");
            XCTAssertFalse([[snapshot childSnapshotForPath:@"four"] hasChildren], @"nope");

            removedTwo = YES;
            [[node child:@"two"] removeValue];
        }
        else {
            XCTAssertFalse([[snapshot childSnapshotForPath:@"two"] hasChildren], @"Second time around");
            done = YES;
        }
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
}

- (void) testNumChildrenWorksCorrectly {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    [node setValue:@{@"one" : @42, @"two": @{@"a": @5}, @"three": @{@"a": @5, @"b": @6}}];
    
    __block BOOL removedTwo = NO;
    __block BOOL done = NO;

    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        if (!removedTwo) {
            XCTAssertTrue([snapshot childrenCount] == 3, @"Total children");
            XCTAssertTrue([[snapshot childSnapshotForPath:@"one"] childrenCount] == 0, @"Two's children");
            XCTAssertTrue([[snapshot childSnapshotForPath:@"two"] childrenCount] == 1, @"Two's children");
            XCTAssertTrue([[snapshot childSnapshotForPath:@"three"] childrenCount] == 2, @"Two's children");
            XCTAssertTrue([[snapshot childSnapshotForPath:@"four"] childrenCount] == 0, @"Two's children");

            removedTwo = YES;
            [[node child:@"two"] removeValue];
        }
        else {
            XCTAssertTrue([snapshot childrenCount] == 2, @"Total children");
            XCTAssertTrue([[snapshot childSnapshotForPath:@"two"] childrenCount] == 0, @"Two's children");
            done = YES;
        }
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
}

- (void) testSettingANodeWithChildrenToAPrimitiveAndBack {
    // Can't tolerate stale data; so disable persistence.
    FTupleFirebase* tuple = [FTestHelpers getRandomNodePairWithoutPersistence];
    FIRDatabaseReference * writeNode = tuple.one;
    FIRDatabaseReference * readNode = tuple.two;
    
    __block BOOL done = NO;
    
    NSDictionary* compound = @{@"a": @5, @"b": @6};
    NSNumber* number = @76;
    
    [writeNode setValue:compound];
    
    [self snapWaiter:writeNode withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertTrue([snapshot hasChildren], @"Has children");
        XCTAssertEqualObjects(@5, [[snapshot childSnapshotForPath:@"a"] value], @"First child");
        XCTAssertEqualObjects(@6, [[snapshot childSnapshotForPath:@"b"] value], @"First child");
        done = YES;
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    done = NO;
    
    [self snapWaiter:readNode withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertTrue([snapshot hasChildren], @"has children");
        XCTAssertEqualObjects(@5, [[snapshot childSnapshotForPath:@"a"] value], @"First child");
        XCTAssertEqualObjects(@6, [[snapshot childSnapshotForPath:@"b"] value], @"First child");
        done = YES;
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    done = NO;

    
    [writeNode setValue:number withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        done = YES;
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    done = NO;
    
    [self snapWaiter:readNode withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertFalse([snapshot hasChildren], @"No more children");
        XCTAssertEqualObjects(number, [snapshot value], @"Proper non compound value");
        done = YES;
    }];

    [self waitUntil:^BOOL{
        return done;
    }];
    
    done = NO;
    
    [writeNode setValue:compound withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        done = YES;
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    done = NO;
    
    [self snapWaiter:readNode withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertTrue([snapshot hasChildren], @"Has children");
        XCTAssertEqualObjects(@5, [[snapshot childSnapshotForPath:@"a"] value], @"First child");
        XCTAssertEqualObjects(@6, [[snapshot childSnapshotForPath:@"b"] value], @"First child");
        done = YES;
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    XCTAssertTrue(done, @"Properly finished");
}

- (void) testWriteLeafRemoveLeafAddChildToRemovedNode {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@5];
    [writer removeValue];
    [[writer child:@"abc"] setValue:@5 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    __block NSDictionary* readVal = nil;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        readVal = [snapshot value];
    }];

    [self waitUntil:^BOOL{
        return readVal != nil;
    }];

    NSNumber* five = [readVal objectForKey:@"abc"];
    XCTAssertTrue([five isEqualToNumber:@5], @"Should get 5");
}

- (void) testListenForValueAndThenWriteOnANodeWithExistingData {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    [self waitForCompletionOf:writer setValue:@{@"a": @5, @"b": @2}];

    __block int calls = 0;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        calls++;
        if (calls == 1) {
            NSDictionary *val = [snapshot value];
            NSDictionary *expected = @{@"a" : @10, @"b" : @2};
            XCTAssertTrue([val isEqualToDictionary:expected], @"Got the correct value");
        } else {
            XCTFail(@"Should only be called once");
        }
    }];

    [[reader child:@"a"] setValue:@10];
    [self waitUntil:^BOOL{
        return calls == 1;
    }];
}

- (void) testSetPriorityOnNonexistentNodeFails {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    __block BOOL ready = NO;
    [ref setPriority:@5 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        XCTAssertTrue(error != nil, @"This should not succeed");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testSetPriorityOnExistentNodeSucceeds {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    __block BOOL ready = NO;
    [ref setValue:@"hello!"];
    [ref setPriority:@5 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        XCTAssertTrue(error == nil, @"This should succeed");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testSetWithPrioritySetsValueAndPriority {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    [self waitForCompletionOf:writer setValue:@"hello" andPriority:@5];

    __block FIRDataSnapshot * writeSnap = nil;
    __block FIRDataSnapshot * readSnap = nil;
    [writer observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        writeSnap = snapshot;
    }];
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        readSnap = snapshot;
    }];

    [self waitUntil:^BOOL{
        return readSnap != nil && writeSnap != nil;
    }];

    XCTAssertTrue([@"hello" isEqualToString:[readSnap value]], @"Got the value on the reader");
    XCTAssertTrue([@"hello" isEqualToString:[writeSnap value]], @"Got the value on the writer");
    XCTAssertTrue([@5 isEqualToNumber:[readSnap priority]], @"Got the priority on the reader");
    XCTAssertTrue([@5 isEqualToNumber:[writeSnap priority]], @"Got the priority on the writer");
}

- (void) testEffectsOfSetPriorityIsImmediatelyEvident {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    NSMutableArray* values = [[NSMutableArray alloc] init];
    NSMutableArray* priorities = [[NSMutableArray alloc] init];

    [ref observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        [values addObject:[snapshot value]];
        [priorities addObject:[snapshot priority]];
    }];
    [ref setValue:@5];
    [ref setPriority:@10];
    __block BOOL ready = NO;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        [values addObject:[snapshot value]];
        [priorities addObject:[snapshot priority]];
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    NSArray* expectedValues = @[@5, @5];
    NSArray* expectedPriorites = @[[NSNull null], @10];
    XCTAssertTrue([values isEqualToArray:expectedValues], @"Expected both listeners to get 5, got %@ instead", values);
    XCTAssertTrue([priorities isEqualToArray:expectedPriorites], @"The first listener should have missed the priority, got %@ instead", priorities);
}

- (void) testSetOverwritesPriorityOfTopLevelNodeAndSubnodes {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@{@"a": @5}];
    [writer setPriority:@10];
    [[writer child:@"a"] setPriority:@18];
    [writer setValue:@{@"a": @7} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id pri = [snapshot priority];
        XCTAssertTrue([NSNull null] == pri, @"Expected null priority");
        FIRDataSnapshot *child = [snapshot childSnapshotForPath:@"a"];
        XCTAssertTrue([NSNull null] == [child priority], @"Child priority should be null too");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testSetPriorityOfLeafSavesCorrectly {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@"testleaf" andPriority:@992 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id pri = [snapshot priority];
        XCTAssertTrue([@992 isEqualToNumber:pri], @"Expected non-null priority");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testSetPriorityOfObjectSavesCorrectly {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@{@"a": @5} andPriority:@991 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id pri = [snapshot priority];
        XCTAssertTrue([@991 isEqualToNumber:pri], @"Expected non-null priority");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}


- (void) testSetWithPriorityFollowedBySetClearsPriority {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@{@"a": @5} andPriority:@991 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [reader setValue:@{@"a": @19} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id pri = [snapshot priority];
        XCTAssertTrue([NSNull null] == pri, @"Expected null priority");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testGetPriorityReturnsCorrectType {
    FIRDatabaseReference *ref = [FTestHelpers getRandomNode];
    __block FIRDataSnapshot * snap = nil;

    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];

    [ref setValue:@"a"];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([snap priority] == [NSNull null], @"Expect null priority");
    snap = nil;

    [ref setValue:@"b" andPriority:@5];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([[snap priority] isEqualToNumber:@5], @"Expect priority");
    snap = nil;

    [ref setValue:@"c" andPriority:@"6"];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([[snap priority] isEqualToString:@"6"], @"Expect priority");
    snap = nil;

    [ref setValue:@"d" andPriority:@7];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([[snap priority] isEqualToNumber:@7], @"Expect priority");
    snap = nil;

    [ref setValue:@{@".value": @"e", @".priority": @8}];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([[snap priority] isEqualToNumber:@8], @"Expect priority");
    snap = nil;

    [ref setValue:@{@".value": @"f", @".priority": @"8"}];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([[snap priority] isEqualToString:@"8"], @"Expect priority");
    snap = nil;

    [ref setValue:@{@".value": @"e", @".priority": [NSNull null]}];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([snap priority] == [NSNull null], @"Expect priority");
    snap = nil;

}

- (void) testExportValIncludesPriorities {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    NSDictionary* contents = @{@"foo": @{@"bar": @{@".value": @5, @".priority": @7}, @".priority": @"hi"}};
    __block FIRDataSnapshot * snap = nil;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];
    [ref setValue:contents];

    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([contents isEqualToDictionary:[snap valueInExportFormat]], @"Expected priorities in snapshot");
}

- (void) testPriorityIsOverwrittenByServer {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block int event = 0;
    __block BOOL done = NO;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSLog(@"%@ Snapshot", snapshot);
        id pri = [snapshot priority];
        if (event == 0) {
            XCTAssertTrue([@100 isEqualToNumber:pri], @"Expect local priority. Got %@ instead.", pri);
        } else if (event == 1) {
            XCTAssertTrue(pri == [NSNull null], @"Expect remote priority. Got %@ instead.", pri);
        } else {
            XCTFail(@"Extra event");
        }
        event++;
        if (event == 2) {
            done = YES;
        }
    }];

    [writer observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id pri = [snapshot priority];
        if ([[pri class] isSubclassOfClass:[NSNumber class]] && [@100 isEqualToNumber:pri]) {
            [writer setValue:@"whatever"];
        }
    }];

    [reader setValue:@"hi" andPriority:@100];
    [self waitUntil:^BOOL{
        return done;
    }];
}

- (void) testLargeNumericPrioritiesWork {
    NSNumber* bigPriority = @1356721306842;
    __block BOOL ready = NO;
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    [self waitForCompletionOf:writer setValue:@5 andPriority:bigPriority];

    __block NSNumber* serverPriority = @0;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        serverPriority = [snapshot priority];
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    XCTAssertTrue([bigPriority isEqualToNumber:serverPriority], @"Expect big priority back");
}

- (void) testToString {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    FIRDatabaseReference * parent = [ref parent];

    XCTAssertTrue([[parent description] isEqualToString:self.databaseURL], @"Expect domain");
    FIRDatabaseReference * child = [parent child:@"a/b/c"];
    NSString* expected = [NSString stringWithFormat:@"%@/a/b/c", self.databaseURL];
    XCTAssertTrue([[child description] isEqualToString:expected], @"Expected path");
}

- (void) testURLEncodingOfDescriptionAndURLDecodingOfNewFirebase {
    __block BOOL ready = NO;
    NSString* test1 = [NSString stringWithFormat:@"%@/a%%b&c@d/space: /non-ascii_character:ø", self.databaseURL];
    NSString* expected1 = [NSString stringWithFormat:@"%@/a%%25b%%26c%%40d/space%%3A%%20/non-ascii_character%%3A%%C3%%B8", self.databaseURL];
    FIRDatabaseReference * ref = [[FIRDatabase database] referenceFromURL:test1];
    NSString* result = [ref description];
    XCTAssertTrue([result isEqualToString:expected1], @"Encodes properly");

    int rnd = arc4random_uniform(100000000);
    NSString* path = [NSString stringWithFormat:@"%i", rnd];
    [[ref child:path] setValue:@"testdata" withCompletionBlock:^(NSError* error, FIRDatabaseReference * childRef) {
        FIRDatabaseReference * other = [[FIRDatabase database] referenceFromURL:[ref description]];
        [[other child:path] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            NSString *val = snapshot.value;
            XCTAssertTrue([val isEqualToString:@"testdata"], @"Expected to get testdata back");
            ready = YES;
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testNameAtRootAndNonRootLocations {
    FIRDatabaseReference * ref = [[FIRDatabase database] referenceFromURL:self.databaseURL];
    XCTAssertTrue(ref.key == nil, @"Root key should be nil");
    FIRDatabaseReference * child = [ref child:@"a"];
    XCTAssertTrue([child.key isEqualToString:@"a"], @"Should be 'a'");
    FIRDatabaseReference * deeperChild = [child child:@"b/c"];
    XCTAssertTrue([deeperChild.key isEqualToString:@"c"], @"Should be 'c'");
}

- (void) testNameAndRefOnSnapshotsForRootAndNonRootLocations {
    FIRDatabaseReference * ref = [[FIRDatabase database] reference];

    __block BOOL ready = NO;
    [ref removeValueWithCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertTrue(snapshot.key == nil, @"Root snap should not have a key");
        NSString *snapString = [snapshot.ref description];
        XCTAssertTrue([snapString isEqualToString:snapString], @"Refs should be equivalent");
        FIRDataSnapshot *childSnap = [snapshot childSnapshotForPath:@"a"];
        XCTAssertTrue([childSnap.key isEqualToString:@"a"], @"Properly keys children");
        FIRDatabaseReference *childRef = [ref child:@"a"];
        NSString *refString = [childRef description];
        snapString = [childSnap.ref description];
        XCTAssertTrue([refString isEqualToString:snapString], @"Refs should be equivalent");
        childSnap = [childSnap childSnapshotForPath:@"b/c"];
        childRef = [childRef child:@"b/c"];
        XCTAssertTrue([childSnap.key isEqualToString:@"c"], @"properly keys children");
        refString = [childRef description];
        snapString = [childSnap.ref description];
        XCTAssertTrue([refString isEqualToString:snapString], @"Refs should be equivalent");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    // generate value event at root
    [ref setValue:@"foo"];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testParentForRootAndNonRootLocations {
    FIRDatabaseReference * ref = [[FIRDatabase database] reference];

    XCTAssertTrue(ref.parent == nil, @"Parent of root should be nil");

    FIRDatabaseReference * child = [ref child:@"a"];
    XCTAssertTrue([[child.parent description] isEqualToString:[ref description]], @"Should be equivalent locations");
    child = [ref child:@"a/b/c"];
    XCTAssertTrue([[child.parent.parent.parent description] isEqualToString:[ref description]], @"Should be equivalent locations");
}

- (void) testSettingNumericKeysConvertsToStrings {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    NSDictionary* toSet = @{@4: @"hi", @5: @"test"};

    XCTAssertThrows([ref setValue:toSet], @"Keys must be strings");
}

- (void) testSetChildAndListenAtRootRegressionTest {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block BOOL ready = NO;
    [writer removeValue];
    [[writer child:@"foo"] setValue:@"hi" withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            NSDictionary *val = [snapshot value];
            NSDictionary *expected = @{@"foo" : @"hi"};
            XCTAssertTrue([val isEqualToDictionary:expected], @"Got child");
            ready = YES;
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}


- (void) testAccessingInvalidPathsThrows {
    NSArray* badPaths = @[
        @".test",
        @"test.",
        @"fo$o",
        @"[what",
        @"ever]",
        @"ha#sh"
    ];

    for (NSString* key in badPaths) {
        NSString* url = [NSString stringWithFormat:@"%@/%@", self.databaseURL, key];
        XCTAssertThrows(^{
            FIRDatabaseReference * ref = [[FIRDatabase database] referenceFromURL:url];
            XCTFail(@"Should not get here with ref: %@", ref);
        }(), @"should throw");
        url = [NSString stringWithFormat:@"%@/TESTS/%@", self.databaseURL, key];
        XCTAssertThrows(^{
            FIRDatabaseReference * ref = [[FIRDatabase database] referenceFromURL:url];
            XCTFail(@"Should not get here with ref: %@", ref);
        }(), @"should throw");
    }

    __block BOOL ready = NO;
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        for (NSString *key in badPaths) {
            XCTAssertThrows([snapshot childSnapshotForPath:key], @"should throw");
            XCTAssertThrows([snapshot hasChild:key], @"should throw");
        }
        ready = YES;
    }];
    [ref setValue:nil];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testSettingObjectsAtInvalidKeysThrow {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    NSArray* badPaths = @[
        @".test",
        @"test.",
        @"fo$o",
        @"[what",
        @"ever]",
        @"ha#sh",
        @"/thing",
        @"th/ing",
        @"thing/"
    ];
    NSMutableArray* badObjs = [[NSMutableArray alloc] init];
    for (NSString* key in badPaths) {
        [badObjs addObject:@{key: @"test"}];
        [badObjs addObject:@{@"deeper": @{key: @"test"}}];
    }

    for (NSDictionary* badObj in badObjs) {
        XCTAssertThrows([ref setValue:badObj], @"Should throw");
        XCTAssertThrows([ref setValue:badObj andPriority:@5], @"Should throw");
        XCTAssertThrows([ref onDisconnectSetValue:badObj], @"Should throw");
        XCTAssertThrows([ref onDisconnectSetValue:badObj andPriority:@5], @"Should throw");
        // XXX transaction
    }
}

- (void) testSettingInvalidObjectsThrow {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    
    XCTAssertThrows([ref setValue:[NSDate date]], @"Should throw");

    NSDictionary *data = @{@"invalid":@"data", @".sv":@"timestamp"};
    XCTAssertThrows([ref setValue:data], @"Should throw");

    data = @{@".value": @{}};
    XCTAssertThrows([ref setValue:data], @"Should throw");
}

- (void) testInvalidUpdateThrow {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    NSArray *badUpdates = @[
                            @{@"/":@"t", @"a":@"t"},
                            @{@"a":@"t", @"a/b":@"t"},
                            @{@"/a":@"t", @"a/b":@"t"},
                            @{@"/a/b":@"t", @"a":@"t"},
                            @{@"/a/b/.priority":@"t", @"/a/b":@"t"},
                            @{@"/a/b/.sv":@"timestamp"},
                            @{@"/a/b/.value":@"t"},
                            @{@"/a/b/.priority":@{@"x": @"y"}}];

    for (NSDictionary* update in badUpdates) {
       XCTAssertThrows([ref updateChildValues:update], @"Should throw");
       XCTAssertThrows([ref onDisconnectUpdateChildValues:update], @"Should throw");
    }
}

- (void) testSettingNull {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    
    XCTAssertNoThrow([ref setValue:nil], @"Should not throw");
    XCTAssertNoThrow([ref setValue:[NSNull null]], @"Should not throw");
}

- (void) testSettingNaN {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    XCTAssertThrows([ref setValue:[NSDecimalNumber notANumber]], @"Should throw");
}

- (void) testSettingInvalidPriority {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];
    XCTAssertThrows([ref setValue:@"3" andPriority:[NSDecimalNumber notANumber]], @"Should throw");
    XCTAssertThrows([ref setValue:@"4" andPriority:@{}], @"Should throw");
    XCTAssertThrows([ref setValue:@"5" andPriority:@[]], @"Should throw");
}

- (void) testRemoveFromOnMobileGraffitiBugAtAngelHack {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    __block BOOL done = NO;

    [node observeEventType:FIRDataEventTypeChildAdded withBlock:^(FIRDataSnapshot *snapshot) {
        [[node child:[snapshot key]] removeValueWithCompletionBlock:^(NSError *err, FIRDatabaseReference *ref) {
            done = YES;
        }];
    }];
    
    [[node childByAutoId] setValue:@"moo"];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    XCTAssertTrue(done, @"Properly finished");
}

- (void) testSetANodeWithAQuotedKey {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    __block BOOL done = NO;
    __block FIRDataSnapshot * snap;

    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];
    
    [node setValue:@{@"\"herp\"": @1234} withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        done = YES;
        XCTAssertEqualObjects(@1234, [[snap childSnapshotForPath:@"\"herp\""] value], @"Got it back");
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    XCTAssertTrue(done, @"Properly finished");
}

- (void) testSetANodeWithASingleQuoteKey {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    __block BOOL done = NO;
    __block FIRDataSnapshot * snap;

    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];
    
    [node setValue:@{@"\"": @1234} withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) {
        done = YES;
        XCTAssertEqualObjects(@1234, [[snap childSnapshotForPath:@"\""] value], @"Got it back");
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];

    XCTAssertTrue(done, @"Properly finished");
}

- (void) testEmptyChildGetValueEventBeforeParent {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    NSArray* lookingFor = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa/aaa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a/aa"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
    ];
    
    FEventTester* et = [[FEventTester alloc] initFrom:self];
    [et addLookingFor:lookingFor];
    
    [node setValue:@{@"b": @5}];
    
    [et wait];

}

// iOS behavior is different from what the recursive set test looks for. We don't raise events synchronously

- (void) testOnAfterSetWaitsForLatestData {
    // We test here that we don't cache sets, but they would be persisted so make sure we are running without
    // persistence
    FTupleFirebase* refs = [FTestHelpers getRandomNodePairWithoutPersistence];
    FIRDatabaseReference * node1 = refs.one;
    FIRDatabaseReference * node2 = refs.two;

    __block BOOL ready = NO;
    [node1 setValue:@5 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        [node2 setValue:@42 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
            ready = YES;
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;

    [node1 observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSNumber *val = [snapshot value];
        XCTAssertTrue([val isEqualToNumber:@42], @"Should not have cached earlier set");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testOnceWaitsForLatestData {
    // Can't tolerate stale data; so disable persistence.
    FTupleFirebase* refs = [FTestHelpers getRandomNodePairWithoutPersistence];
    FIRDatabaseReference * node1 = refs.one;
    FIRDatabaseReference * node2 = refs.two;

    __block BOOL ready = NO;

    [node1 observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        id val = [snapshot value];
        XCTAssertTrue([NSNull null] == val, @"First value should be null");

        [node2 setValue:@5 withCompletionBlock:^(NSError *error, FIRDatabaseReference *ref) {
            [node1 observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
                NSNumber *val = [snapshot value];
                XCTAssertTrue([val isKindOfClass:[NSNumber class]] && [val isEqualToNumber:@5], @"Should get first value");
                ready = YES;
            }];
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [node2 setValue:@42 withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        [node1 observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            NSNumber *val = [snapshot value];
            XCTAssertTrue([val isEqualToNumber:@42], @"Got second number");
            ready = YES;
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testMemoryFreeingOnUnlistenDoesNotCorruptData {
    // Can't tolerate stale data; so disable persistence.
    FTupleFirebase* refs = [FTestHelpers getRandomNodePairWithoutPersistence];
    FIRDatabaseReference * node2 = [[refs.one root] childByAutoId];

    __block BOOL hasRun = NO;
    __block BOOL ready = NO;
    FIRDatabaseHandle handle1 = [refs.one observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        if (!hasRun) {
            hasRun = YES;
            id val = [snapshot value];
            XCTAssertTrue([NSNull null] == val, @"First time should be null");
            [refs.one setValue:@"test" withCompletionBlock:^(NSError *error, FIRDatabaseReference *ref) {
                ready = YES;
            }];
        }
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    [refs.one removeObserverWithHandle:handle1];

    ready = NO;
    [node2 setValue:@"hello" withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        [refs.one observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            NSString *val = [snapshot value];
            XCTAssertTrue([val isEqualToString:@"test"], @"Get back the value we set above");
            [refs.two observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
                NSString *val = [snapshot value];
                XCTAssertTrue([val isEqualToString:@"test"], @"Get back the value we set above");
                ready = YES;
            }];
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    //write {x: 1, y : {t: 2, u: 3}}
    //Listen at /. Then listen at /x/t
    //unlisten at /y/t. Off at /. Once at /. Ensure data is still all there.
    //Once at /y. Ensure data is still all there.
    refs = [FTestHelpers getRandomNodePairWithoutPersistence];

    ready = NO;
    __block FIRDatabaseHandle deeplisten = NSNotFound;
    __block FIRDatabaseHandle slashlisten = NSNotFound;
    __weak FIRDatabaseReference * refOne = refs.one;
    [refs.one setValue:@{@"x": @1, @"y": @{@"t": @2, @"u": @3}} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        slashlisten = [refOne observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            deeplisten = [[refOne child:@"y/t"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
                [[refOne child:@"y/t"] removeObserverWithHandle:deeplisten];
                [refOne removeObserverWithHandle:slashlisten];
                ready = YES;
            }];
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [[refs.one child:@"x"] setValue:@"test" withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        [refs.one observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            NSDictionary *val = [snapshot value];
            NSDictionary *expected = @{@"x" : @"test", @"y" : @{@"t" : @2, @"u" : @3}};
            XCTAssertTrue([val isEqualToDictionary:expected], @"Got the final value");
            ready = YES;
        }];
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testUpdateRaisesCorrectLocalEvents {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];

    __block FIRDataSnapshot * snap = nil;
    [node observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];

    __block BOOL ready = NO;
    [node setValue:@{@"a": @1, @"b": @2, @"c": @3, @"d": @4} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    FEventTester* et = [[FEventTester alloc] initFrom:self];
    NSArray* expectations = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[node child:@"d"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:node withEvent:FIRDataEventTypeChildChanged withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:node withEvent:FIRDataEventTypeChildChanged withString:@"d"],
            [[FTupleEventTypeString alloc] initWithFirebase:node withEvent:FIRDataEventTypeValue withString:nil]
    ];

    [et addLookingFor:expectations];

    [et waitForInitialization];

    [node updateChildValues:@{@"a": @4, @"d": @1}];

    [et wait];
}

- (void) testUpdateRaisesCorrectRemoteEvents {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@{@"a": @1, @"b": @2, @"c": @3, @"d": @4} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    FEventTester* et = [[FEventTester alloc] initFrom:self];
    NSArray* expectations = @[
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"a"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:[reader child:@"d"] withEvent:FIRDataEventTypeValue withString:nil],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeChildChanged withString:@"a"],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeChildChanged withString:@"d"],
            [[FTupleEventTypeString alloc] initWithFirebase:reader withEvent:FIRDataEventTypeValue withString:nil]
    ];

    [et addLookingFor:expectations];

    [et waitForInitialization];

    [writer updateChildValues:@{@"a": @4, @"d": @1}];

    [et wait];

    ready = NO;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSDictionary *result = [snapshot value];
        NSDictionary *expected = @{@"a" : @4, @"b" : @2, @"c" : @3, @"d" : @1};
        XCTAssertTrue([result isEqualToDictionary:expected], @"Got expected results");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testUpdateChangesAreStoredCorrectlyByTheServer {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    [self waitForCompletionOf:writer setValue:@{@"a": @1, @"b": @2, @"c": @3, @"d": @4}];

    [self waitForCompletionOf:writer updateChildValues:@{@"a": @42}];

    [self snapWaiter:reader withBlock:^(FIRDataSnapshot *snapshot) {
        NSDictionary* result = [snapshot value];
        NSDictionary* expected = @{@"a": @42, @"b": @2, @"c": @3, @"d": @4};
        XCTAssertTrue([result isEqualToDictionary:expected], @"Expected updated value");
    }];
}

- (void) testUpdateDoesntAffectPriorityLocally {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    __block FIRDataSnapshot * snap = nil;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];

    [ref setValue:@{@"a": @1, @"b": @2, @"c": @3} andPriority:@"testpri"];

    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([[snap priority] isEqualToString:@"testpri"], @"Got initial priority");
    snap = nil;

    [ref updateChildValues:@{@"a": @4}];
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    XCTAssertTrue([[snap priority] isEqualToString:@"testpri"], @"Got initial priority");
}

- (void) testUpdateDoesntAffectPriorityRemotely {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@{@"a": @1, @"b": @2, @"c": @3} andPriority:@"testpri" withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [reader observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSString *result = [snapshot priority];
        XCTAssertTrue([result isEqualToString:@"testpri"], @"Expected initial priority");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [writer updateChildValues:@{@"a": @4} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;
    [reader observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSString *result = [snapshot priority];
        XCTAssertTrue([result isEqualToString:@"testpri"], @"Expected initial priority");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testUpdateReplacesChildrenAndIsNotRecursive {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block FIRDataSnapshot * localSnap = nil;
    __block BOOL ready = NO;

    [writer observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        localSnap = snapshot;
    }];

    [writer setValue:@{@"a": @{@"aa": @1, @"ab": @2}}];
    [writer updateChildValues:@{@"a": @{@"aa": @1}} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;

    [reader observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSDictionary *result = [snapshot value];
        NSDictionary *expected = @{@"a" : @{@"aa" : @1}};
        XCTAssertTrue([result isEqualToDictionary:expected], @"Should get new value");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        NSDictionary* result = [localSnap value];
        NSDictionary* expected = @{@"a": @{@"aa": @1}};
        return ready && [result isEqualToDictionary:expected];
    }];
}

- (void) testDeepUpdatesWork {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;
    
    __block FIRDataSnapshot * localSnap = nil;
    __block BOOL ready = NO;

    [writer observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        localSnap = snapshot;
    }];
    
    [writer setValue:@{@"a": @{@"aa": @1, @"ab": @2}}];
    [writer updateChildValues:@{@"a/aa": @10,
                                @".priority": @3.0,
                                @"a/ab": @{@".priority": @2.0,
                                           @".value": @20}}
          withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        ready = YES;
    }];
    
    [self waitUntil:^BOOL{
        return ready;
    }];
    ready = NO;

    [reader observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        NSDictionary *result = [snapshot value];
        NSDictionary *expected = @{@"a" : @{@"aa" : @10, @"ab" : @20}};
        XCTAssertTrue([result isEqualToDictionary:expected], @"Should get new value");
        ready = YES;
    }];
    
    [self waitUntil:^BOOL{
        NSDictionary* result = [localSnap value];
        NSDictionary* expected = @{@"a": @{@"aa": @10, @"ab": @20}};
        return ready && [result isEqualToDictionary:expected];
    }];
}

// Type signature means we don't need a test for updating scalars. They wouldn't compile

- (void) testEmptyUpdateWorks {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    __block BOOL ready = NO;
    [ref updateChildValues:@{} withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        XCTAssertTrue(error == nil, @"Should not be an error");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

// XXX update stress test

- (void) testUpdateFiresCorrectEventWhenAChildIsDeleted {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block FIRDataSnapshot * localSnap = nil;
    __block FIRDataSnapshot * remoteSnap = nil;

    [self waitForCompletionOf:writer setValue:@{@"a": @12, @"b": @6}];
    [writer observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        localSnap = snapshot;
    }];

    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        remoteSnap = snapshot;
    }];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    localSnap = nil;
    remoteSnap = nil;

    [writer updateChildValues:@{@"a": [NSNull null]}];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    NSDictionary* expected = @{@"b": @6};
    XCTAssertTrue([[remoteSnap value] isEqualToDictionary:expected], @"Removed child");
    XCTAssertTrue([[localSnap value] isEqualToDictionary:expected], @"Removed child");
}

- (void) testUpdateFiresCorrectEventOnNewChildren {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block FIRDataSnapshot * localSnap = nil;
    __block FIRDataSnapshot * remoteSnap = nil;

    [[writer child:@"a"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        localSnap = snapshot;
    }];

    [[reader child:@"a"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        remoteSnap = snapshot;
    }];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    localSnap = nil;
    remoteSnap = nil;

    [writer updateChildValues:@{@"a": @42}];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    XCTAssertTrue([[remoteSnap value] isEqualToNumber:@42], @"Added child");
    XCTAssertTrue([[localSnap value] isEqualToNumber:@42], @"Added child");
}

- (void) testUpdateFiresCorrectEventOnDeletedChildren {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block FIRDataSnapshot * localSnap = nil;
    __block FIRDataSnapshot * remoteSnap = nil;
    [self waitForCompletionOf:writer setValue:@{@"a": @12}];
    [[writer child:@"a"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        localSnap = snapshot;
    }];

    [[reader child:@"a"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        remoteSnap = snapshot;
    }];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    localSnap = nil;
    remoteSnap = nil;

    [writer updateChildValues:@{@"a": [NSNull null]}];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    XCTAssertTrue([remoteSnap value] == [NSNull null], @"Removed child");
    XCTAssertTrue([localSnap value]  == [NSNull null], @"Removed child");
}

- (void) testUpdateFiresCorrectEventOnChangedChildren {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    [self waitForCompletionOf:writer setValue:@{@"a": @12}];

    __block FIRDataSnapshot * localSnap = nil;
    __block FIRDataSnapshot * remoteSnap = nil;

    [[writer child:@"a"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        localSnap = snapshot;
    }];

    [[reader child:@"a"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        remoteSnap = snapshot;
    }];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    localSnap = nil;
    remoteSnap = nil;

    [self waitForCompletionOf:writer updateChildValues:@{@"a": @11}];

    [self waitUntil:^BOOL{
        return localSnap != nil && remoteSnap != nil;
    }];

    XCTAssertTrue([[remoteSnap value] isEqualToNumber:@11], @"Changed child");
    XCTAssertTrue([[localSnap value] isEqualToNumber:@11], @"Changed child");
}


- (void) testUpdateOfPriorityWorks {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * reader = refs.one;
    FIRDatabaseReference * writer = refs.two;

    __block BOOL ready = NO;
    [writer setValue:@{@"a": @5, @".priority": @"pri1"}];
    [writer updateChildValues:@{@"a": @6, @".priority": @"pri2", @"b": @{ @".priority": @"pri3", @"c": @10 } } withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        NSLog(@"error? %@", error);
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];

    ready = NO;

    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertEqualObjects([[snapshot childSnapshotForPath:@"a"] value], @6, @"Should match write values");
        XCTAssertTrue([[snapshot priority] isEqualToString:@"pri2"], @"Should get updated priority");
        XCTAssertTrue([[[snapshot childSnapshotForPath:@"b"] priority] isEqualToString:@"pri3"], @"Should get updated priority");
        XCTAssertEqualObjects([[snapshot childSnapshotForPath:@"b/c"] value], @10, @"Should match write values");
        ready = YES;
    }];

    [self waitUntil:^BOOL{
        return ready;
    }];
}

- (void) testSetWithCircularReferenceFails {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    NSMutableDictionary* toSet = [[NSMutableDictionary alloc] init];
    NSDictionary* lol = @{@"foo": @"bar", @"circular": toSet};
    [toSet setObject:lol forKey:@"lol"];

    XCTAssertThrows([ref setValue:toSet], @"Should not be able to set circular dictionary");
}

- (void) testLargeNumbers {
    FIRDatabaseReference * ref = [FTestHelpers getRandomNode];

    long long jsMaxInt = 9007199254740992;
    long jsMaxIntPlusOne = jsMaxInt + 1;
    NSNumber* toSet = [NSNumber numberWithLong:jsMaxIntPlusOne];
    [ref setValue:toSet];

    __block FIRDataSnapshot * snap = nil;
    [ref observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];

    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    NSNumber* result = [snap value];
    XCTAssertTrue([result isEqualToNumber:toSet], @"Should get back same number");

    toSet = [NSNumber numberWithLong:LONG_MAX];
    snap = nil;

    [ref setValue:toSet];
  
    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    result = [snap value];
    XCTAssertTrue([result isEqualToNumber:toSet], @"Should get back same number");

    snap = nil;
    toSet = [NSNumber numberWithDouble:DBL_MAX];
    [ref setValue:toSet];

    [self waitUntil:^BOOL{
        return snap != nil;
    }];

    result = [snap value];
    XCTAssertTrue([result isEqualToNumber:toSet], @"Should get back same number");
}

- (void) testParentDeleteShadowsChildListeners {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * deleter = refs.two;

    NSString* childName = [writer childByAutoId].key;

    __block BOOL called = NO;
    [[deleter child:childName] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertFalse(called, @"Should only be hit once");
        called = YES;
        XCTAssertTrue(snapshot.value == [NSNull null], @"Value should be null");
    }];

    WAIT_FOR(called);

   __block BOOL done = NO;
    [[writer child:childName] setValue:@"foo"];
    [deleter removeValueWithCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        done = YES;
    }];

    WAIT_FOR(done);
}

- (void) testParentDeleteShadowsChildListenersWithNonDefaultQuery {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * deleter = refs.two;

    NSString* childName = [writer childByAutoId].key;

    __block BOOL queryCalled = NO;
    __block BOOL deepChildCalled = NO;
    [[[[deleter child:childName] queryOrderedByPriority] queryStartingAtValue:nil childKey:@"b"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertFalse(queryCalled, @"Should only be hit once");
        queryCalled = YES;
        XCTAssertTrue(snapshot.value == [NSNull null], @"Value should be null");
    }];

    [[[deleter child:childName] child:@"a"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertFalse(deepChildCalled, @"Should only be hit once");
        deepChildCalled = YES;
        XCTAssertTrue(snapshot.value == [NSNull null], @"Value should be null");
    }];

    WAIT_FOR(deepChildCalled && queryCalled);

    __block BOOL done = NO;
    [[writer child:childName] setValue:@"foo"];
    [deleter removeValueWithCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        done = YES;
    }];

    WAIT_FOR(done);
}

- (void) testLocalServerValuesEventuallyButNotImmediatelyMatchServer {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference* writer = refs.one;
    FIRDatabaseReference* reader = refs.two;
    __block int done = 0;

    NSMutableArray* readSnaps = [[NSMutableArray alloc] init];
    NSMutableArray* writeSnaps = [[NSMutableArray alloc] init];

    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        if ([snapshot value] != [NSNull null]) {
            [readSnaps addObject:snapshot];
            if (readSnaps.count == 1) {
                done += 1;
            }
        }
    }];

    [writer observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        if ([snapshot value] != [NSNull null]) {
            [writeSnaps addObject:snapshot];
            if (writeSnaps.count == 2) {
                done += 1;
            }
        }
    }];

    [writer setValue:[FIRServerValue timestamp] andPriority:[FIRServerValue timestamp]];

    [self waitUntil:^BOOL{
        return done == 2;
    }];

    XCTAssertEqual((unsigned long)[readSnaps count], (unsigned long)1, @"Should have received one snapshot on reader");
    XCTAssertEqual((unsigned long)[writeSnaps count], (unsigned long)2, @"Should have received two snapshots on writer");

    FIRDataSnapshot * firstReadSnap = [readSnaps objectAtIndex:0];
    FIRDataSnapshot * firstWriteSnap = [writeSnaps objectAtIndex:0];
    FIRDataSnapshot * secondWriteSnap = [writeSnaps objectAtIndex:1];

    NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];
    XCTAssertTrue([now doubleValue] - [firstWriteSnap.value doubleValue] < 3000, @"Should have received a local event with a value close to timestamp");
    XCTAssertTrue([now doubleValue] - [firstWriteSnap.priority doubleValue] < 3000, @"Should have received a local event with a priority close to timestamp");
    XCTAssertTrue([now doubleValue] - [secondWriteSnap.value doubleValue] < 3000, @"Should have received a server event with a value close to timestamp");
    XCTAssertTrue([now doubleValue] - [secondWriteSnap.priority doubleValue] < 3000, @"Should have received a server event with a priority close to timestamp");

    XCTAssertFalse([firstWriteSnap value] == [secondWriteSnap value], @"Initial and future writer values should be different");
    XCTAssertFalse([firstWriteSnap priority] == [secondWriteSnap priority], @"Initial and future writer priorities should be different");
    XCTAssertEqualObjects(firstReadSnap.value, secondWriteSnap.value, @"Eventual reader and writer values should be equal");
    XCTAssertEqualObjects(firstReadSnap.priority, secondWriteSnap.priority, @"Eventual reader and writer priorities should be equal");
}

- (void) testServerValuesSetWithPriorityRemoteEvents {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    NSDictionary* data = @{
      @"a": [FIRServerValue timestamp],
      @"b": @{
        @".value": [FIRServerValue timestamp],
        @".priority": [FIRServerValue timestamp]
      }
    };
  
    __block BOOL done = NO;
    [writer setValue:data andPriority:[FIRServerValue timestamp] withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) { done = YES; }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    [self snapWaiter:reader withBlock:^(FIRDataSnapshot *snapshot) {
        NSDictionary* value = [snapshot value];
        NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];
        NSNumber* timestamp = [snapshot priority];
        XCTAssertTrue([[snapshot priority] isKindOfClass:[NSNumber class]], @"Should get back number");
        XCTAssertTrue([now doubleValue] - [timestamp doubleValue] < 2000, @"Number should be no more than 2 seconds ago");
        XCTAssertEqualObjects([snapshot priority], [value objectForKey:@"a"], @"Should get back matching ServerValue.TIMESTAMP");
        XCTAssertEqualObjects([snapshot priority], [value objectForKey:@"b"], @"Should get back matching ServerValue.TIMESTAMP");
        XCTAssertEqualObjects([snapshot priority], [[snapshot childSnapshotForPath:@"b"] priority], @"Should get back matching ServerValue.TIMESTAMP");
    }];
}

- (void) testServerValuesSetPriorityRemoteEvents {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block FIRDataSnapshot *snap = nil;
    [reader observeEventType:FIRDataEventTypeChildMoved withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];

    [self waitForCompletionOf:[writer child:@"a"] setValue:@1 andPriority:nil];
    [self waitForCompletionOf:[writer child:@"b"] setValue:@1 andPriority:@1];
    [self waitForValueOf:[reader child:@"a"] toBe:@1];

    __block BOOL done = NO;
    [[writer child:@"a"] setPriority:[FIRServerValue timestamp] withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
        done = YES;
    }];

    [self waitUntil:^BOOL{
        return done && snap != nil;
    }];

    NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];
    NSNumber* timestamp = [snap priority];
    XCTAssertTrue([[snap priority] isKindOfClass:[NSNumber class]], @"Should get back number");
    XCTAssertTrue([now doubleValue] - [timestamp doubleValue] < 2000, @"Number should be no more than 2 seconds ago");
}

- (void) testServerValuesUpdateRemoteEvents {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;
    
    __block FIRDataSnapshot *snap = nil;
    __block BOOL done = NO;
    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
        if (snap && [[snap childSnapshotForPath:@"a/b/d"] value] != [NSNull null]) {
            done = YES;
        }
    }];
  
    [[writer child:@"a/b/c"] setValue:@1];
    [[writer child:@"a"] updateChildValues:@{ @"b": @{ @"c": [FIRServerValue timestamp], @"d":@1 } }];

    [self waitUntil:^BOOL{
        return done;
    }];
  
    NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];
    NSNumber* timestamp = [[snap childSnapshotForPath:@"a/b/c"] value];
    XCTAssertTrue([[[snap childSnapshotForPath:@"a/b/c"] value] isKindOfClass:[NSNumber class]], @"Should get back number");
    XCTAssertTrue([now doubleValue] - [timestamp doubleValue] < 2000, @"Number should be no more than 2 seconds ago");
}

- (void) testServerValuesSetWithPriorityLocalEvents {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];

    NSDictionary* data = @{
      @"a": [FIRServerValue timestamp],
      @"b": @{
        @".value": [FIRServerValue timestamp],
        @".priority": [FIRServerValue timestamp]
      }
    };
    
    __block FIRDataSnapshot *snap = nil;
    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];
  
    __block BOOL done = NO;
    [node setValue:data andPriority:[FIRServerValue timestamp] withCompletionBlock:^(NSError* err, FIRDatabaseReference * ref) { done = YES; }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
    
    [self snapWaiter:node withBlock:^(FIRDataSnapshot *snapshot) {
        NSDictionary* value = [snapshot value];
        NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];
        NSNumber* timestamp = [snapshot priority];
        XCTAssertTrue([[snapshot priority] isKindOfClass:[NSNumber class]], @"Should get back number");
        XCTAssertTrue([now doubleValue] - [timestamp doubleValue] < 2000, @"Number should be no more than 2 seconds ago");
        XCTAssertEqualObjects([snapshot priority], [value objectForKey:@"a"], @"Should get back matching ServerValue.TIMESTAMP");
        XCTAssertEqualObjects([snapshot priority], [value objectForKey:@"b"], @"Should get back matching ServerValue.TIMESTAMP");
        XCTAssertEqualObjects([snapshot priority], [[snapshot childSnapshotForPath:@"b"] priority], @"Should get back matching ServerValue.TIMESTAMP");
    }];
}

- (void) testServerValuesSetPriorityLocalEvents {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    __block FIRDataSnapshot *snap = nil;
    [node observeEventType:FIRDataEventTypeChildMoved withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];

    __block BOOL done = NO;
  
    [[node child:@"a"] setValue:@1 andPriority:nil];
    [[node child:@"b"] setValue:@1 andPriority:@1];
    [[node child:@"a"] setPriority:[FIRServerValue timestamp] withCompletionBlock:^(NSError* error, FIRDatabaseReference * ref) {
      done = YES;
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];

    NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];
    NSNumber* timestamp = [snap priority];
    XCTAssertTrue([[snap priority] isKindOfClass:[NSNumber class]], @"Should get back number");
    XCTAssertTrue([now doubleValue] - [timestamp doubleValue] < 2000, @"Number should be no more than 2 seconds ago");
}

- (void) testServerValuesUpdateLocalEvents {
    FIRDatabaseReference * node1 = [FTestHelpers getRandomNode];
    
    __block FIRDataSnapshot *snap1 = nil;
    [node1 observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap1 = snapshot;
    }];

    __block FIRDataSnapshot *snap2 = nil;
    [node1 observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap2 = snapshot;
    }];

    [node1 runTransactionBlock:^FIRTransactionResult *(FIRMutableData *currentData) {
        [currentData setValue:[FIRServerValue timestamp]];
        return [FIRTransactionResult successWithValue:currentData];
    }];
    
    [self waitUntil:^BOOL{
        return snap1 != nil && snap2 != nil && [snap1 value] != nil  && [snap2 value] != nil;
    }];
  
    NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];

    NSNumber* timestamp1 = [snap1 value];
    XCTAssertTrue([[snap1 value] isKindOfClass:[NSNumber class]], @"Should get back number");
    XCTAssertTrue([now doubleValue] - [timestamp1 doubleValue] < 2000, @"Number should be no more than 2 seconds ago");

    NSNumber* timestamp2 = [snap2 value];
    XCTAssertTrue([[snap2 value] isKindOfClass:[NSNumber class]], @"Should get back number");
    XCTAssertTrue([now doubleValue] - [timestamp2 doubleValue] < 2000, @"Number should be no more than 2 seconds ago");
}

- (void) testServerValuesTransactionLocalEvents {
    FIRDatabaseReference * node = [FTestHelpers getRandomNode];
    
    __block FIRDataSnapshot *snap = nil;
    [node observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        snap = snapshot;
    }];
  
    [[node child:@"a/b/c"] setValue:@1];
    [[node child:@"a"] updateChildValues:@{ @"b": @{ @"c": [FIRServerValue timestamp], @"d":@1 } }];
    
    [self waitUntil:^BOOL{
        return snap != nil && [[snap childSnapshotForPath:@"a/b/d"] value] != nil;
    }];
  
    NSNumber* now = [NSNumber numberWithDouble:round([[NSDate date] timeIntervalSince1970]*1000)];
    NSNumber* timestamp = [[snap childSnapshotForPath:@"a/b/c"] value];
    XCTAssertTrue([[[snap childSnapshotForPath:@"a/b/c"] value] isKindOfClass:[NSNumber class]], @"Should get back number");
    XCTAssertTrue([now doubleValue] - [timestamp doubleValue] < 2000, @"Number should be no more than 2 seconds ago");
}

- (void) testUpdateAfterChildSet {
    FIRDatabaseReference *node = [FTestHelpers getRandomNode];
    
    __block BOOL done = NO;
    __weak FIRDatabaseReference *weakRef = node;
    [node setValue:@{@"a": @"a"} withCompletionBlock:^(NSError *error, FIRDatabaseReference *ref) {
        [weakRef observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
            if (snapshot.childrenCount == 3 && [snapshot hasChild:@"a"] && [snapshot hasChild:@"b"] && [snapshot hasChild:@"c"]) {
                done = YES;
            }
        }];
        
        [[weakRef child:@"b"] setValue:@"b"];
        
        [weakRef updateChildValues:@{@"c" : @"c"}];
    }];
    
    [self waitUntil:^BOOL{
        return done;
    }];
}

- (void) testDeltaSyncNoDataUpdatesAfterReconnect {
    FIRDatabaseReference *ref = [FTestHelpers getRandomNode];
    FIRDatabaseConfig *cfg = [FIRDatabaseConfig configForName:@"test-config"];
    FIRDatabaseReference * ref2 = [[[FIRDatabaseReference alloc] initWithConfig:cfg] child:ref.key];
    __block id data = @{ @"a": @1, @"b": @2, @"c": @{ @".priority": @3, @".value": @3}, @"d": @4 };
    [self waitForCompletionOf:ref setValue:data];

    __block BOOL gotData = NO;
    [ref2 observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        XCTAssertFalse(gotData, @"event triggered twice.");
        gotData = YES;
        XCTAssertEqualObjects(snapshot.valueInExportFormat, data, @"Got wrong data.");
    }];

    [self waitUntil:^BOOL{ return gotData; }];

    __block BOOL done = NO;
    XCTAssertEqual(ref2.repo.dataUpdateCount, 1L, @"Should have gotten one update.");

    // Bounce connection
    [FRepoManager interrupt:cfg];
    [FRepoManager resume:cfg];

    [[[ref2 root] child:@".info/connected"] observeEventType:FIRDataEventTypeValue
        withBlock:^(FIRDataSnapshot *snapshot) {
            if ([snapshot.value boolValue]) {
                // We're connected.  Do one more round-trip to make sure all state restoration is done
                [[[ref2 root] child:@"foobar/empty/blah"] setValue:nil withCompletionBlock:^(NSError *error, FIRDatabaseReference *ref) {
                    XCTAssertEqual(ref2.repo.dataUpdateCount, 1L, @"Should have gotten one update.");
                    done = YES;
                }];
            }
        }
    ];

    [self waitUntil:^BOOL{ return done; }];
    
    // cleanup
    [FRepoManager interrupt:cfg];
    [FRepoManager disposeRepos:cfg];
}

- (void) testServerValuesEventualConsistencyBetweenLocalAndRemote {
    FTupleFirebase* refs = [FTestHelpers getRandomNodePair];
    FIRDatabaseReference * writer = refs.one;
    FIRDatabaseReference * reader = refs.two;

    __block FIRDataSnapshot *writerSnap = nil;
    __block FIRDataSnapshot *readerSnap = nil;

    [reader observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        readerSnap = snapshot;
    }];

    [writer observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) {
        writerSnap = snapshot;
    }];

    [writer setValue:[FIRServerValue timestamp] andPriority:[FIRServerValue timestamp]];

    [self waitUntil:^BOOL{
      if (readerSnap && writerSnap && [[readerSnap value] isKindOfClass:[NSNumber class]] && [[writerSnap value] isKindOfClass:[NSNumber class]]) {
        if ([[readerSnap value] doubleValue] == [[writerSnap value] doubleValue]) {
          return YES;
        }
      }
      return NO;
    }];
}

// Listens at a location and then creates a bunch of children, waiting for them all to complete.
- (void) testChildAddedPerf1 {
    if (!runPerfTests) return;

    FIRDatabaseReference *ref = [FTestHelpers getRandomNode];
    [ref observeEventType:FIRDataEventTypeChildAdded withBlock:^(FIRDataSnapshot *snapshot) {

    }];

    NSDate *start = [NSDate date];
    int COUNT = 1000;
    __block BOOL done = NO;
    __block NSDate *finished = nil;
    for(int i = 0; i < COUNT; i++) {
        [[ref childByAutoId] setValue:@"01234567890123456789012345678901234567890123456789" withCompletionBlock:^(NSError *error, FIRDatabaseReference *ref) {
            if (i == (COUNT - 1)) {
                finished = [NSDate date];
                done = YES;
            }
        }];
    }
    [self waitUntil:^BOOL {
        return done;
    } timeout:300];
    NSTimeInterval elapsed = [finished timeIntervalSinceDate:start];
    NSLog(@"Elapsed: %f", elapsed);
}

// Listens at a location, then adds a bunch of grandchildren under a single child.
- (void) testDeepChildAddedPerf1 {
    if (!runPerfTests) return;

    FIRDatabaseReference *ref = [FTestHelpers getRandomNode],
            *childRef = [ref child:@"child"];

    [ref observeEventType:FIRDataEventTypeChildAdded withBlock:^(FIRDataSnapshot *snapshot) {

    }];

    NSDate *start = [NSDate date];
    int COUNT = 1000;
    __block BOOL done = NO;
    __block NSDate *finished = nil;
    for(int i = 0; i < COUNT; i++) {
        [[childRef childByAutoId] setValue:@"01234567890123456789012345678901234567890123456789" withCompletionBlock:^(NSError *error, FIRDatabaseReference *ref) {
            if (i == (COUNT - 1)) {
                finished = [NSDate date];
                done = YES;
            }
        }];
    }
    [self waitUntil:^BOOL {
        return done;
    } timeout:300];

    NSTimeInterval elapsed = [finished timeIntervalSinceDate:start];
    NSLog(@"Elapsed: %f", elapsed);
}

// Listens at a location, then adds a bunch of grandchildren under a single child, but does it with merges.
// NOTE[2015-07-14]: This test is still pretty slow, because [FWriteTree removeWriteId] ends up rebuilding the tree after
// every ack.
- (void) testDeepChildAddedPerfViaMerge1 {
    if (!runPerfTests) return;

    FIRDatabaseReference *ref = [FTestHelpers getRandomNode],
            *childRef = [ref child:@"child"];

    [ref observeEventType:FIRDataEventTypeChildAdded withBlock:^(FIRDataSnapshot *snapshot) {

    }];

    NSDate *start = [NSDate date];
    int COUNT = 250;
    __block BOOL done = NO;
    __block NSDate *finished = nil;
    for(int i = 0; i < COUNT; i++) {
        NSString *childName = [childRef childByAutoId].key;
        [childRef updateChildValues:@{
                childName: @"01234567890123456789012345678901234567890123456789"
        } withCompletionBlock:^(NSError *error, FIRDatabaseReference *ref) {
            if (i == (COUNT - 1)) {
                finished = [NSDate date];
                done = YES;
            }
        }];
    }
    [self waitUntil:^BOOL {
        return done;
    } timeout:300];

    NSTimeInterval elapsed = [finished timeIntervalSinceDate:start];
    NSLog(@"Elapsed: %f", elapsed);
}

@end