Newer
Older
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
#!/usr/bin/env node
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
require('./lib/test_env.js');
const assert = require('assert'),
vows = require('vows'),
i18n = require('../lib/i18n');
var suite = vows.describe('i18n');
suite.addBatch({
"format a string with place values": {
topic: function () {
return i18n.format("%s %s!", ["Hello", "World"]);
},
"was interpolated": function (err, str) {
assert.equal(str, "Hello World!");
}
}
});
suite.addBatch({
"format a string with named values": {
topic: function () {
var params = { salutation: "Hello", place: "World" };
return i18n.format("%(salutation)s %(place)s!", params, true);
},
"was interpolated": function (err, str) {
assert.equal(str, "Hello World!");
}
}
});
suite.addBatch({
"format a string without interpolation": {
topic: function () {
return i18n.format("Hello World!");
},
"was interpolated": function (err, str) {
assert.equal(str, "Hello World!");
}
},
"format a null": {
topic: function () {
return i18n.format(null);
},
"was interpolated": function (err, str) {
assert.equal(str, "");
}
}
});
Austin King
committed
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
suite.addBatch({
"We find exact language match": {
topic: function () {
var accept = 'pa,sv;q=0.8,fi;q=0.7,it-ch;q=0.5,en-us;q=0.3,en;q=0.2';
var supported = ['af', 'en-US', 'pa'];
var def = 'en-US';
return i18n.bestLanguage(
parseAcceptLanguage(accept),
supported, def);
},
"For Punjabi": function (err, locale) {
assert.equal(locale, "pa");
}
},
"Issue#1128 We find best locale even if region doesn't match": {
topic: function () {
var accept = 'pa-it,sv;q=0.8,fi;q=0.7,it-ch;q=0.5,en-us;q=0.3,en;q=0.2';
var supported = ['af', 'en-US', 'pa'];
var def = 'en-US';
return i18n.bestLanguage(
parseAcceptLanguage(accept),
supported, def);
},
"For Punjabi (India) serve Punjabi": function (err, locale) {
assert.equal(locale, "pa");
}
},
"We don't extend into a region, unless we have an exact match": {
topic: function () {
var accept = 'pa,sv;q=0.8,fi;q=0.7,it-ch;q=0.5,en-us;q=0.3,en;q=0.2';
var supported = ['af', 'en-US', 'pa-IT'];
var def = 'en-US';
return i18n.bestLanguage(
parseAcceptLanguage(accept),
supported, def);
},
"Don't choose Punjabi (India)": function (err, locale) {
assert.equal(locale, "en-us");
}
}
});
// run or export the suite.
if (process.argv[1] === __filename) suite.run();
else suite.export(module);