CodableTimestampTests.swift 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright 2019 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import FirebaseFirestore
  17. import FirebaseFirestoreSwift
  18. import Foundation
  19. import XCTest
  20. class CodableTimestampTests: XCTestCase {
  21. func testTimestampEncodes() {
  22. let timestamp = Timestamp(seconds: 37, nanoseconds: 123)
  23. do {
  24. let jsonData = try JSONEncoder().encode(timestamp)
  25. let json = String(data: jsonData, encoding: .utf8)!
  26. // The ordering of attributes in the JSON output is not guaranteed, so just verify that
  27. // each required property is present.
  28. XCTAssert(json.contains("\"seconds\":37"))
  29. XCTAssert(json.contains("\"nanoseconds\":123"))
  30. } catch {
  31. XCTFail("Error: \(error)")
  32. }
  33. }
  34. func testTimestampDecodes() {
  35. let json = """
  36. {
  37. "seconds": 37,
  38. "nanoseconds": 122
  39. }
  40. """
  41. let jsonData: Data = json.data(using: .utf8)!
  42. let timestamp = try! JSONDecoder().decode(Timestamp.self, from: jsonData)
  43. XCTAssertEqual(37, timestamp.seconds)
  44. XCTAssertEqual(122, timestamp.nanoseconds)
  45. }
  46. }