-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make GeneralizedTime and UTCTime Comparable. (#29)
In many cases it's useful to be able to place these into a total order. This patch adds support for ordering them.
- Loading branch information
Showing
4 changed files
with
142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftASN1 open source project | ||
// | ||
// Copyright (c) 2023 Apple Inc. and the SwiftASN1 project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftASN1 project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
import XCTest | ||
|
||
@testable import SwiftASN1 | ||
|
||
final class UTCTimeTests: XCTestCase { | ||
func testComparisons() throws { | ||
enum ExpectedComparisonResult { | ||
case lessThan | ||
case equal | ||
case greaterThan | ||
} | ||
|
||
let original = try UTCTime(year: 2020, month: 03, day: 03, hours: 03, minutes: 03, seconds: 03) | ||
|
||
func modify(_ field: WritableKeyPath<UTCTime, Int>, of time: UTCTime, by modifier: Int) -> UTCTime { | ||
var copy = time | ||
copy[keyPath: field] += modifier | ||
return copy | ||
} | ||
|
||
let integerTransformable: [WritableKeyPath<UTCTime, Int>] = [ | ||
\.year, \.month, \.day, \.hours, \.minutes, \.seconds | ||
] | ||
|
||
var transformationsAndResults: [(UTCTime, ExpectedComparisonResult)] = [] | ||
transformationsAndResults.append((original, .equal)) | ||
|
||
for transform in integerTransformable { | ||
transformationsAndResults.append((modify(transform, of: original, by: 1), .greaterThan)) | ||
transformationsAndResults.append((modify(transform, of: original, by: -1), .lessThan)) | ||
} | ||
|
||
for (newValue, expectedResult) in transformationsAndResults { | ||
switch expectedResult { | ||
case .lessThan: | ||
XCTAssertLessThan(newValue, original) | ||
XCTAssertLessThanOrEqual(newValue, original) | ||
XCTAssertGreaterThan(original, newValue) | ||
XCTAssertGreaterThanOrEqual(original, newValue) | ||
case .equal: | ||
XCTAssertGreaterThanOrEqual(newValue, original) | ||
XCTAssertGreaterThanOrEqual(original, newValue) | ||
XCTAssertLessThanOrEqual(newValue, original) | ||
XCTAssertLessThanOrEqual(original, newValue) | ||
case .greaterThan: | ||
XCTAssertGreaterThan(newValue, original) | ||
XCTAssertGreaterThanOrEqual(newValue, original) | ||
XCTAssertLessThan(original, newValue) | ||
XCTAssertLessThanOrEqual(original, newValue) | ||
} | ||
} | ||
} | ||
} |