forked from phonegap/phonegap-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobalization.tests.js
404 lines (403 loc) · 32.4 KB
/
globalization.tests.js
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
Tests.prototype.GlobalizationTests = function() {
module('Globalization (window.plugins.globalization)');
// use these varibales to hold the formatted string results that we will later use during parsing
// this is necessary so that we can execute the tests in all locales.
var formattedDefaultDate;
var formattedShortDate;
var formattedFullDate;
var formattedDefaultNumber;
var formattedPercentNumber;
test("should exist", function() {
expect(1);
ok(window.plugins.globalization != null, "window.plugins.globalization should not be null.");
});
test("should contain a getLocaleName function", function() {
expect(2);
ok(typeof window.plugins.globalization.getLocaleName != 'undefined' && window.plugins.globalization.getLocaleName != null, "window.plugins.globalization.getLocaleName should not be null.");
ok(typeof window.plugins.globalization.getLocaleName == 'function', "window.plugins.globalization.getLocaleName should be a function.");
});
test("getLocaleName success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getLocaleName success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in getLocaleName success callback should have an 'value' property.");
ok(typeof a.value == 'string', "Properties object's 'value' property returned in getLocaleName success callback should be of type 'string'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in getLocaleName success callback should have an length greater than 0.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getLocaleName(win, fail);
});
test("should contain a dateToString function", function() {
expect(2);
ok(typeof window.plugins.globalization.dateToString != 'undefined' && window.plugins.globalization.dateToString != null, "window.plugins.globalization.dateToString should not be null.");
ok(typeof window.plugins.globalization.dateToString == 'function', "window.plugins.globalization.dateToString should be a function.");
});
test("dateToString using default options, success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in dateToString success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in dateToString success callback should have an 'value' property.");
ok(typeof a.value == 'string', "Properties object's 'value' property returned in dateToString success callback should be of type 'string'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in dateToString success callback should have an length greater than 0.");
// save the formatted result to use during the parsing tests
formattedDefaultDate = a.value;
start();
};
var fail = function() { start(); };
window.plugins.globalization.dateToString(new Date(), win, fail);
});
test("dateToString using formatLength=short and selector=date options, success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in dateToString success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in dateToString success callback should have an 'value' property.");
ok(typeof a.value == 'string', "Properties object's 'value' property returned in dateToString success callback should be of type 'string'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in dateToString success callback should have an length greater than 0.");
// save the formatted result to use during the parsing tests
formattedShortDate = a.value;
start();
};
var fail = function() { start(); };
window.plugins.globalization.dateToString(new Date(), win, fail, {formatLength: 'short', selector: 'date'});
});
test("dateToString using formatLength=full and selector=date options, success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in dateToString success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in dateToString success callback should have an 'value' property.");
ok(typeof a.value == 'string', "Properties object's 'value' property returned in dateToString success callback should be of type 'string'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in dateToString success callback should have an length greater than 0.");
// save the formatted result to use during the parsing tests
formattedFullDate = a.value;
start();
};
var fail = function() { start(); };
window.plugins.globalization.dateToString(new Date(), win, fail, {formatLength: 'full', selector: 'date'});
});
test("should contain a stringToDate function", function() {
expect(2);
ok(typeof window.plugins.globalization.stringToDate != 'undefined' && window.plugins.globalization.stringToDate != null, "window.plugins.globalization.stringToDate should not be null.");
ok(typeof window.plugins.globalization.stringToDate == 'function', "window.plugins.globalization.stringToDate should be a function.");
});
test("stringToDate using default options, success callback should be called with a Properties object", function() {
expect(14);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in stringToDate success callback should be of type 'object'.");
ok(typeof a.year == 'number', "Properties object's 'year' property returned in stringToDate success callback should be of type 'number'.");
ok(a.year >= 0 && a.year <=9999, "Properties object returned in stringToDate success callback should have a year less than 9999.");
ok(typeof a.month == 'number', "Properties object's 'month' property returned in stringToDate success callback should be of type 'number'.");
ok(a.month >= 0 && a.month <=11, "Properties object returned in stringToDate success callback should have a month betweeen 0 and 11.");
ok(typeof a.day == 'number', "Properties object's 'day' property returned in stringToDate success callback should be of type 'number'.");
ok(a.day >= 1 && a.day <=31, "Properties object returned in stringToDate success callback should have a day betweeen 1 and 31.");
ok(typeof a.hour == 'number', "Properties object's 'hour' property returned in stringToDate success callback should be of type 'number'.");
ok(a.hour >= 0 && a.hour <=23, "Properties object returned in stringToDate success callback should have an hour betweeen 0 and 23.");
ok(typeof a.minute == 'number', "Properties object's 'minute' property returned in stringToDate success callback should be of type 'number'.");
ok(a.minute >= 0 && a.minute <=59, "Properties object returned in stringToDate success callback should have a minute betweeen 0 and 59.");
ok(typeof a.second == 'number', "Properties object's 'second' property returned in stringToDate success callback should be of type 'number'.");
ok(a.second >= 0 && a.second <=59, "Properties object returned in stringToDate success callback should have a second betweeen 0 and 59.");
ok(typeof a.millisecond == 'number', "Properties object's 'millisecond' property returned in stringToDate success callback should be of type 'number'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.stringToDate(formattedDefaultDate, win, fail);
});
test("stringToDate using formatLength=short and selector=date options, success callback should be called with a Properties object", function() {
expect(14);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in stringToDate success callback should be of type 'object'.");
ok(typeof a.year == 'number', "Properties object's 'year' property returned in stringToDate success callback should be of type 'number'.");
ok(a.year >= 0 && a.year <=9999, "Properties object returned in stringToDate success callback should have a year less than 9999.");
ok(typeof a.month == 'number', "Properties object's 'month' property returned in stringToDate success callback should be of type 'number'.");
ok(a.month >= 0 && a.month <=11, "Properties object returned in stringToDate success callback should have a month betweeen 0 and 11.");
ok(typeof a.day == 'number', "Properties object's 'day' property returned in stringToDate success callback should be of type 'number'.");
ok(a.day >= 1 && a.day <=31, "Properties object returned in stringToDate success callback should have a day betweeen 1 and 31.");
ok(typeof a.hour == 'number', "Properties object's 'hour' property returned in stringToDate success callback should be of type 'number'.");
ok(a.hour >= 0 && a.hour <=23, "Properties object returned in stringToDate success callback should have an hour betweeen 0 and 23.");
ok(typeof a.minute == 'number', "Properties object's 'minute' property returned in stringToDate success callback should be of type 'number'.");
ok(a.minute >= 0 && a.minute <=59, "Properties object returned in stringToDate success callback should have a minute betweeen 0 and 59.");
ok(typeof a.second == 'number', "Properties object's 'second' property returned in stringToDate success callback should be of type 'number'.");
ok(a.second >= 0 && a.second <=59, "Properties object returned in stringToDate success callback should have a second betweeen 0 and 59.");
ok(typeof a.millisecond == 'number', "Properties object's 'millisecond' property returned in stringToDate success callback should be of type 'number'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.stringToDate(formattedShortDate, win, fail, {formatLength: 'short', selector: 'date'});
});
test("stringToDate using formatLength=full and selector=date options, success callback should be called with a Properties object", function() {
expect(14);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in stringToDate success callback should be of type 'object'.");
ok(typeof a.year == 'number', "Properties object's 'year' property returned in stringToDate success callback should be of type 'number'.");
ok(a.year >= 0 && a.year <=9999, "Properties object returned in stringToDate success callback should have a year less than 9999.");
ok(typeof a.month == 'number', "Properties object's 'month' property returned in stringToDate success callback should be of type 'number'.");
ok(a.month >= 0 && a.month <=11, "Properties object returned in stringToDate success callback should have a month betweeen 0 and 11.");
ok(typeof a.day == 'number', "Properties object's 'day' property returned in stringToDate success callback should be of type 'number'.");
ok(a.day >= 1 && a.day <=31, "Properties object returned in stringToDate success callback should have a day betweeen 1 and 31.");
ok(typeof a.hour == 'number', "Properties object's 'hour' property returned in stringToDate success callback should be of type 'number'.");
ok(a.hour >= 0 && a.hour <=23, "Properties object returned in stringToDate success callback should have an hour betweeen 0 and 23.");
ok(typeof a.minute == 'number', "Properties object's 'minute' property returned in stringToDate success callback should be of type 'number'.");
ok(a.minute >= 0 && a.minute <=59, "Properties object returned in stringToDate success callback should have a minute betweeen 0 and 59.");
ok(typeof a.second == 'number', "Properties object's 'second' property returned in stringToDate success callback should be of type 'number'.");
ok(a.second >= 0 && a.second <=59, "Properties object returned in stringToDate success callback should have a second betweeen 0 and 59.");
ok(typeof a.millisecond == 'number', "Properties object's 'millisecond' property returned in stringToDate success callback should be of type 'number'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.stringToDate(formattedFullDate, win, fail, {formatLength: 'full', selector: 'date'});
});
test("should contain a getDatePattern function", function() {
expect(2);
ok(typeof window.plugins.globalization.getDatePattern != 'undefined' && window.plugins.globalization.getDatePattern != null, "window.plugins.globalization.getDatePattern should not be null.");
ok(typeof window.plugins.globalization.getDatePattern == 'function', "window.plugins.globalization.getDatePattern should be a function.");
});
test("getDatePattern using default options, success callback should be called with a Properties object", function() {
expect(7);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getDatePattern success callback should be of type 'object'.");
ok(typeof a.pattern == 'string', "Properties object's 'pattern' property returned in getDatePattern success callback should be of type 'string'.");
ok(a.pattern.length > 0, "Properties object's 'pattern' property returned in getDatePattern success callback should have an length greater than 0.");
ok(typeof a.timezone == 'string', "Properties object's 'timezone' property returned in getDatePattern success callback should be of type 'string'.");
ok(a.timezone.length > 0, "Properties object's 'timezone' property returned in getDatePattern success callback should have an length greater than 0.");
ok(typeof a.utc_offset == 'number', "Properties object's 'utc_offset' property returned in getDatePattern success callback should be of type 'number'.");
ok(typeof a.dst_offset == 'number', "Properties object's 'dst_offset' property returned in getDatePattern success callback should be of type 'number'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getDatePattern(win, fail);
});
test("getDatePattern using formatLength=medium and selector=date options, success callback should be called with a Properties object", function() {
expect(7);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getDatePattern success callback should be of type 'object'.");
ok(typeof a.pattern == 'string', "Properties object's 'pattern' property returned in getDatePattern success callback should be of type 'string'.");
ok(a.pattern.length > 0, "Properties object's 'pattern' property returned in getDatePattern success callback should have an length greater than 0.");
ok(typeof a.timezone == 'string', "Properties object's 'timezone' property returned in getDatePattern success callback should be of type 'string'.");
ok(a.timezone.length > 0, "Properties object's 'timezone' property returned in getDatePattern success callback should have an length greater than 0.");
ok(typeof a.utc_offset == 'number', "Properties object's 'utc_offset' property returned in getDatePattern success callback should be of type 'number'.");
ok(typeof a.dst_offset == 'number', "Properties object's 'dst_offset' property returned in getDatePattern success callback should be of type 'number'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getDatePattern(win, fail, {formatLength: 'medium', selector: 'date'});
});
test("should contain a getDateNames function", function() {
expect(2);
ok(typeof window.plugins.globalization.getDateNames != 'undefined' && window.plugins.globalization.getDateNames != null, "window.plugins.globalization.getDateNames should not be null.");
ok(typeof window.plugins.globalization.getDateNames == 'function', "window.plugins.globalization.getDateNames should be a function.");
});
test("getDateNames using default options, success callback should be called with a Properties object", function() {
expect(5);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getDateNames success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in getDateNames success callback should have an 'value' property.");
ok(a.value instanceof Array, "Properties object's 'value' property returned in getDateNames success callback should be an instance of an 'Array'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in getDateNames success callback should have an length greater than 0.");
ok(typeof a.value[0] == 'string', "Properties object's 'Array' values returned in getDateNames success callback should be of type 'string'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getDateNames(win, fail);
});
test("getDateNames using type=narrow and item=days options, success callback should be called with a Properties object", function() {
expect(5);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getDateNames success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in getDateNames success callback should have an 'value' property.");
ok(a.value instanceof Array, "Properties object's 'value' property returned in getDateNames success callback should be an instance of an 'Array'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in getDateNames success callback should have an length greater than 0.");
ok(typeof a.value[0] == 'string', "Properties object's 'Array' values returned in getDateNames success callback should be of type 'string'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getDateNames(win, fail, {type: 'narrow', item: 'days'});
});
test("should contain a isDayLightSavingsTime function", function() {
expect(2);
ok(typeof window.plugins.globalization.isDayLightSavingsTime != 'undefined' && window.plugins.globalization.isDayLightSavingsTime != null, "window.plugins.globalization.isDaylightSavingsTime should not be null.");
ok(typeof window.plugins.globalization.isDayLightSavingsTime == 'function', "window.plugins.globalization.isDayLightSavingsTime should be a function.");
});
test("isDayLightSavingsTime success callback should be called with a Properties object", function() {
expect(3);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in isDayLightSavingsTime success callback should be of type 'object'.");
ok(a.dst != null, "Properties object returned in isDayLightSavingsTime success callback should have an 'dst' property.");
ok(typeof a.dst == 'boolean', "Properties object's 'dst' property returned in isDayLightSavingsTime success callback should be of type 'boolean'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.isDayLightSavingsTime(new Date(), win, fail);
});
test("should contain a getFirstDayOfWeek function", function() {
expect(2);
ok(typeof window.plugins.globalization.getFirstDayOfWeek != 'undefined' && window.plugins.globalization.getFirstDayOfWeek != null, "window.plugins.globalization.getFirstDayOfWeek should not be null.");
ok(typeof window.plugins.globalization.getFirstDayOfWeek == 'function', "window.plugins.globalization.getFirstDayOfWeek should be a function.");
});
test("getFirstDayOfWeek success callback should be called with a Properties object", function() {
expect(3);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getFirstDayOfWeek success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in getFirstDayOfWeek success callback should have an 'value' property.");
ok(typeof a.value == 'number', "Properties object's 'value' property returned in getFirstDayOfWeek success callback should be of type 'number'.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getFirstDayOfWeek(win, fail);
});
test("should contain a numberToString function", function() {
expect(2);
ok(typeof window.plugins.globalization.numberToString != 'undefined' && window.plugins.globalization.numberToString != null, "window.plugins.globalization.numberToString should not be null.");
ok(typeof window.plugins.globalization.numberToString == 'function', "window.plugins.globalization.numberToString should be a function.");
});
test("numberToString using default options, success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in numberToString success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in numberToString success callback should have an 'value' property.");
ok(typeof a.value == 'string', "Properties object's 'value' property returned in numberToString success callback should be of type 'string'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in numberToString success callback should have an length greater than 0.");
// save the formatted result to use during parsing
formattedDefaultNumber = a.value;
start();
};
var fail = function() { start(); };
window.plugins.globalization.numberToString(3.25, win, fail);
});
test("numberToString using type=percent options, success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in numberToString success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in numberToString success callback should have an 'value' property.");
ok(typeof a.value == 'string', "Properties object's 'value' property returned in numberToString success callback should be of type 'string'.");
ok(a.value.length > 0, "Properties object's 'value' property returned in numberToString success callback should have an length greater than 0.");
// save the formatted result to use during parsing
formattedPercentNumber = a.value;
start();
};
var fail = function() { start(); };
window.plugins.globalization.numberToString(.25, win, fail, {type: 'percent'});
});
test("should contain a stringToNumber function", function() {
expect(2);
ok(typeof window.plugins.globalization.stringToNumber != 'undefined' && window.plugins.globalization.stringToNumber != null, "window.plugins.globalization.stringToNumber should not be null.");
ok(typeof window.plugins.globalization.stringToNumber == 'function', "window.plugins.globalization.stringToNumber should be a function.");
});
test("stringToNumber using default options, success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in stringToNumber success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in stringToNumber success callback should have an 'value' property.");
ok(typeof a.value == 'number', "Properties object's 'value' property returned in stringToNumber success callback should be of type 'number'.");
ok(a.value > 0, "Properties object's 'value' property returned in stringToNumber success callback should have a value greater than 0.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.stringToNumber(formattedDefaultNumber, win, fail);
});
test("stringToNumber using type=percent options, success callback should be called with a Properties object", function() {
expect(4);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in stringToNumber success callback should be of type 'object'.");
ok(a.value != null, "Properties object returned in stringToNumber success callback should have an 'value' property.");
ok(typeof a.value == 'number', "Properties object's 'value' property returned in stringToNumber success callback should be of type 'number'.");
ok(a.value > 0, "Properties object's 'value' property returned in stringToNumber success callback should have a value greater than 0.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.stringToNumber(formattedPercentNumber, win, fail, {type: 'percent'});
});
test("should contain a getNumberPattern function", function() {
expect(2);
ok(typeof window.plugins.globalization.getNumberPattern != 'undefined' && window.plugins.globalization.getNumberPattern != null, "window.plugins.globalization.getNumberPattern should not be null.");
ok(typeof window.plugins.globalization.getNumberPattern == 'function', "window.plugins.globalization.getNumberPattern should be a function.");
});
test("getNumberPattern using default options, success callback should be called with a Properties object", function() {
expect(14);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getNumberPattern success callback should be of type 'object'.");
ok(typeof a.pattern == 'string', "Properties object's 'pattern' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.pattern.length > 0, "Properties object's 'pattern' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.symbol == 'string', "Properties object's 'symbol' property returned in getNumberPattern success callback should be of type 'string'.");
ok(typeof a.fraction == 'number', "Properties object's 'fraction' property returned in getNumberPattern success callback should be of type 'number'.");
ok(typeof a.rounding == 'number', "Properties object's 'rounding' property returned in getNumberPattern success callback should be of type 'number'.");
ok(typeof a.positive == 'string', "Properties object's 'positive' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.positive.length > 0, "Properties object's 'positive' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.negative == 'string', "Properties object's 'negative' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.negative.length > 0, "Properties object's 'negative' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.decimal == 'string', "Properties object's 'decimal' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.decimal.length > 0, "Properties object's 'decimal' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.grouping == 'string', "Properties object's 'grouping' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.grouping.length > 0, "Properties object's 'grouping' property returned in getNumberPattern success callback should have an length greater than 0.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getNumberPattern(win, fail);
});
test("getNumberPattern using type=percent options, success callback should be called with a Properties object", function() {
expect(15);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getNumberPattern success callback should be of type 'object'.");
ok(typeof a.pattern == 'string', "Properties object's 'pattern' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.pattern.length > 0, "Properties object's 'pattern' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.symbol == 'string', "Properties object's 'symbol' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.symbol.length > 0, "Properties object's 'symbol' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.fraction == 'number', "Properties object's 'fraction' property returned in getNumberPattern success callback should be of type 'number'.");
ok(typeof a.rounding == 'number', "Properties object's 'rounding' property returned in getNumberPattern success callback should be of type 'number'.");
ok(typeof a.positive == 'string', "Properties object's 'positive' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.positive.length > 0, "Properties object's 'positive' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.negative == 'string', "Properties object's 'negative' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.negative.length > 0, "Properties object's 'negative' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.decimal == 'string', "Properties object's 'decimal' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.decimal.length > 0, "Properties object's 'decimal' property returned in getNumberPattern success callback should have an length greater than 0.");
ok(typeof a.grouping == 'string', "Properties object's 'grouping' property returned in getNumberPattern success callback should be of type 'string'.");
ok(a.grouping.length > 0, "Properties object's 'grouping' property returned in getNumberPattern success callback should have an length greater than 0.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getNumberPattern(win, fail, {type: 'percent'});
});
test("should contain a getCurrencyPattern function", function() {
expect(2);
ok(typeof window.plugins.globalization.getCurrencyPattern != 'undefined' && window.plugins.globalization.getCurrencyPattern != null, "window.plugins.globalization.getCurrencyPattern should not be null.");
ok(typeof window.plugins.globalization.getCurrencyPattern == 'function', "window.plugins.globalization.getCurrencyPattern should be a function.");
});
test("getCurrencyPattern using EUR for currency, success callback should be called with a Properties object", function() {
expect(11);
QUnit.stop(Tests.TEST_TIMEOUT);
var win = function(a) {
ok(typeof a == 'object', "Properties object returned in getCurrencyPattern success callback should be of type 'object'.");
ok(typeof a.pattern == 'string', "Properties object's 'pattern' property returned in getCurrencyPattern success callback should be of type 'string'.");
ok(a.pattern.length > 0, "Properties object's 'pattern' property returned in getCurrencyPattern success callback should have an length greater than 0.");
ok(typeof a.code == 'string', "Properties object's 'code' property returned in getCurrencyPattern success callback should be of type 'string'.");
ok(a.code.length > 0, "Properties object's 'code' property returned in getCurrencyPattern success callback should have an length greater than 0.");
ok(typeof a.fraction == 'number', "Properties object's 'fraction' property returned in getCurrencyPattern success callback should be of type 'number'.");
ok(typeof a.rounding == 'number', "Properties object's 'rounding' property returned in getCurrencyPattern success callback should be of type 'number'.");
ok(typeof a.decimal == 'string', "Properties object's 'decimal' property returned in getCurrencyPattern success callback should be of type 'string'.");
ok(a.decimal.length > 0, "Properties object's 'decimal' property returned in getCurrencyPattern success callback should have an length greater than 0.");
ok(typeof a.grouping == 'string', "Properties object's 'grouping' property returned in getCurrencyPattern success callback should be of type 'string'.");
ok(a.grouping.length > 0, "Properties object's 'grouping' property returned in getCurrencyPattern success callback should have an length greater than 0.");
start();
};
var fail = function() { start(); };
window.plugins.globalization.getCurrencyPattern("EUR", win, fail);
});
};