-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathTokenTests.swift
34 lines (30 loc) · 1.44 KB
/
TokenTests.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import XCTest
@testable import OSRMTextInstructions
class TokenTests: XCTestCase {
func testReplacingTokens() {
XCTAssertEqual("Dead Beef", "Dead Beef".replacingTokens { _ in "" })
XCTAssertEqual("Food", "F{ref}{ref}d".replacingTokens { _ in "o" })
XCTAssertEqual("Take the left stairs to the 20th floor", "Take the {modifier} stairs to the {nth} floor".replacingTokens { (tokenType, variant) -> String in
switch tokenType {
case .modifier:
return "left"
case .wayPoint:
return "20th"
default:
XCTAssert(false)
return "wrong"
}
})
XCTAssertEqual("{👿}", "{👿}".replacingTokens { _ in "👼" })
XCTAssertEqual("{👿:}", "{👿:}".replacingTokens { _ in "👼" })
XCTAssertEqual("{👿:💣}", "{👿:💣}".replacingTokens { _ in "👼" })
XCTAssertEqual("{", "{".replacingTokens { _ in "🕳" })
XCTAssertEqual("{💣", "{💣".replacingTokens { _ in "🕳" })
XCTAssertEqual("}", "}".replacingTokens { _ in "🕳" })
}
func testInflectingStrings() {
if Bundle(for: OSRMInstructionFormatter.self).preferredLocalizations.contains(where: { $0.starts(with: "ru") }) {
XCTAssertEqual("Бармалееву улицу", "Бармалеева улица".inflected(into: "accusative", version: "v5"))
}
}
}