Paul Beusterien b581f00d3c Update versions for Release 6.5.0 6 سال پیش
..
Example b581f00d3c Update versions for Release 6.5.0 6 سال پیش
Protos 53d3ca199a CMake: Upgrade nanopb to 0.3.9.2 (#2985) 6 سال پیش
Source ec3557601b Fix FIRDocumentChange returning incorrect values for not found (#3361) 6 سال پیش
Swift 4a8769bc0d Fix warnings in CodableIntegrationTests.swift (#3357) 6 سال پیش
core f3396f5686 fix latency-compensated query (#3363) 6 سال پیش
fuzzing 26e358ffc2 Make fuzzing compile (#2693) 7 سال پیش
third_party 10752cd68c Finish migration of FSTFieldValue to C++ FieldValue (#3178) 6 سال پیش
CHANGELOG.md f3396f5686 fix latency-compensated query (#3363) 6 سال پیش
CMakeLists.txt 10752cd68c Finish migration of FSTFieldValue to C++ FieldValue (#3178) 6 سال پیش
README.md 9e0d8f4a4f Update required CocoaPods version in READMEs (#3339) 6 سال پیش
test.sh 5930ad2fee Factor out a universal build script (#884) 8 سال پیش

README.md

Usage

  • Install prerequisite software
  • Set up a workspace via CocoaPods

    $ cd Firestore/Example
    $ pod update
    $ open Firestore.xcworkspace
    
  • Select the Firestore_Tests_iOS scheme

  • ⌘-u to build and run the unit tests

Running Integration Tests

  • Set up a GoogleServices-Info.plist file in Firestore/Example/App.
  • In Xcode select the Firestore_IntegrationTests_iOS scheme
  • ⌘-u to build and run the integration tests

Running Integration Tests - using the Firestore Emulator

Note: this does not give full coverage, but is much faster than above. b/hotlists/1578399 tracks outstanding issues.

  • Ensure that GoogleServices-Info.plist is back in its default state (git checkout Firestore/Example/App/GoogleServices-Info.plist).
  • Install the Firebase CLI. Essentially:

    npm install -g firebase-tools
    
  • Install the Firestore emulator. Essentially:

    firebase setup:emulators:firestore
    
  • Run the emulator

    firebase serve --only firestore
    
  • In Xcode select the Firestore_IntegrationTests_iOS scheme

  • ⌘-u to build and run the integration tests

Building Protos

Typically you should not need to worrying about regenerating the Objective-C files from the .proto files. If you do, see instructions at Protos/README.md.