-
Notifications
You must be signed in to change notification settings - Fork 395
/
autocomplete.php
251 lines (211 loc) · 7.03 KB
/
autocomplete.php
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php
include_once dirname(__FILE__) . '/config.php';
// Testing the tests: curl -v http://localhost:8080/php/autocomplete.php -d qs=STRING
/**
* Search for string found in both airport and airline name
*/
class MultiSearchSharedLongStringTest extends WebTestCase {
public function test() {
global $webroot, $qs_string;
$params = array("qs" => "Singapore");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Singapore Changi");
$this->assertText("(SIN)");
$this->assertText("Singapore Airlines");
$this->assertText("(SQ)");
$this->assertNoText("(Priv)");
}
}
/**
* Search for string found only in airport name
*/
class MultiSearchAirportOnlyLongStringTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("qs" => "Ayers");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Uluru");
$this->assertText("(AYQ)");
$this->assertNoText("(Priv)");
}
}
/**
* Search for string found in only airline name
*/
class MultiSearchAirlineOnlyLongStringTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("qs" => "Qantas");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("(QF)");
$this->assertText("Qantas");
$this->assertNoText("(Priv)");
}
}
/**
* Search for airport by IATA
*/
class MultiSearchAirportIATATest extends WebTestCase {
public function test() {
global $webroot, $airport;
$params = array("qs" => "SIN");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Singapore Changi");
$this->assertText("(SIN)");
$this->assertNoText("(Priv)");
}
}
/**
* Search for airline by IATA
*/
class MultiSearchAirlineIATATest extends WebTestCase {
public function test() {
global $webroot;
$params = array("qs" => "SQ");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Singapore Airlines");
$this->assertText("(SQ)");
$this->assertNoText("(Priv)");
}
}
/**
* Single airport search by short city name
*/
class SingleAirportShortCityCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "src_ap" => "Hong");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("HKG:");
}
}
/**
* Single airport search by long city name
*/
class SingleAirportCityLongCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "src_ap" => "Hamad");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("DOH:");
}
}
/**
* Single airport search by IATA code
*/
class SingleAirportIATACompleteTest extends WebTestCase {
public function test() {
global $webroot, $airport;
$params = array("quick" => "true", "src_ap" => "SIN");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("SIN:");
}
}
/**
* Single airport search by ICAO code
*/
class SingleAirportICAOCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "src_ap" => "WSSS");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("SIN:");
}
}
/**
* Ensure that autocompleted entries still match after minor edits
*/
class SingleAirportQueryTrimTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "src_ap" => "Singapore Changi (SIN) Blah Blah");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("SIN:");
$params = array("quick" => "true", "src_ap" => "Singapore C. (SIN) Blah Blah");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("SIN:");
$params = array("quick" => "true", "src_ap" => "Hong Kong-Chek Lap Kok Interna. (HKG), Hong Kong");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("HKG:");
}
}
/**
* Single airline search by name
*/
class SingleAirlineNameCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "airline" => "Qantas");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("(QF)");
$this->assertText(";Qantas");
}
}
/**
* Single airline search by alias
*/
class SingleAirlineAliasCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "airline" => "JAL Japan");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("(JL)");
$this->assertText(";Japan");
}
}
/**
* Single airline search by IATA code
*/
class SingleAirlineIATACompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "airline" => "SQ");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("(SQ");
$this->assertText(";Singapore");
}
}
/**
* Single airline search by ICAO code
*/
class SingleAirlineICAOCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "airline" => "SIA");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("(SQ)");
$this->assertText(";Singapore");
}
}
class SinglePlaneMajorNameCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "plane" => "737");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Boeing 737");
}
}
class SinglePlaneMajorNameMinorVariantCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "plane" => "737-9");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Boeing 737-900");
}
}
class SinglePlaneMinorNameCompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "plane" => "Xian");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Xian MA60");
}
}
class SinglePlaneIATACompleteTest extends WebTestCase {
public function test() {
global $webroot;
$params = array("quick" => "true", "plane" => "734");
$msg = $this->post($webroot . "php/autocomplete.php", $params);
$this->assertText("Boeing 737-400");
}
}