-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathOSRMTextInstructionsTests.swift
150 lines (130 loc) · 6.49 KB
/
OSRMTextInstructionsTests.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import XCTest
import MapboxDirections
@testable import OSRMTextInstructions
class OSRMTextInstructionsTests: XCTestCase {
let instructions = OSRMInstructionFormatter(version: "v5")
override func setUp() {
super.setUp()
// Force an English locale to match the fixture language rather than the test machine’s language.
instructions.ordinalFormatter.locale = Locale(identifier: "en-US")
}
func testSentenceCasing() {
XCTAssertEqual("Capitalized String", "capitalized String".sentenceCased)
XCTAssertEqual("Capitalized String", "Capitalized String".sentenceCased)
XCTAssertEqual("S", "s".sentenceCased)
XCTAssertEqual("S", "S".sentenceCased)
XCTAssertEqual("", "".sentenceCased)
}
func testFixtures() {
let bundle = Bundle(for: OSRMTextInstructionsTests.self)
let url = bundle.url(forResource: "v5", withExtension: nil, subdirectory: "osrm-text-instructions/test/fixtures/")!
var directoryContents: [URL] = []
XCTAssertNoThrow(directoryContents = try FileManager.default.contentsOfDirectory(at: url, includingPropertiesForKeys: nil, options: []))
for type in directoryContents {
var typeDirectoryContents: [URL] = []
XCTAssertNoThrow(typeDirectoryContents = try FileManager.default.contentsOfDirectory(at: type, includingPropertiesForKeys: nil, options: []))
for fixture in typeDirectoryContents {
if type.lastPathComponent == "phrase" {
var rawJSON = Data()
XCTAssertNoThrow(rawJSON = try Data(contentsOf: fixture, options: []))
var json: [String: Any] = [:]
XCTAssertNoThrow(json = try JSONSerialization.jsonObject(with: rawJSON, options: []) as! [String: Any])
let phraseInFileName = fixture.deletingPathExtension().lastPathComponent.replacingOccurrences(of: "_", with: " ")
let phraseName = PhraseName(description: phraseInFileName)
XCTAssertNotNil(phraseName)
var phrase: String?
if let phraseName = phraseName {
phrase = instructions.phrase(named: phraseName)
}
XCTAssertNotNil(phrase)
let fixtureOptions = json["options"] as! [String: String]
let expectedValue = (json["phrases"] as! [String: String])["en"]
let actualValue = phrase?.replacingTokens(using: { (tokenType, variant) -> String in
var replacement: String?
switch tokenType {
case .firstInstruction:
replacement = fixtureOptions["instruction_one"]
case .secondInstruction:
replacement = fixtureOptions["instruction_two"]
case .distance:
replacement = fixtureOptions["distance"]
default:
XCTFail("Unexpected token type \(tokenType) in phrase \(phraseInFileName)")
}
XCTAssertNotNil(replacement, "Missing fixture option for \(tokenType)")
return replacement ?? ""
})
XCTAssertEqual(expectedValue, actualValue, fixture.path)
} else {
// parse fixture
let json = getFixture(url: fixture)
let options = json["options"] as? [String: Any]
let step = RouteStep(json: json["step"] as! [String: Any])
var roadClasses: RoadClasses? = nil
if let classes = options?["classes"] as? [String] {
roadClasses = RoadClasses(descriptions: classes)
}
// compile instruction
let instruction = instructions.string(for: step, legIndex: options?["legIndex"] as? Int, numberOfLegs: options?["legCount"] as? Int, roadClasses: roadClasses, modifyValueByKey: nil)
// check generated instruction against fixture
XCTAssertEqual(
json["instruction"] as? String,
instruction,
fixture.path
)
}
}
}
}
func getFixture(url: URL) -> [String: Any] {
var rawJSON = Data()
XCTAssertNoThrow(rawJSON = try Data(contentsOf: url, options: []))
var json: [String: Any] = [:]
XCTAssertNoThrow(json = try JSONSerialization.jsonObject(with: rawJSON, options: []) as! [String: Any])
// provide default values for properties that RouteStep
// needs, but that our not in the fixtures
var fixture: [String: Any] = [:]
var maneuver: [String: Any] = [
"location": [ 1.0, 1.0 ]
]
var step: [String: Any] = [
"mode": "driving"
]
let jsonStep = json["step"] as! [ String: Any ]
step["name"] = jsonStep["name"]
if let ref = jsonStep["ref"] {
step["ref"] = ref
}
if let exits = jsonStep["exits"] {
step["exits"] = exits
}
if let destinations = jsonStep["destinations"] {
step["destinations"] = destinations
}
if let mode = jsonStep["mode"] {
step["mode"] = mode
}
if let rotaryName = jsonStep["rotary_name"] {
step["rotary_name"] = rotaryName
}
let jsonManeuver = jsonStep["maneuver"] as! [ String: Any ]
maneuver["type"] = jsonManeuver["type"]
if let modifier = jsonManeuver["modifier"] {
maneuver["modifier"] = modifier
}
if let bearingAfter = jsonManeuver["bearing_after"] {
maneuver["bearing_after"] = bearingAfter
}
if let exit = jsonManeuver["exit"] {
maneuver["exit"] = exit
}
step["maneuver"] = maneuver
if let intersections = jsonStep["intersections"] {
step["intersections"] = intersections
}
fixture["step"] = step
fixture["instruction"] = (json["instructions"] as! [ String: Any ])["en"] as! String
fixture["options"] = json["options"]
return fixture
}
}