Skip to content

Commit bd9bd7f

Browse files
authored
Disable Firestore Source Tests (#417)
1 parent e4bbf5c commit bd9bd7f

File tree

1 file changed

+40
-27
lines changed

1 file changed

+40
-27
lines changed

firestore/integration_test_internal/src/source_test.cc

Lines changed: 40 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@
1313
namespace firebase {
1414
namespace firestore {
1515

16+
// TODO(b/187448376): Temporarily disabling all tests as they seem to time out
17+
// on Android.
18+
1619
using SourceTest = FirestoreIntegrationTest;
1720

18-
TEST_F(SourceTest, GetDocumentWhileOnlineWithDefaultGetOptions) {
21+
TEST_F(SourceTest, DISABLED_GetDocumentWhileOnlineWithDefaultGetOptions) {
1922
MapFieldValue initial_data = {{"key", FieldValue::String("value")}};
2023
DocumentReference doc_ref = DocumentWithData(initial_data);
2124

@@ -29,7 +32,7 @@ TEST_F(SourceTest, GetDocumentWhileOnlineWithDefaultGetOptions) {
2932
EXPECT_EQ(initial_data, snapshot.GetData());
3033
}
3134

32-
TEST_F(SourceTest, GetCollectionWhileOnlineWithDefaultGetOptions) {
35+
TEST_F(SourceTest, DISABLED_GetCollectionWhileOnlineWithDefaultGetOptions) {
3336
std::map<std::string, MapFieldValue> initial_docs = {
3437
{"doc1", {{"key1", FieldValue::String("value1")}}},
3538
{"doc2", {{"key2", FieldValue::String("value2")}}},
@@ -46,7 +49,7 @@ TEST_F(SourceTest, GetCollectionWhileOnlineWithDefaultGetOptions) {
4649
EXPECT_EQ(initial_docs, QuerySnapshotToMap(snapshot));
4750
}
4851

49-
TEST_F(SourceTest, GetDocumentWhileOfflineWithDefaultGetOptions) {
52+
TEST_F(SourceTest, DISABLED_GetDocumentWhileOfflineWithDefaultGetOptions) {
5053
MapFieldValue initial_data = {{"key", FieldValue::String("value")}};
5154
DocumentReference doc_ref = DocumentWithData(initial_data);
5255

@@ -63,7 +66,7 @@ TEST_F(SourceTest, GetDocumentWhileOfflineWithDefaultGetOptions) {
6366
EXPECT_EQ(initial_data, snapshot.GetData());
6467
}
6568

66-
TEST_F(SourceTest, GetCollectionWhileOfflineWithDefaultGetOptions) {
69+
TEST_F(SourceTest, DISABLED_GetCollectionWhileOfflineWithDefaultGetOptions) {
6770
std::map<std::string, MapFieldValue> initial_docs = {
6871
{"doc1", {{"key1", FieldValue::String("value1")}}},
6972
{"doc2", {{"key2", FieldValue::String("value2")}}},
@@ -97,7 +100,7 @@ TEST_F(SourceTest, GetCollectionWhileOfflineWithDefaultGetOptions) {
97100
EXPECT_EQ(new_data, QuerySnapshotToMap(snapshot));
98101
}
99102

100-
TEST_F(SourceTest, GetDocumentWhileOnlineWithSourceEqualToCache) {
103+
TEST_F(SourceTest, DISABLED_GetDocumentWhileOnlineWithSourceEqualToCache) {
101104
MapFieldValue initial_data = {{"key", FieldValue::String("value")}};
102105
DocumentReference doc_ref = DocumentWithData(initial_data);
103106

@@ -112,7 +115,7 @@ TEST_F(SourceTest, GetDocumentWhileOnlineWithSourceEqualToCache) {
112115
EXPECT_EQ(initial_data, snapshot.GetData());
113116
}
114117

115-
TEST_F(SourceTest, GetCollectionWhileOnlineWithSourceEqualToCache) {
118+
TEST_F(SourceTest, DISABLED_GetCollectionWhileOnlineWithSourceEqualToCache) {
116119
std::map<std::string, MapFieldValue> initial_docs = {
117120
{"doc1", {{"key1", FieldValue::String("value1")}}},
118121
{"doc2", {{"key2", FieldValue::String("value2")}}},
@@ -130,7 +133,7 @@ TEST_F(SourceTest, GetCollectionWhileOnlineWithSourceEqualToCache) {
130133
EXPECT_EQ(initial_docs, QuerySnapshotToMap(snapshot));
131134
}
132135

133-
TEST_F(SourceTest, GetDocumentWhileOfflineWithSourceEqualToCache) {
136+
TEST_F(SourceTest, DISABLED_GetDocumentWhileOfflineWithSourceEqualToCache) {
134137
MapFieldValue initial_data = {{"key", FieldValue::String("value")}};
135138
DocumentReference doc_ref = DocumentWithData(initial_data);
136139

@@ -146,7 +149,7 @@ TEST_F(SourceTest, GetDocumentWhileOfflineWithSourceEqualToCache) {
146149
EXPECT_EQ(initial_data, snapshot.GetData());
147150
}
148151

149-
TEST_F(SourceTest, GetCollectionWhileOfflineWithSourceEqualToCache) {
152+
TEST_F(SourceTest, DISABLED_GetCollectionWhileOfflineWithSourceEqualToCache) {
150153
std::map<std::string, MapFieldValue> initial_docs = {
151154
{"doc1", {{"key1", FieldValue::String("value1")}}},
152155
{"doc2", {{"key2", FieldValue::String("value2")}}},
@@ -180,7 +183,7 @@ TEST_F(SourceTest, GetCollectionWhileOfflineWithSourceEqualToCache) {
180183
EXPECT_EQ(new_data, QuerySnapshotToMap(snapshot));
181184
}
182185

183-
TEST_F(SourceTest, GetDocumentWhileOnlineWithSourceEqualToServer) {
186+
TEST_F(SourceTest, DISABLED_GetDocumentWhileOnlineWithSourceEqualToServer) {
184187
MapFieldValue initial_data = {{"key", FieldValue::String("value")}};
185188
DocumentReference doc_ref = DocumentWithData(initial_data);
186189

@@ -194,7 +197,7 @@ TEST_F(SourceTest, GetDocumentWhileOnlineWithSourceEqualToServer) {
194197
EXPECT_EQ(initial_data, snapshot.GetData());
195198
}
196199

197-
TEST_F(SourceTest, GetCollectionWhileOnlineWithSourceEqualToServer) {
200+
TEST_F(SourceTest, DISABLED_GetCollectionWhileOnlineWithSourceEqualToServer) {
198201
std::map<std::string, MapFieldValue> initial_docs = {
199202
{"doc1", {{"key1", FieldValue::String("value1")}}},
200203
{"doc2", {{"key2", FieldValue::String("value2")}}},
@@ -211,7 +214,7 @@ TEST_F(SourceTest, GetCollectionWhileOnlineWithSourceEqualToServer) {
211214
EXPECT_EQ(initial_docs, QuerySnapshotToMap(snapshot));
212215
}
213216

214-
TEST_F(SourceTest, GetDocumentWhileOfflineWithSourceEqualToServer) {
217+
TEST_F(SourceTest, DISABLED_GetDocumentWhileOfflineWithSourceEqualToServer) {
215218
MapFieldValue initial_data = {{"key", FieldValue::String("value")}};
216219
DocumentReference doc_ref = DocumentWithData(initial_data);
217220

@@ -224,7 +227,7 @@ TEST_F(SourceTest, GetDocumentWhileOfflineWithSourceEqualToServer) {
224227
EXPECT_EQ(future.error(), Error::kErrorUnavailable);
225228
}
226229

227-
TEST_F(SourceTest, GetCollectionWhileOfflineWithSourceEqualToServer) {
230+
TEST_F(SourceTest, DISABLED_GetCollectionWhileOfflineWithSourceEqualToServer) {
228231
std::map<std::string, MapFieldValue> initial_docs = {
229232
{"doc1", {{"key1", FieldValue::String("value1")}}},
230233
{"doc2", {{"key2", FieldValue::String("value2")}}},
@@ -240,7 +243,7 @@ TEST_F(SourceTest, GetCollectionWhileOfflineWithSourceEqualToServer) {
240243
EXPECT_EQ(future.error(), Error::kErrorUnavailable);
241244
}
242245

243-
TEST_F(SourceTest, GetDocumentWhileOfflineWithDifferentGetOptions) {
246+
TEST_F(SourceTest, DISABLED_GetDocumentWhileOfflineWithDifferentGetOptions) {
244247
MapFieldValue initial_data = {{"key", FieldValue::String("value")}};
245248
DocumentReference doc_ref = DocumentWithData(initial_data);
246249

@@ -285,7 +288,7 @@ TEST_F(SourceTest, GetDocumentWhileOfflineWithDifferentGetOptions) {
285288
EXPECT_EQ(future.error(), Error::kErrorUnavailable);
286289
}
287290

288-
TEST_F(SourceTest, GetCollectionWhileOfflineWithDifferentGetOptions) {
291+
TEST_F(SourceTest, DISABLED_GetCollectionWhileOfflineWithDifferentGetOptions) {
289292
std::map<std::string, MapFieldValue> initial_docs = {
290293
{"doc1", {{"key1", FieldValue::String("value1")}}},
291294
{"doc2", {{"key2", FieldValue::String("value2")}}},
@@ -347,7 +350,7 @@ TEST_F(SourceTest, GetCollectionWhileOfflineWithDifferentGetOptions) {
347350
EXPECT_EQ(future.error(), Error::kErrorUnavailable);
348351
}
349352

350-
TEST_F(SourceTest, GetNonExistingDocWhileOnlineWithDefaultGetOptions) {
353+
TEST_F(SourceTest, DISABLED_GetNonExistingDocWhileOnlineWithDefaultGetOptions) {
351354
DocumentReference doc_ref = Document();
352355

353356
Future<DocumentSnapshot> future = doc_ref.Get();
@@ -359,7 +362,8 @@ TEST_F(SourceTest, GetNonExistingDocWhileOnlineWithDefaultGetOptions) {
359362
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
360363
}
361364

362-
TEST_F(SourceTest, GetNonExistingCollectionWhileOnlineWithDefaultGetOptions) {
365+
TEST_F(SourceTest,
366+
DISABLED_GetNonExistingCollectionWhileOnlineWithDefaultGetOptions) {
363367
CollectionReference col_ref = Collection();
364368

365369
Future<QuerySnapshot> future = col_ref.Get();
@@ -372,7 +376,8 @@ TEST_F(SourceTest, GetNonExistingCollectionWhileOnlineWithDefaultGetOptions) {
372376
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
373377
}
374378

375-
TEST_F(SourceTest, GetNonExistingDocWhileOfflineWithDefaultGetOptions) {
379+
TEST_F(SourceTest,
380+
DISABLED_GetNonExistingDocWhileOfflineWithDefaultGetOptions) {
376381
DocumentReference doc_ref = Document();
377382

378383
DisableNetwork();
@@ -400,7 +405,8 @@ TEST_F(SourceTest, DISABLED_GetDeletedDocWhileOfflineWithDefaultGetOptions) {
400405
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
401406
}
402407

403-
TEST_F(SourceTest, GetNonExistingCollectionWhileOfflineWithDefaultGetOptions) {
408+
TEST_F(SourceTest,
409+
DISABLED_GetNonExistingCollectionWhileOfflineWithDefaultGetOptions) {
404410
CollectionReference col_ref = Collection();
405411

406412
DisableNetwork();
@@ -414,7 +420,8 @@ TEST_F(SourceTest, GetNonExistingCollectionWhileOfflineWithDefaultGetOptions) {
414420
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
415421
}
416422

417-
TEST_F(SourceTest, GetNonExistingDocWhileOnlineWithSourceEqualToCache) {
423+
TEST_F(SourceTest,
424+
DISABLED_GetNonExistingDocWhileOnlineWithSourceEqualToCache) {
418425
DocumentReference doc_ref = Document();
419426

420427
// Attempt to get doc. This will fail since there's nothing in cache.
@@ -424,7 +431,8 @@ TEST_F(SourceTest, GetNonExistingDocWhileOnlineWithSourceEqualToCache) {
424431
EXPECT_EQ(future.error(), Error::kErrorUnavailable);
425432
}
426433

427-
TEST_F(SourceTest, GetNonExistingCollectionWhileOnlineWithSourceEqualToCache) {
434+
TEST_F(SourceTest,
435+
DISABLED_GetNonExistingCollectionWhileOnlineWithSourceEqualToCache) {
428436
CollectionReference col_ref = Collection();
429437

430438
Future<QuerySnapshot> future = col_ref.Get(Source::kCache);
@@ -437,7 +445,8 @@ TEST_F(SourceTest, GetNonExistingCollectionWhileOnlineWithSourceEqualToCache) {
437445
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
438446
}
439447

440-
TEST_F(SourceTest, GetNonExistingDocWhileOfflineWithSourceEqualToCache) {
448+
TEST_F(SourceTest,
449+
DISABLED_GetNonExistingDocWhileOfflineWithSourceEqualToCache) {
441450
DocumentReference doc_ref = Document();
442451

443452
DisableNetwork();
@@ -448,7 +457,7 @@ TEST_F(SourceTest, GetNonExistingDocWhileOfflineWithSourceEqualToCache) {
448457
EXPECT_EQ(future.error(), Error::kErrorUnavailable);
449458
}
450459

451-
TEST_F(SourceTest, GetDeletedDocWhileOfflineWithSourceEqualToCache) {
460+
TEST_F(SourceTest, DISABLED_GetDeletedDocWhileOfflineWithSourceEqualToCache) {
452461
DocumentReference doc_ref = Document();
453462
Await(doc_ref.Delete());
454463

@@ -463,7 +472,8 @@ TEST_F(SourceTest, GetDeletedDocWhileOfflineWithSourceEqualToCache) {
463472
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
464473
}
465474

466-
TEST_F(SourceTest, GetNonExistingCollectionWhileOfflineWithSourceEqualToCache) {
475+
TEST_F(SourceTest,
476+
DISABLED_GetNonExistingCollectionWhileOfflineWithSourceEqualToCache) {
467477
CollectionReference col_ref = Collection();
468478

469479
DisableNetwork();
@@ -477,7 +487,8 @@ TEST_F(SourceTest, GetNonExistingCollectionWhileOfflineWithSourceEqualToCache) {
477487
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
478488
}
479489

480-
TEST_F(SourceTest, GetNonExistingDocWhileOnlineWithSourceEqualToServer) {
490+
TEST_F(SourceTest,
491+
DISABLED_GetNonExistingDocWhileOnlineWithSourceEqualToServer) {
481492
DocumentReference doc_ref = Document();
482493

483494
Future<DocumentSnapshot> future = doc_ref.Get(Source::kServer);
@@ -489,7 +500,8 @@ TEST_F(SourceTest, GetNonExistingDocWhileOnlineWithSourceEqualToServer) {
489500
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
490501
}
491502

492-
TEST_F(SourceTest, GetNonExistingCollectionWhileOnlineWithSourceEqualToServer) {
503+
TEST_F(SourceTest,
504+
DISABLED_GetNonExistingCollectionWhileOnlineWithSourceEqualToServer) {
493505
CollectionReference col_ref = Collection();
494506

495507
Future<QuerySnapshot> future = col_ref.Get(Source::kServer);
@@ -502,7 +514,8 @@ TEST_F(SourceTest, GetNonExistingCollectionWhileOnlineWithSourceEqualToServer) {
502514
EXPECT_FALSE(snapshot.metadata().has_pending_writes());
503515
}
504516

505-
TEST_F(SourceTest, GetNonExistingDocWhileOfflineWithSourceEqualToServer) {
517+
TEST_F(SourceTest,
518+
DISABLED_GetNonExistingDocWhileOfflineWithSourceEqualToServer) {
506519
DocumentReference doc_ref = Document();
507520

508521
DisableNetwork();
@@ -514,7 +527,7 @@ TEST_F(SourceTest, GetNonExistingDocWhileOfflineWithSourceEqualToServer) {
514527
}
515528

516529
TEST_F(SourceTest,
517-
GetNonExistingCollectionWhileOfflineWithSourceEqualToServer) {
530+
DISABLED_GetNonExistingCollectionWhileOfflineWithSourceEqualToServer) {
518531
CollectionReference col_ref = Collection();
519532

520533
DisableNetwork();

0 commit comments

Comments
 (0)