mirror of
https://github.com/github/semantic.git
synced 2024-12-01 17:59:10 +03:00
43 lines
1.4 KiB
Swift
43 lines
1.4 KiB
Swift
final class DiffTests: XCTestCase {
|
|
func testSESOverEmptyCollectionsIsEmpty() {
|
|
XCTAssertEqual(Diff.diff([], []), [])
|
|
}
|
|
|
|
func testSESOverEmptyAndNonEmptyCollectionsIsInsertions() {
|
|
XCTAssertEqual(Diff.diff([], [ a, b ]), [ Diff.Patch(.Empty, a), Diff.Patch(.Empty, b) ])
|
|
}
|
|
|
|
func testSESOverNonEmptyAndEmptyCollectionsIsDeletions() {
|
|
XCTAssertEqual(Diff.diff([ a, b ], []), [ Diff.Patch(a, .Empty), Diff.Patch(b, .Empty) ])
|
|
}
|
|
|
|
func testSESCanInsertAtHead() {
|
|
XCTAssertEqual(Diff.diff([ a, b, c ], [ d, a, b, c ]), [ Diff.Insert(d), Diff(a), Diff(b), Diff(c) ])
|
|
}
|
|
|
|
func testSESCanDeleteAtHead() {
|
|
XCTAssertEqual(Diff.diff([ d, a, b, c ], [ a, b, c ]), [ Diff.Delete(d), Diff(a), Diff(b), Diff(c) ])
|
|
}
|
|
|
|
func testSESCanInsertInMiddle() {
|
|
XCTAssertEqual(Diff.diff([ a, b, c ], [ a, d, b, c ]), [ Diff(a), Diff.Insert(d), Diff(b), Diff(c) ])
|
|
}
|
|
|
|
func testSESCanDeleteInMiddle() {
|
|
XCTAssertEqual(Diff.diff([ a, d, b, c ], [ a, b, c ]), [ Diff(a), Diff.Delete(d), Diff(b), Diff(c) ])
|
|
}
|
|
|
|
func testSESOfLongerSequences() {
|
|
// fixme: this is awfully slow for such a short sequence
|
|
XCTAssertEqual(Diff.diff([ a, b, c, a, b, b, a ], [ c, b, a, b, a, c ]), [ Diff.Patch(a, c), Diff(b), Diff.Delete(c), Diff(a), Diff.Delete(b), Diff(b), Diff(a), Diff.Insert(c) ])
|
|
}
|
|
}
|
|
|
|
private let a = Term(.Leaf("a"))
|
|
private let b = Term(.Leaf("b"))
|
|
private let c = Term(.Leaf("c"))
|
|
private let d = Term(.Leaf("d"))
|
|
|
|
import Doubt
|
|
import XCTest
|