Skip to content

Commit f8e38b1

Browse files
committed
bundle_test.cc: disable ALL of the tests
1 parent b39452a commit f8e38b1

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

firestore/integration_test_internal/src/bundle_test.cc

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@ class BundleTest : public FirestoreIntegrationTest {
142142
};
143143

144144
TEST_F(BundleTest, CanLoadBundlesWithoutProgressUpdates) {
145+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
146+
"Actions and needs to be investigated (b/233751585)";
147+
145148
Firestore* db = TestFirestore();
146149
auto bundle = CreateTestBundle(db);
147150

@@ -152,6 +155,9 @@ TEST_F(BundleTest, CanLoadBundlesWithoutProgressUpdates) {
152155
}
153156

154157
TEST_F(BundleTest, CanLoadBundlesWithProgressUpdates) {
158+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
159+
"Actions and needs to be investigated (b/233751585)";
160+
155161
Firestore* db = TestFirestore();
156162
auto bundle = CreateTestBundle(db);
157163

@@ -180,6 +186,9 @@ TEST_F(BundleTest, CanLoadBundlesWithProgressUpdates) {
180186
}
181187

182188
TEST_F(BundleTest, CanDeleteFirestoreFromProgressUpdate) {
189+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
190+
"Actions and needs to be investigated (b/233751585)";
191+
183192
Firestore* db = TestFirestore();
184193
auto bundle = CreateTestBundle(db);
185194

@@ -216,6 +225,9 @@ TEST_F(BundleTest, CanDeleteFirestoreFromProgressUpdate) {
216225
}
217226

218227
TEST_F(BundleTest, LoadBundlesForASecondTimeSkips) {
228+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
229+
"Actions and needs to be investigated (b/233751585)";
230+
219231
// TODO(wuandy): This test fails on Windows CI, but
220232
// local run is fine. We need to figure out why and re-enable it.
221233
SKIP_TEST_ON_WINDOWS;
@@ -244,6 +256,9 @@ TEST_F(BundleTest, LoadBundlesForASecondTimeSkips) {
244256
}
245257

246258
TEST_F(BundleTest, LoadInvalidBundlesShouldFail) {
259+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
260+
"Actions and needs to be investigated (b/233751585)";
261+
247262
// TODO(wuandy): This test fails on Windows CI, but
248263
// local run is fine. We need to figure out why and re-enable it.
249264
SKIP_TEST_ON_WINDOWS;
@@ -273,13 +288,13 @@ TEST_F(BundleTest, LoadInvalidBundlesShouldFail) {
273288
}
274289

275290
TEST_F(BundleTest, LoadBundleWithDocumentsAlreadyPulledFromBackend) {
291+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
292+
"Actions and needs to be investigated (b/233751585)";
293+
276294
// TODO(wuandy, b/189477267): This test fails on Windows CI, but
277295
// local run is fine. We need to figure out why and re-enable it.
278296
SKIP_TEST_ON_WINDOWS;
279297

280-
GTEST_SKIP() << "This test fails often on Android and iOS in GitHub Actions "
281-
"and needs to be investigated (b/233751585)";
282-
283298
Firestore* db = TestFirestore();
284299
auto collection = db->Collection("coll-1");
285300
WriteDocuments(collection,
@@ -322,6 +337,9 @@ TEST_F(BundleTest, LoadBundleWithDocumentsAlreadyPulledFromBackend) {
322337
}
323338

324339
TEST_F(BundleTest, LoadedDocumentsShouldNotBeGarbageCollectedRightAway) {
340+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
341+
"Actions and needs to be investigated (b/233751585)";
342+
325343
// TODO(wuandy, b/189477267): This test fails on Windows CI, but
326344
// local run is fine. We need to figure out why and re-enable it.
327345
SKIP_TEST_ON_WINDOWS;
@@ -346,6 +364,9 @@ TEST_F(BundleTest, LoadedDocumentsShouldNotBeGarbageCollectedRightAway) {
346364
}
347365

348366
TEST_F(BundleTest, LoadDocumentsFromOtherProjectsShouldFail) {
367+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
368+
"Actions and needs to be investigated (b/233751585)";
369+
349370
Firestore* db = TestFirestore();
350371
auto bundle = CreateBundle("other-project");
351372
std::vector<LoadBundleTaskProgress> progresses;
@@ -366,6 +387,9 @@ TEST_F(BundleTest, LoadDocumentsFromOtherProjectsShouldFail) {
366387
}
367388

368389
TEST_F(BundleTest, GetInvalidNamedQuery) {
390+
GTEST_SKIP() << "Bundle tests fails often on Android and iOS in GitHub "
391+
"Actions and needs to be investigated (b/233751585)";
392+
369393
Firestore* db = TestFirestore();
370394
{
371395
auto future = db->NamedQuery("DOES_NOT_EXIST");

0 commit comments

Comments
 (0)