| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- /*
- * Copyright 2019 Google LLC
- *
- * 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.
- */
- import Foundation
- import FirebaseFirestore
- @testable import FirebaseFirestoreSwift
- class CodableIntegrationTests: FSTIntegrationTestCase {
- private enum WriteFlavor {
- case docRef
- case writeBatch
- case transaction
- }
- private let allFlavors: [WriteFlavor] = [.docRef, .writeBatch, .transaction]
- private func setData<T: Encodable>(from value: T,
- forDocument doc: DocumentReference,
- withFlavor flavor: WriteFlavor = .docRef,
- merge: Bool? = nil,
- mergeFields: [Any]? = nil) throws {
- let completion = completionForExpectation(withName: "setData")
- switch flavor {
- case .docRef:
- if let merge = merge {
- try doc.setData(from: value, merge: merge, completion: completion)
- } else if let mergeFields = mergeFields {
- try doc.setData(from: value, mergeFields: mergeFields, completion: completion)
- } else {
- try doc.setData(from: value, completion: completion)
- }
- case .writeBatch:
- if let merge = merge {
- try doc.firestore.batch().setData(from: value, forDocument: doc, merge: merge)
- .commit(completion: completion)
- } else if let mergeFields = mergeFields {
- try doc.firestore.batch().setData(from: value, forDocument: doc, mergeFields: mergeFields)
- .commit(completion: completion)
- } else {
- try doc.firestore.batch().setData(from: value, forDocument: doc)
- .commit(completion: completion)
- }
- case .transaction:
- doc.firestore.runTransaction({ transaction, errorPointer -> Any? in
- do {
- if let merge = merge {
- try transaction.setData(from: value, forDocument: doc, merge: merge)
- } else if let mergeFields = mergeFields {
- try transaction.setData(from: value, forDocument: doc, mergeFields: mergeFields)
- } else {
- try transaction.setData(from: value, forDocument: doc)
- }
- } catch {
- XCTFail("setData with transaction failed.")
- }
- return nil
- }) { object, error in
- completion(error)
- }
- }
- awaitExpectations()
- }
- func testCodableRoundTrip() throws {
- struct Model: Codable, Equatable {
- var name: String
- var age: Int32
- var ts: Timestamp
- var geoPoint: GeoPoint
- var docRef: DocumentReference
- }
- let docToWrite = documentRef()
- let model = Model(name: "test",
- age: 42,
- ts: Timestamp(seconds: 987_654_321, nanoseconds: 0),
- geoPoint: GeoPoint(latitude: 45, longitude: 54),
- docRef: docToWrite)
- for flavor in allFlavors {
- try setData(from: model, forDocument: docToWrite, withFlavor: flavor)
- let readAfterWrite = try readDocument(forRef: docToWrite).data(as: Model.self)
- XCTAssertEqual(readAfterWrite, model, "Failed with flavor \(flavor)")
- }
- }
- func testServerTimestamp() throws {
- struct Model: Codable, Equatable {
- var name: String
- @ServerTimestamp var ts: Timestamp? = nil
- }
- let model = Model(name: "name")
- let docToWrite = documentRef()
- for flavor in allFlavors {
- try setData(from: model, forDocument: docToWrite, withFlavor: flavor)
- let decoded = try readDocument(forRef: docToWrite).data(as: Model.self)
- XCTAssertNotNil(decoded.ts, "Failed with flavor \(flavor)")
- if let ts = decoded.ts {
- XCTAssertGreaterThan(ts.seconds, 1_500_000_000, "Failed with flavor \(flavor)")
- } else {
- XCTFail("Expect server timestamp is set, but getting .pending")
- }
- }
- }
- func testServerTimestampBehavior() throws {
- struct Model: Codable, Equatable {
- var name: String
- @ServerTimestamp var ts: Timestamp? = nil
- }
- disableNetwork()
- let docToWrite = documentRef()
- let now = Int64(Date().timeIntervalSince1970)
- let pastTimestamp = Timestamp(seconds: 807_940_800, nanoseconds: 0)
- // Write a document with a current value to enable testing with .previous.
- let originalModel = Model(name: "name", ts: pastTimestamp)
- let completion1 = completionForExpectation(withName: "setData")
- try docToWrite.setData(from: originalModel, completion: completion1)
- // Overwrite with a nil server timestamp so that ServerTimestampBehavior is testable.
- let newModel = Model(name: "name")
- let completion2 = completionForExpectation(withName: "setData")
- try docToWrite.setData(from: newModel, completion: completion2)
- let snapshot = readDocument(forRef: docToWrite)
- var decoded = try snapshot.data(as: Model.self, with: .none)
- XCTAssertNil(decoded.ts)
- decoded = try snapshot.data(as: Model.self, with: .estimate)
- XCTAssertNotNil(decoded.ts)
- XCTAssertNotNil(decoded.ts?.seconds)
- XCTAssertGreaterThanOrEqual(decoded.ts!.seconds, now)
- decoded = try snapshot.data(as: Model.self, with: .previous)
- XCTAssertNotNil(decoded.ts)
- XCTAssertNotNil(decoded.ts?.seconds)
- XCTAssertEqual(decoded.ts!.seconds, pastTimestamp.seconds)
- enableNetwork()
- awaitExpectations()
- }
- func testFieldValue() throws {
- struct Model: Encodable {
- var name: String
- var array: FieldValue
- var intValue: FieldValue
- }
- let model = Model(
- name: "name",
- array: FieldValue.arrayUnion([1, 2, 3]),
- intValue: FieldValue.increment(3 as Int64)
- )
- let docToWrite = documentRef()
- for flavor in allFlavors {
- try setData(from: model, forDocument: docToWrite, withFlavor: flavor)
- let data = readDocument(forRef: docToWrite)
- XCTAssertEqual(data["array"] as! [Int], [1, 2, 3], "Failed with flavor \(flavor)")
- XCTAssertEqual(data["intValue"] as! Int, 3, "Failed with flavor \(flavor)")
- }
- }
- func testExplicitNull() throws {
- struct Model: Encodable {
- var name: String
- @ExplicitNull var explicitNull: String?
- var optional: String?
- }
- let model = Model(
- name: "name",
- explicitNull: nil,
- optional: nil
- )
- let docToWrite = documentRef()
- for flavor in allFlavors {
- try setData(from: model, forDocument: docToWrite, withFlavor: flavor)
- let data = readDocument(forRef: docToWrite).data()
- XCTAssertTrue(data!.keys.contains("explicitNull"), "Failed with flavor \(flavor)")
- XCTAssertEqual(data!["explicitNull"] as! NSNull, NSNull(), "Failed with flavor \(flavor)")
- XCTAssertFalse(data!.keys.contains("optional"), "Failed with flavor \(flavor)")
- }
- }
- func testSelfDocumentID() throws {
- struct Model: Codable, Equatable {
- var name: String
- @DocumentID var docId: DocumentReference?
- }
- let docToWrite = documentRef()
- let model = Model(
- name: "name",
- docId: nil
- )
- try setData(from: model, forDocument: docToWrite, withFlavor: .docRef)
- let data = readDocument(forRef: docToWrite).data()
- // "docId" is ignored during encoding
- XCTAssertEqual(data! as! [String: String], ["name": "name"])
- // Decoded result has "docId" auto-populated.
- let decoded = try readDocument(forRef: docToWrite).data(as: Model.self)
- XCTAssertEqual(decoded, Model(name: "name", docId: docToWrite))
- }
- func testSelfDocumentIDWithCustomCodable() throws {
- struct Model: Codable, Equatable {
- var name: String
- @DocumentID var docId: DocumentReference?
- enum CodingKeys: String, CodingKey {
- case name
- case docId
- }
- public init(name: String, docId: DocumentReference?) {
- self.name = name
- self.docId = docId
- }
- public init(from decoder: Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- name = try container.decode(String.self, forKey: .name)
- docId = try container.decode(DocumentID<DocumentReference>.self, forKey: .docId)
- .wrappedValue
- }
- public func encode(to encoder: Encoder) throws {
- var container = encoder.container(keyedBy: CodingKeys.self)
- try container.encode(name, forKey: .name)
- // DocumentId should not be encoded when writing to Firestore; it's auto-populated when
- // reading.
- }
- }
- let docToWrite = documentRef()
- let model = Model(
- name: "name",
- docId: nil
- )
- try setData(from: model, forDocument: docToWrite, withFlavor: .docRef)
- let data = readDocument(forRef: docToWrite).data()
- // "docId" is ignored during encoding
- XCTAssertEqual(data! as! [String: String], ["name": "name"])
- // Decoded result has "docId" auto-populated.
- let decoded = try readDocument(forRef: docToWrite).data(as: Model.self)
- XCTAssertEqual(decoded, Model(name: "name", docId: docToWrite))
- }
- func testSetThenMerge() throws {
- struct Model: Codable, Equatable {
- var name: String? = nil
- var age: Int32? = nil
- var hobby: String? = nil
- }
- let docToWrite = documentRef()
- let model = Model(name: "test",
- age: 42, hobby: nil)
- // 'name' will be skipped in merge because it's Optional.
- let update = Model(name: nil, age: 43, hobby: "No")
- for flavor in allFlavors {
- try setData(from: model, forDocument: docToWrite, withFlavor: flavor)
- try setData(from: update, forDocument: docToWrite, withFlavor: flavor, merge: true)
- var readAfterUpdate = try readDocument(forRef: docToWrite).data(as: Model.self)
- XCTAssertEqual(readAfterUpdate, Model(name: "test",
- age: 43, hobby: "No"), "Failed with flavor \(flavor)")
- let newUpdate = Model(name: "xxxx", age: 10, hobby: "Play")
- // Note 'name' is not updated.
- try setData(from: newUpdate, forDocument: docToWrite, withFlavor: flavor,
- mergeFields: ["age", FieldPath(["hobby"])])
- readAfterUpdate = try readDocument(forRef: docToWrite).data(as: Model.self)
- XCTAssertEqual(readAfterUpdate, Model(name: "test",
- age: 10,
- hobby: "Play"), "Failed with flavor \(flavor)")
- }
- }
- func testAddDocument() throws {
- struct Model: Codable, Equatable {
- var name: String
- }
- let collection = collectionRef()
- let model = Model(name: "test")
- let added = expectation(description: "Add document")
- let docRef = try collection.addDocument(from: model) { error in
- XCTAssertNil(error)
- added.fulfill()
- }
- awaitExpectations()
- let result = try readDocument(forRef: docRef).data(as: Model.self)
- XCTAssertEqual(model, result)
- }
- }
|