Brian Chen b504a490ac Add changelog for #7288 (#7290) преди 5 години
..
Example 87dc1b95c8 Migrate libFuzzer from svn to git (#7245) преди 5 години
Protos 44a750845d Add update_transforms protos (#7222) преди 5 години
Source 3d84b99852 Support NSPredicate CONTAINS and IN with new filter queries (#7203) преди 5 години
Swift b34f9f2aa5 Verify that @DocumentID works with custom Codable methods. (#7247) преди 5 години
core 90ce2e8e9e Iterate through all elements of target array for FieldValue::ArrayRemove (#7288) преди 5 години
fuzzing 7a58eba2e5 Remove `firebase/firestore` from paths in Firestore/core (#5374) преди 6 години
third_party eabe8d46a0 Update and apply swiftformat fix (#6239) преди 5 години
CHANGELOG.md b504a490ac Add changelog for #7288 (#7290) преди 5 години
CMakeLists.txt 2a8d069b77 Run integration tests from CMake on mac (#4276) преди 6 години
README.md 2656033eb2 Update integration testing docs (#5490) преди 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

Improving the debugger experience

You can install a set of type formatters to improve the presentation of Firestore internals in LLDB and Xcode. Add the following to your ~/.lldbinit file:

command script import ~/path/to/firebase-ios-sdk/scripts/lldb/firestore.py

(substitute the location of your checkout of the firebase-ios-sdk.)

Running Integration Tests

Prefer running the integration tests against the Firestore Emulator. This is much faster than running against production and does not require you to configure a Firestore-enabled project.

  • In a new terminal, run scripts/run_firestore_emulator.sh and leave it running.
  • In Xcode select the Firestore_IntegrationTests_iOS scheme (or macOS or tvOS).
  • ⌘-u to build and run the integration tests.

Running Integration Tests - against production

Occasionally it's useful to run integration tests against a production account.

  • Set up a GoogleServices-Info.plist file in Firestore/Example/App.
  • Ensure your Firestore database has open rules (the integration tests do not authenticate).
  • In Xcode select the Firestore_IntegrationTests_iOS scheme
  • ⌘-u to build and run the integration tests

If you want to switch back to running integration tests against the emulator:

  • Ensure that GoogleServices-Info.plist is in its default state (git checkout Firestore/Example/App/GoogleServices-Info.plist).

Building Protos

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