| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282 |
- /*
- * 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 "FirebaseDatabase/Tests/Integration/FData.h"
- #import <limits.h>
- #import "FirebaseCore/Sources/Private/FirebaseCoreInternal.h"
- #import "FirebaseDatabase/Sources/Api/Private/FIRDatabaseQuery_Private.h"
- #import "FirebaseDatabase/Sources/Core/FRepo_Private.h"
- #import "FirebaseDatabase/Sources/FIRDatabaseConfig_Private.h"
- #import "FirebaseDatabase/Sources/Public/FIRServerValue.h"
- #import "FirebaseDatabase/Tests/Helpers/FEventTester.h"
- #import "FirebaseDatabase/Tests/Helpers/FTestHelpers.h"
- #import "FirebaseDatabase/Tests/Helpers/FTupleEventTypeString.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 =
- [[FTestHelpers defaultDatabase] referenceFromURL:[self.databaseURL uppercaseString]];
- FIRDatabaseReference *ref2 =
- [[FTestHelpers defaultDatabase] 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 =
- [[[FTestHelpers defaultDatabase] 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];
- }
- #ifdef FLAKY_TEST
- This test flakes frequently on the emulator on travis and almost always on GHA with
- testWriteLeafNodeRemoveLeafVerifyExpectedEvents,
- failed
- : caught "NSInternalInconsistencyException",
- "Unable to report test assertion failure '(([target isEqualTo:recvd]) is true) failed: throwing
- "Unable to report test assertion failure '(([target isEqualTo:recvd]) is true) failed - Expected
- http : // localhost:9000/-M8IJYWb68MuqQKKz2IY/a aa (0) to match
- http : // localhost:9000/-M8IJYWb68MuqQKKz2IY/a (null) (4)' from
- /
- Users / runner / runners / 2.262.1 / work / firebase -
- ios - sdk / firebase - ios -
- sdk / Example / Database / Tests / Helpers /
- FEventTester
- .m : 123 because it was raised inside test case -
- [FEventTester(
- null)] which has no associated XCTestRun object.This may happen when test cases
- are constructed and invoked independently of standard XCTest infrastructure,
- or when the test has already finished
- ." - Expected http://localhost:9000/-M8IJYWb68MuqQKKz2IY/a aa (0) to match "
- "http://localhost:9000/-M8IJYWb68MuqQKKz2IY/a (null) (4)' from "
- "/Users/runner/runners/2.262.1/work/firebase-ios-sdk/firebase-ios-sdk/"
- "Example/Database/Tests/Helpers/FEventTester.m:123 because it was raised "
- "inside test case -[FEventTester (null)] which has no associated XCTestRun "
- "object. This may happen when test cases are constructed and invoked "
- "independently of standard XCTest infrastructure, or when the test has "
- "already finished." /
- Users / runner / runners / 2.262.1 / work / firebase -
- ios - sdk / firebase - ios -
- sdk / Example / Database / Tests / Helpers / FEventTester.m : 123
- ``` FTupleEventTypeString *recvd = [self.actualPathsAndEvents objectAtIndex:i];
- XCTAssertTrue([target isEqualTo:recvd], @"Expected %@ to match %@", target, recvd);
- - (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;
- }];
- }
- #endif
- - (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 observeSingleEventOfType: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;
- }];
- [node removeAllObservers];
- }
- - (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;
- }];
- }
- #ifdef FLAKY_TEST
- - (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");
- }
- #endif
- - (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;
- }];
- [reader removeAllObservers];
- }
- - (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];
- XCTAssertEqualObjects([parent description], self.databaseURL);
- FIRDatabaseReference *child = [parent child:@"a/b/c"];
- NSString *expected = [NSString stringWithFormat:@"%@/a/b/c", self.databaseURL];
- XCTAssertEqualObjects([child description], expected);
- }
- - (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 = [[FTestHelpers defaultDatabase] 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 =
- [[FTestHelpers defaultDatabase] 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 = [[FTestHelpers defaultDatabase] 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 = [[FTestHelpers defaultDatabase] 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 = (long)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");
- }
- #ifdef FLAKY_TEST
- - (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);
- [deleter removeAllObservers];
- }
- #endif
- - (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)testLocalServerTimestampEventuallyButNotImmediatelyMatchServer {
- 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)testServerTimestampSetWithPriorityRemoteEvents {
- 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)testServerTimestampSetPriorityRemoteEvents {
- 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)testServerTimestampUpdateRemoteEvents {
- 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)testServerTimestampSetWithPriorityLocalEvents {
- 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)testServerTimestampSetPriorityLocalEvents {
- 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)testServerTimestampUpdateLocalEvents {
- 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)testServerTimestampTransactionLocalEvents {
- 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)testServerIncrementOverwritesExistingDataOnline {
- [self checkServerIncrementOverwritesExistingDataWhileOnline:true];
- }
- - (void)testServerIncrementOverwritesExistingDataOffline {
- [self checkServerIncrementOverwritesExistingDataWhileOnline:false];
- }
- - (void)checkServerIncrementOverwritesExistingDataWhileOnline:(BOOL)online {
- FIRDatabaseReference *ref = [FTestHelpers getRandomNode];
- __block NSMutableArray *found = [NSMutableArray new];
- NSMutableArray *expected = [NSMutableArray new];
- [ref observeEventType:FIRDataEventTypeValue
- withBlock:^(FIRDataSnapshot *snap) {
- [found addObject:snap.value];
- }];
- // Going offline ensures that local events get queued up before server events
- if (!online) {
- [ref.repo interrupt];
- }
- // null + incr
- [ref setValue:[FIRServerValue increment:@1]];
- [expected addObject:@1];
- // number + incr
- [ref setValue:@5];
- [ref setValue:[FIRServerValue increment:@1]];
- [expected addObject:@5];
- [expected addObject:@6];
- // string + incr
- [ref setValue:@"hello"];
- [ref setValue:[FIRServerValue increment:@1]];
- [expected addObject:@"hello"];
- [expected addObject:@1];
- // object + incr
- [ref setValue:@{@"hello" : @"world"}];
- [ref setValue:[FIRServerValue increment:@1]];
- [expected addObject:@{@"hello" : @"world"}];
- [expected addObject:@1];
- [self waitUntil:^BOOL {
- return found.count == expected.count;
- }];
- XCTAssertEqualObjects(expected, found);
- if (!online) {
- [ref.repo resume];
- }
- }
- - (void)testServerIncrementPriorityOnline {
- [self checkServerIncrementPriorityWhileOnline:true];
- }
- - (void)testServerIncrementPriorityOffline {
- [self checkServerIncrementPriorityWhileOnline:false];
- }
- - (void)checkServerIncrementPriorityWhileOnline:(BOOL)online {
- FIRDatabaseReference *ref = [FTestHelpers getRandomNode];
- if (!online) {
- [ref.repo interrupt];
- }
- __block NSMutableArray *found = [NSMutableArray new];
- NSMutableArray *expected = [NSMutableArray new];
- [ref observeEventType:FIRDataEventTypeValue
- withBlock:^(FIRDataSnapshot *snap) {
- [found addObject:snap.priority];
- }];
- // Going offline ensures that local events get queued up before server events
- // Also necessary because increment may not be live yet in the server.
- if (!online) {
- [ref.repo interrupt];
- }
- // null + incr
- [ref setValue:@0 andPriority:[FIRServerValue increment:@1]];
- [expected addObject:@1];
- [ref setValue:@0 andPriority:[FIRServerValue increment:@1.5]];
- [expected addObject:@2.5];
- [self waitUntil:^BOOL {
- return found.count == expected.count;
- }];
- XCTAssertEqualObjects(expected, found);
- if (!online) {
- [ref.repo resume];
- }
- }
- - (void)testServerIncrementOverflowAndTypeCoercion {
- FIRDatabaseReference *ref = [FTestHelpers getRandomNode];
- __block NSMutableArray *found = [NSMutableArray new];
- __block NSMutableArray *foundTypes = [NSMutableArray new];
- NSMutableArray *expected = [NSMutableArray new];
- NSMutableArray *expectedTypes = [NSMutableArray new];
- [ref observeEventType:FIRDataEventTypeValue
- withBlock:^(FIRDataSnapshot *snap) {
- [found addObject:snap.value];
- [foundTypes addObject:@([(NSNumber *)snap.value objCType])];
- }];
- // Going offline ensures that local events get queued up before server events
- // Also necessary because increment may not be live yet in the server.
- [ref.repo interrupt];
- // long + double = double
- [ref setValue:@1];
- [ref setValue:[FIRServerValue increment:@1.0]];
- [expected addObject:@1];
- [expected addObject:@2.0];
- [expectedTypes addObject:@(@encode(int))];
- [expectedTypes addObject:@(@encode(double))];
- // double + long = double
- [ref setValue:@1.5];
- [ref setValue:[FIRServerValue increment:@1]];
- [expected addObject:@1.5];
- [expected addObject:@2.5];
- [expectedTypes addObject:@(@encode(double))];
- [expectedTypes addObject:@(@encode(double))];
- // long overflow = double
- [ref setValue:@(1)];
- [ref setValue:[FIRServerValue increment:@(LONG_MAX)]];
- [expected addObject:@(1)];
- [expected addObject:@(LONG_MAX + 1.0)];
- [expectedTypes addObject:@(@encode(int))];
- [expectedTypes addObject:@(@encode(double))];
- // unsigned long long overflow = double
- [ref setValue:@1];
- [ref setValue:[FIRServerValue increment:@((unsigned long long)ULLONG_MAX)]];
- [expected addObject:@1];
- [expected addObject:@((double)ULLONG_MAX + 1)];
- [expectedTypes addObject:@(@encode(int))];
- [expectedTypes addObject:@(@encode(double))];
- // long underflow = double
- [ref setValue:@(-1)];
- [ref setValue:[FIRServerValue increment:@(LONG_MIN)]];
- [expected addObject:@(-1)];
- [expected addObject:@(LONG_MIN - 1.0)];
- [expectedTypes addObject:@(@encode(int))];
- [expectedTypes addObject:@(@encode(double))];
- [self waitUntil:^BOOL {
- return found.count == expected.count && foundTypes.count == expectedTypes.count;
- }];
- XCTAssertEqualObjects(expectedTypes, foundTypes);
- XCTAssertEqualObjects(expected, found);
- [ref.repo resume];
- }
- - (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 = [FTestHelpers configForName:@"test-config"];
- FIRDatabaseReference *ref2 = [[FTestHelpers databaseForConfig:cfg] referenceWithPath: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)testServerTimestampEventualConsistencyBetweenLocalAndRemote {
- 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
|