CodableTimestampTests.swift 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 Foundation
  18. import XCTest
  19. class CodableTimestampTests: XCTestCase {
  20. func testTimestampEncodes() {
  21. let timestamp = Timestamp(seconds: 37, nanoseconds: 123)
  22. do {
  23. let jsonData = try JSONEncoder().encode(timestamp)
  24. let json = String(data: jsonData, encoding: .utf8)!
  25. // The ordering of attributes in the JSON output is not guaranteed, so just verify that
  26. // each required property is present.
  27. XCTAssert(json.contains("\"seconds\":37"))
  28. XCTAssert(json.contains("\"nanoseconds\":123"))
  29. } catch {
  30. XCTFail("Error: \(error)")
  31. }
  32. }
  33. func testTimestampDecodes() {
  34. let json = """
  35. {
  36. "seconds": 37,
  37. "nanoseconds": 122
  38. }
  39. """
  40. let jsonData: Data = json.data(using: .utf8)!
  41. let timestamp = try! JSONDecoder().decode(Timestamp.self, from: jsonData)
  42. XCTAssertEqual(37, timestamp.seconds)
  43. XCTAssertEqual(122, timestamp.nanoseconds)
  44. }
  45. }