| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653 |
- /*
- * Copyright 2018 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "Firestore/core/test/unit/testutil/testutil.h"
- #include <algorithm>
- #include <chrono> // NOLINT(build/c++11)
- #include <set>
- #include "Firestore/core/include/firebase/firestore/geo_point.h"
- #include "Firestore/core/include/firebase/firestore/timestamp.h"
- #include "Firestore/core/src/core/composite_filter.h"
- #include "Firestore/core/src/core/direction.h"
- #include "Firestore/core/src/core/field_filter.h"
- #include "Firestore/core/src/core/order_by.h"
- #include "Firestore/core/src/core/query.h"
- #include "Firestore/core/src/model/delete_mutation.h"
- #include "Firestore/core/src/model/document.h"
- #include "Firestore/core/src/model/document_key.h"
- #include "Firestore/core/src/model/document_set.h"
- #include "Firestore/core/src/model/field_mask.h"
- #include "Firestore/core/src/model/field_path.h"
- #include "Firestore/core/src/model/field_transform.h"
- #include "Firestore/core/src/model/mutable_document.h"
- #include "Firestore/core/src/model/patch_mutation.h"
- #include "Firestore/core/src/model/precondition.h"
- #include "Firestore/core/src/model/set_mutation.h"
- #include "Firestore/core/src/model/transform_operation.h"
- #include "Firestore/core/src/model/value_util.h"
- #include "Firestore/core/src/model/verify_mutation.h"
- #include "Firestore/core/src/nanopb/byte_string.h"
- #include "Firestore/core/src/nanopb/message.h"
- #include "Firestore/core/src/nanopb/nanopb_util.h"
- #include "Firestore/core/src/remote/remote_event.h"
- #include "Firestore/core/src/util/hard_assert.h"
- #include "Firestore/core/src/util/statusor.h"
- #include "Firestore/core/src/util/string_format.h"
- #include "Firestore/core/test/unit/remote/fake_target_metadata_provider.h"
- #include "absl/memory/memory.h"
- namespace firebase {
- namespace firestore {
- namespace testutil {
- using model::DeepClone;
- using model::Document;
- using model::DocumentComparator;
- using model::DocumentKey;
- using model::DocumentSet;
- using model::FieldMask;
- using model::FieldPath;
- using model::FieldTransform;
- using model::MutableDocument;
- using model::NullValue;
- using model::ObjectValue;
- using model::Precondition;
- using model::TargetId;
- using model::TransformOperation;
- using nanopb::ByteString;
- using nanopb::Message;
- using nanopb::SetRepeatedField;
- using nanopb::SharedMessage;
- using remote::RemoteEvent;
- using util::StringFormat;
- /**
- * A string sentinel that can be used with PatchMutation() to mark a field for
- * deletion.
- */
- constexpr const char* kDeleteSentinel = "<DELETE>";
- // We use a canonical NaN bit pattern that's common for both Objective-C and
- // Java. Specifically:
- //
- // - sign: 0
- // - exponent: 11 bits, all 1
- // - significand: 52 bits, MSB=1, rest=0
- //
- // This matches the Firestore backend which uses Double.doubleToLongBits from
- // the JDK (which is defined to normalize all NaNs to this value). This also
- // happens to be a common value for NAN in C++, but C++ does not require this
- // specific NaN value to be used, so we normalize.
- const uint64_t kCanonicalNanBits = 0x7ff8000000000000ULL;
- namespace details {
- Message<google_firestore_v1_Value> BlobValue(
- std::initializer_list<uint8_t> octets) {
- nanopb::ByteString contents{octets};
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_bytes_value_tag;
- result->bytes_value = nanopb::MakeBytesArray(octets.begin(), octets.size());
- return result;
- }
- } // namespace details
- ByteString Bytes(std::initializer_list<uint8_t> octets) {
- return ByteString(octets);
- }
- Message<google_firestore_v1_Value> Value(std::nullptr_t) {
- return DeepClone(NullValue());
- }
- Message<google_firestore_v1_Value> Value(double value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_double_value_tag;
- result->double_value = value;
- return result;
- }
- Message<google_firestore_v1_Value> Value(Timestamp value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_timestamp_value_tag;
- result->timestamp_value.seconds = value.seconds();
- result->timestamp_value.nanos = value.nanoseconds();
- return result;
- }
- Message<google_firestore_v1_Value> Value(const char* value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_string_value_tag;
- result->string_value = nanopb::MakeBytesArray(value);
- return result;
- }
- Message<google_firestore_v1_Value> Value(const std::string& value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_string_value_tag;
- result->string_value = nanopb::MakeBytesArray(value);
- return result;
- }
- Message<google_firestore_v1_Value> Value(const nanopb::ByteString& value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_bytes_value_tag;
- result->bytes_value = nanopb::MakeBytesArray(value.begin(), value.size());
- return result;
- }
- Message<google_firestore_v1_Value> Value(const GeoPoint& value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_geo_point_value_tag;
- result->geo_point_value.latitude = value.latitude();
- result->geo_point_value.longitude = value.longitude();
- return result;
- }
- Message<google_firestore_v1_Value> Value(
- Message<google_firestore_v1_Value> value) {
- return value;
- }
- Message<google_firestore_v1_Value> Value(
- Message<google_firestore_v1_MapValue> value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_map_value_tag;
- result->map_value = *value.release();
- return result;
- }
- Message<google_firestore_v1_Value> Value(
- Message<google_firestore_v1_ArrayValue> value) {
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_array_value_tag;
- result->array_value = *value.release();
- return result;
- }
- Message<google_firestore_v1_Value> Value(const model::ObjectValue& value) {
- return DeepClone(value.Get());
- }
- ObjectValue WrapObject(Message<google_firestore_v1_Value> value) {
- return ObjectValue{std::move(value)};
- }
- model::DocumentKey Key(absl::string_view path) {
- return model::DocumentKey::FromPathString(std::string(path));
- }
- model::FieldPath Field(absl::string_view field) {
- auto path = model::FieldPath::FromServerFormat(std::string(field));
- return path.ConsumeValueOrDie();
- }
- model::DatabaseId DbId(std::string project) {
- size_t slash = project.find('/');
- if (slash == std::string::npos) {
- return model::DatabaseId(std::move(project), model::DatabaseId::kDefault);
- } else {
- std::string database_id = project.substr(slash + 1);
- project = project.substr(0, slash);
- return model::DatabaseId(std::move(project), std::move(database_id));
- }
- }
- Message<google_firestore_v1_Value> Ref(std::string project,
- absl::string_view path) {
- model::DatabaseId database_id = DbId(std::move(project));
- Message<google_firestore_v1_Value> result;
- result->which_value_type = google_firestore_v1_Value_reference_value_tag;
- result->string_value = nanopb::MakeBytesArray(
- StringFormat("projects/%s/databases/%s/documents/%s",
- database_id.project_id(), database_id.database_id(), path));
- return result;
- }
- model::ResourcePath Resource(absl::string_view field) {
- return model::ResourcePath::FromString(std::string(field));
- }
- model::SnapshotVersion Version(int64_t version) {
- namespace chr = std::chrono;
- auto timepoint =
- chr::time_point<chr::system_clock>(chr::microseconds(version));
- return model::SnapshotVersion{Timestamp::FromTimePoint(timepoint)};
- }
- model::SnapshotVersion Version(int64_t seconds, int32_t nanoseconds) {
- return model::SnapshotVersion{Timestamp(seconds, nanoseconds)};
- }
- model::MutableDocument Doc(absl::string_view key,
- int64_t version,
- Message<google_firestore_v1_Value> data) {
- return MutableDocument::FoundDocument(Key(key), Version(version),
- ObjectValue{std::move(data)})
- .WithReadTime(Version(version));
- }
- model::MutableDocument Doc(absl::string_view key, int64_t version) {
- return MutableDocument::FoundDocument(Key(key), Version(version),
- ObjectValue{})
- .WithReadTime(Version(version));
- }
- model::MutableDocument DeletedDoc(absl::string_view key, int64_t version) {
- return MutableDocument::NoDocument(Key(key), Version(version))
- .WithReadTime(Version(version));
- }
- model::MutableDocument DeletedDoc(DocumentKey key, int64_t version) {
- return MutableDocument::NoDocument(std::move(key), Version(version))
- .WithReadTime(Version(version));
- }
- model::MutableDocument UnknownDoc(absl::string_view key, int64_t version) {
- return MutableDocument::UnknownDocument(Key(key), Version(version));
- }
- model::MutableDocument InvalidDoc(absl::string_view key) {
- return MutableDocument::InvalidDocument(Key(key));
- }
- DocumentComparator DocComparator(absl::string_view field_path) {
- return Query("docs").AddingOrderBy(OrderBy(field_path)).Comparator();
- }
- DocumentSet DocSet(DocumentComparator comp, std::vector<Document> docs) {
- DocumentSet set{std::move(comp)};
- for (const Document& doc : docs) {
- set = set.insert(doc);
- }
- return set;
- }
- core::FieldFilter::Operator OperatorFromString(absl::string_view s) {
- if (s == "<") {
- return core::FieldFilter::Operator::LessThan;
- } else if (s == "<=") {
- return core::FieldFilter::Operator::LessThanOrEqual;
- } else if (s == "==") {
- return core::FieldFilter::Operator::Equal;
- } else if (s == "!=") {
- return core::FieldFilter::Operator::NotEqual;
- } else if (s == ">") {
- return core::FieldFilter::Operator::GreaterThan;
- } else if (s == ">=") {
- return core::FieldFilter::Operator::GreaterThanOrEqual;
- // Both are accepted for compatibility with spec tests and existing
- // canonical ids.
- } else if (s == "array_contains" || s == "array-contains") {
- return core::FieldFilter::Operator::ArrayContains;
- } else if (s == "in") {
- return core::FieldFilter::Operator::In;
- } else if (s == "array-contains-any") {
- return core::FieldFilter::Operator::ArrayContainsAny;
- } else if (s == "not-in") {
- return core::FieldFilter::Operator::NotIn;
- } else {
- HARD_FAIL("Unknown operator: %s", s);
- }
- }
- core::FieldFilter Filter(absl::string_view key,
- absl::string_view op,
- Message<google_firestore_v1_Value> value) {
- return core::FieldFilter::Create(Field(key), OperatorFromString(op),
- std::move(value));
- }
- core::FieldFilter Filter(absl::string_view key,
- absl::string_view op,
- Message<google_firestore_v1_ArrayValue> value) {
- return core::FieldFilter::Create(Field(key), OperatorFromString(op),
- Value(std::move(value)));
- }
- core::FieldFilter Filter(absl::string_view key,
- absl::string_view op,
- std::nullptr_t) {
- return Filter(key, op, DeepClone(NullValue()));
- }
- core::FieldFilter Filter(absl::string_view key,
- absl::string_view op,
- const char* value) {
- return Filter(key, op, Value(value));
- }
- core::FieldFilter Filter(absl::string_view key,
- absl::string_view op,
- int value) {
- return Filter(key, op, Value(value));
- }
- core::FieldFilter Filter(absl::string_view key,
- absl::string_view op,
- double value) {
- return Filter(key, op, Value(value));
- }
- core::CompositeFilter AndFilters(std::vector<core::Filter> filters) {
- return core::CompositeFilter::Create(std::move(filters),
- core::CompositeFilter::Operator::And);
- }
- core::CompositeFilter OrFilters(std::vector<core::Filter> filters) {
- return core::CompositeFilter::Create(std::move(filters),
- core::CompositeFilter::Operator::Or);
- }
- core::Direction Direction(absl::string_view direction) {
- if (direction == "asc") {
- return core::Direction::Ascending;
- } else if (direction == "desc") {
- return core::Direction::Descending;
- } else {
- HARD_FAIL("Unknown direction: %s (use \"asc\" or \"desc\")", direction);
- }
- }
- core::OrderBy OrderBy(absl::string_view key, absl::string_view direction) {
- return core::OrderBy(Field(key), Direction(direction));
- }
- core::OrderBy OrderBy(model::FieldPath field_path, core::Direction direction) {
- return core::OrderBy(std::move(field_path), direction);
- }
- core::Query Query(absl::string_view path) {
- return core::Query(Resource(path));
- }
- core::Query CollectionGroupQuery(absl::string_view collection_id) {
- return core::Query(model::ResourcePath::Empty(),
- std::make_shared<const std::string>(collection_id));
- }
- /** Creates a remote event that inserts a list of documents. */
- RemoteEvent AddedRemoteEvent(const std::vector<MutableDocument>& docs,
- const std::vector<TargetId>& added_to_targets) {
- HARD_ASSERT(!docs.empty(), "Cannot pass empty docs array");
- const model::ResourcePath& collection_path = docs[0].key().path().PopLast();
- auto metadata_provider =
- remote::FakeTargetMetadataProvider::CreateEmptyResultProvider(
- collection_path, added_to_targets);
- remote::WatchChangeAggregator aggregator{&metadata_provider};
- model::SnapshotVersion version;
- for (const MutableDocument& doc : docs) {
- HARD_ASSERT(!doc.has_local_mutations(),
- "Docs from remote updates shouldn't have local changes.");
- remote::DocumentWatchChange change{added_to_targets, {}, doc.key(), doc};
- aggregator.HandleDocumentChange(change);
- version = version > doc.version() ? version : doc.version();
- }
- return aggregator.CreateRemoteEvent(version);
- }
- /** Creates a remote event that inserts a new document. */
- RemoteEvent AddedRemoteEvent(const MutableDocument& doc,
- const std::vector<TargetId>& added_to_targets) {
- std::vector<MutableDocument> docs{doc};
- return AddedRemoteEvent(docs, added_to_targets);
- }
- /** Creates a remote event with changes to a document. */
- RemoteEvent UpdateRemoteEvent(
- const MutableDocument& doc,
- const std::vector<TargetId>& updated_in_targets,
- const std::vector<TargetId>& removed_from_targets) {
- return UpdateRemoteEventWithLimboTargets(doc, updated_in_targets,
- removed_from_targets, {});
- }
- RemoteEvent UpdateRemoteEventWithLimboTargets(
- const MutableDocument& doc,
- const std::vector<TargetId>& updated_in_targets,
- const std::vector<TargetId>& removed_from_targets,
- const std::vector<TargetId>& limbo_targets) {
- HARD_ASSERT(!doc.is_found_document() || !doc.has_local_mutations(),
- "Docs from remote updates shouldn't have local changes.");
- remote::DocumentWatchChange change{updated_in_targets, removed_from_targets,
- doc.key(), doc};
- std::vector<TargetId> listens = updated_in_targets;
- listens.insert(listens.end(), removed_from_targets.begin(),
- removed_from_targets.end());
- auto metadata_provider =
- remote::FakeTargetMetadataProvider::CreateSingleResultProvider(
- doc.key(), listens, limbo_targets);
- remote::WatchChangeAggregator aggregator{&metadata_provider};
- aggregator.HandleDocumentChange(change);
- return aggregator.CreateRemoteEvent(doc.version());
- }
- // TODO(chenbrian): Rewrite SetMutation to allow parsing of field
- // transforms directly in the `values` parameter once the UserDataReader/
- // UserDataWriter changes are ported from Web and Android.
- model::SetMutation SetMutation(
- absl::string_view path,
- Message<google_firestore_v1_Value> values,
- std::vector<std::pair<std::string, TransformOperation>> transforms) {
- std::vector<FieldTransform> field_transforms;
- for (auto&& pair : transforms) {
- auto field_path = Field(std::move(pair.first));
- TransformOperation&& op_ptr = std::move(pair.second);
- FieldTransform transform(std::move(field_path), std::move(op_ptr));
- field_transforms.push_back(std::move(transform));
- }
- return model::SetMutation(Key(path), model::ObjectValue{std::move(values)},
- model::Precondition::None(),
- std::move(field_transforms));
- }
- // TODO(chenbrian): Rewrite PatchMutation to allow parsing of field
- // transforms directly in the `values` parameter once the UserDataReader/
- // UserDataWriter changes are ported from Web and Android.
- model::PatchMutation PatchMutation(
- absl::string_view path,
- Message<google_firestore_v1_Value> values,
- // TODO(rsgowman): Investigate changing update_mask to a set.
- std::vector<std::pair<std::string, TransformOperation>> transforms) {
- return PatchMutationHelper(path, std::move(values), std::move(transforms),
- Precondition::Exists(true), absl::nullopt);
- }
- model::PatchMutation PatchMutation(
- absl::string_view path,
- Message<google_firestore_v1_Value> values,
- const std::vector<model::FieldPath>& update_mask,
- std::vector<std::pair<std::string, TransformOperation>> transforms) {
- return PatchMutationHelper(path, std::move(values), std::move(transforms),
- Precondition::Exists(true), update_mask);
- }
- // TODO(chenbrian): Rewrite MergeMutation to allow parsing of field
- // transforms directly in the `values` parameter once the UserDataReader/
- // UserDataWriter changes are ported from Web and Android.
- model::PatchMutation MergeMutation(
- absl::string_view path,
- Message<google_firestore_v1_Value> values,
- const std::vector<model::FieldPath>& update_mask,
- std::vector<std::pair<std::string, TransformOperation>> transforms) {
- return PatchMutationHelper(path, std::move(values), std::move(transforms),
- Precondition::None(), update_mask);
- }
- model::PatchMutation PatchMutationHelper(
- absl::string_view path,
- Message<google_firestore_v1_Value> values,
- std::vector<std::pair<std::string, TransformOperation>> transforms,
- Precondition precondition,
- const absl::optional<std::vector<model::FieldPath>>& update_mask) {
- ObjectValue object_value{};
- std::set<FieldPath> field_mask_paths;
- std::vector<FieldTransform> field_transforms;
- for (auto&& pair : transforms) {
- auto field_path = Field(std::move(pair.first));
- TransformOperation&& op_ptr = std::move(pair.second);
- FieldTransform transform(std::move(field_path), std::move(op_ptr));
- field_transforms.push_back(std::move(transform));
- }
- for (pb_size_t i = 0; i < values->map_value.fields_count; ++i) {
- FieldPath field_path =
- Field(nanopb::MakeStringView(values->map_value.fields[i].key));
- field_mask_paths.insert(field_path);
- const google_firestore_v1_Value& value = values->map_value.fields[i].value;
- if (value.which_value_type != google_firestore_v1_Value_string_value_tag ||
- nanopb::MakeStringView(value.string_value) != kDeleteSentinel) {
- object_value.Set(field_path, DeepClone(value));
- } else if (nanopb::MakeStringView(value.string_value) == kDeleteSentinel) {
- object_value.Delete(field_path);
- }
- }
- FieldMask mask(
- update_mask.has_value()
- ? std::set<FieldPath>(update_mask->begin(), update_mask->end())
- : field_mask_paths);
- return model::PatchMutation(Key(path), std::move(object_value),
- std::move(mask), precondition,
- std::move(field_transforms));
- }
- std::pair<std::string, TransformOperation> ServerTimestamp(std::string field) {
- return std::pair<std::string, TransformOperation>(
- std::move(field), model::ServerTimestampTransform());
- }
- std::pair<std::string, TransformOperation> Increment(
- std::string field, Message<google_firestore_v1_Value> operand) {
- model::NumericIncrementTransform transform(std::move(operand));
- return std::pair<std::string, TransformOperation>(std::move(field),
- std::move(transform));
- }
- std::pair<std::string, TransformOperation> ArrayUnion(
- std::string field,
- const std::vector<Message<google_firestore_v1_Value>>& operands) {
- Message<google_firestore_v1_ArrayValue> array_value;
- SetRepeatedField(&array_value->values, &array_value->values_count,
- operands.begin(), operands.end(),
- [](const Message<google_firestore_v1_Value>& value) {
- return *DeepClone(*value).release();
- });
- model::ArrayTransform transform(TransformOperation::Type::ArrayUnion,
- std::move(array_value));
- return std::pair<std::string, TransformOperation>(std::move(field),
- std::move(transform));
- }
- model::DeleteMutation DeleteMutation(absl::string_view path) {
- return model::DeleteMutation(Key(path), Precondition::None());
- }
- model::VerifyMutation VerifyMutation(absl::string_view path, int64_t version) {
- return model::VerifyMutation(Key(path),
- Precondition::UpdateTime(Version(version)));
- }
- model::MutationResult MutationResult(int64_t version) {
- return model::MutationResult(Version(version), Array());
- }
- nanopb::ByteString ResumeToken(int64_t snapshot_version) {
- if (snapshot_version == 0) {
- // TODO(rsgowman): The other platforms return null here, though I'm not sure
- // if they ever rely on that. I suspect it'd be sufficient to return '{}'.
- // But for now, we'll just abort() until we hit a test case that actually
- // makes use of this.
- HARD_FAIL("Unsupported snapshot version %s", snapshot_version);
- }
- std::string snapshot_string =
- std::string("snapshot-") + std::to_string(snapshot_version);
- return nanopb::ByteString(snapshot_string);
- }
- model::FieldIndex MakeFieldIndex(const std::string& collection_group) {
- return {-1, collection_group, {}, model::FieldIndex::InitialState()};
- }
- model::FieldIndex MakeFieldIndex(const std::string& collection_group,
- int32_t index_id,
- model::IndexState state) {
- return {index_id, collection_group, {}, state};
- }
- model::FieldIndex MakeFieldIndex(const std::string& collection_group,
- const std::string& field,
- model::Segment::Kind kind) {
- return {-1,
- collection_group,
- {model::Segment{Field(field), kind}},
- model::FieldIndex::InitialState()};
- }
- model::FieldIndex MakeFieldIndex(const std::string& collection_group,
- const std::string& field_1,
- model::Segment::Kind kind_1,
- const std::string& field_2,
- model::Segment::Kind kind_2) {
- return {-1,
- collection_group,
- {model::Segment{Field(field_1), kind_1},
- model::Segment{Field(field_2), kind_2}},
- model::FieldIndex::InitialState()};
- }
- model::FieldIndex MakeFieldIndex(const std::string& collection_group,
- const std::string& field_1,
- model::Segment::Kind kind_1,
- const std::string& field_2,
- model::Segment::Kind kind_2,
- const std::string& field_3,
- model::Segment::Kind kind_3) {
- return {-1,
- collection_group,
- {model::Segment{Field(field_1), kind_1},
- model::Segment{Field(field_2), kind_2},
- model::Segment{Field(field_3), kind_3}},
- model::FieldIndex::InitialState()};
- }
- model::FieldIndex MakeFieldIndex(const std::string& collection_group,
- int32_t index_id,
- model::IndexState state,
- const std::string& field_1,
- model::Segment::Kind kind_1) {
- return {index_id,
- collection_group,
- {model::Segment{Field(field_1), kind_1}},
- state};
- }
- } // namespace testutil
- } // namespace firestore
- } // namespace firebase
|