1
1
mirror of https://github.com/github/semantic.git synced 2024-12-18 20:31:55 +03:00
semantic/prototype/DoubtTests/DiffTests.swift

44 lines
1.3 KiB
Swift
Raw Normal View History

2015-10-17 00:07:37 +03:00
final class DiffTests: XCTestCase {
override static func setUp() {
sranddev()
}
2015-10-17 00:13:51 +03:00
typealias Term = RangedTerm.Term
typealias Diff = Free<String, Patch<Term>>
2015-10-17 00:13:59 +03:00
let interpreter = Interpreter<Term>(equal: ==, comparable: const(true), cost: Diff.sum(const(1)))
func testEqualTermsProduceIdentityDiffs() {
property("equal terms produce identity diffs") <- forAll { (term: RangedTerm) in
Diff.sum(const(1))(self.interpreter.run(term.term, term.term)) == 0
}
}
2015-10-17 00:26:35 +03:00
func testEqualityIsReflexive() {
property("equality is reflexive") <- forAll { (diff: RangedDiff) in
Free.equals(ifPure: Patch.equals(Cofree.equals(annotation: ==, leaf: ==)), ifRoll: ==)(diff.diff, diff.diff)
}
}
func testOriginalTermsAreRecoverable() {
let equal = Cofree<String, ()>.equals(annotation: const(true), leaf: ==)
property("before state is recoverable") <- forAll { (diff: RangedDiff) in
return diff.diff.map { $0.map { $0.map(const(())) } }.before.map {
equal($0, diff.a.map(const(())))
} ?? false
}
property("after state is recoverable") <- forAll { (diff: RangedDiff) in
return diff.diff.map { $0.map { $0.map(const(())) } }.after.map {
equal($0, diff.b.map(const(())))
} ?? false
}
}
2015-10-17 00:07:37 +03:00
}
@testable import Doubt
2015-10-17 00:13:59 +03:00
import Prelude
2015-10-17 00:07:37 +03:00
import SwiftCheck
import XCTest