@@ -47,7 +47,7 @@ When running integration tests, configure your execution using properties or env
4747 - ` standard` (Default)
4848 - ` enterprise`
4949 - * Note* : ** Pipelines can only be run against ` enterprise` editions** , while standard Queries run on both.
50- - ** ` FIRESTORE_NAMED_DATABASE ` ** :
50+ - ** ` FIRESTORE_DATABASE_ID ` ** :
5151 - Enterprise editions usually require a named database (often ` enterprise` ). Adjust this flag if pointing to specific instances.
5252- ** ` FIRESTORE_TARGET_BACKEND` ** :
5353 - ` PROD` (Default)
@@ -58,23 +58,21 @@ When running integration tests, configure your execution using properties or env
58581. ** Identify modified integration tests** (usually Starting in ` IT` ).
59592. ** Run specific integration tests only** (isolated checks run quicker):
6060 ` ` ` bash
61- mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_NAMED_DATABASE =enterprise -Dtest=ITTest#testMethod -Dclirr.skip=true -Denforcer.skip=true -fae
61+ mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_DATABASE_ID =enterprise -Dtest=ITTest#testMethod -Dclirr.skip=true -Denforcer.skip=true -fae
6262 ` ` `
63633. ** Run the entire integration test suite** for the modified class if isolation tests pass:
6464 ` ` ` bash
65- mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_NAMED_DATABASE =enterprise -Dtest=ITTest -Dclirr.skip=true -Denforcer.skip=true -fae
65+ mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_DATABASE_ID =enterprise -Dtest=ITTest -Dclirr.skip=true -Denforcer.skip=true -fae
6666 ` ` `
6767
68-
69-
7068---
7169
7270# # Step 3: Full Suite Regressions
7371
7472Run the full integration regression suite once you are confident subsets pass:
7573
7674` ` ` bash
77- mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_NAMED_DATABASE =enterprise -Dclirr.skip=true -Denforcer.skip=true -fae
75+ mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_DATABASE_ID =enterprise -Dclirr.skip=true -Denforcer.skip=true -fae
7876` ` `
7977
8078---
@@ -89,7 +87,7 @@ mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE
8987If you run into issues executing tests with the commands above, ** consult the Kokoro configuration files** as the ultimate source of truth:
9088
9189- ** Presubmit configurations** : See ` .kokoro/presubmit/integration.cfg` (or ` integration-named-db.cfg` )
92- - ** Nightly configurations** : See ` .kokoro/nightly/integration.cfg`
90+ - ** Nightly configurations** : See ` .kokoro/nightly/integration.cfg` (or ` integration-named-db.cfg ` )
9391- ** Build shell scripts** : See ` .kokoro/build.sh`
9492
9593These files define the exact environment variables (e.g., specific endpoints or endpoints overrides) the CI server uses!
0 commit comments