File: timezonelist_test.js

package info (click to toggle)
aseba-plugin-blockly 20180211%2Bgit-2
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 64,472 kB
  • sloc: xml: 7,976; python: 2,314; sh: 261; lisp: 24; makefile: 10
file content (146 lines) | stat: -rw-r--r-- 5,332 bytes parent folder | download | duplicates (2)
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
// Copyright 2007 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

goog.provide('goog.locale.TimeZoneListTest');
goog.setTestOnly('goog.locale.TimeZoneListTest');

goog.require('goog.locale');
/** @suppress {extraRequire} */
goog.require('goog.locale.TimeZoneList');
goog.require('goog.testing.jsunit');

function setUpPage() {
  // Test data files are in in http://go/js_locale_data

  // Test data from TimeZoneSelectedIds__FR.js
  var TimeZoneSelectedIds__FR =
      ['Etc/GMT+12', 'Pacific/Midway', 'America/Adak', 'Pacific/Honolulu'];
  goog.locale.registerTimeZoneSelectedIds(TimeZoneSelectedIds__FR, 'FR');

  // Test data from TimeZoneSelectedShortNames__de_DE.js
  var TimeZoneSelectedShortNames__de_DE = {
    'Etc/GMT+12': 'GMT-12:00',
    'Etc/GMT+11': 'GMT-11:00',
    'Pacific/Pago_Pago': 'Amerikanisch-Samoa',
    'Pacific/Midway': 'Midway (Amerikanisch-Ozeanien)',
    'Pacific/Honolulu': 'Honolulu (Vereinigte Staaten)',
    'Etc/GMT+10': 'GMT-10:00',
    'America/Adak': 'Adak (Vereinigte Staaten)'
  };
  goog.locale.registerTimeZoneSelectedShortNames(
      TimeZoneSelectedShortNames__de_DE, 'de_DE');

  // Test data from TimeZoneSelectedLongNames__de_DE.js
  var TimeZoneSelectedLongNames__de_DE = {
    'Etc/GMT+12': 'GMT-12:00',
    'Etc/GMT+11': 'GMT-11:00',
    'Pacific/Pago_Pago': 'GMT-11:00 Amerikanisch-Samoa',
    'Pacific/Midway': 'GMT-11:00 Midway (Amerikanisch-Ozeanien)',
    'Pacific/Honolulu': 'GMT-10:00 Honolulu (Vereinigte Staaten)',
    'Etc/GMT+10': 'GMT-10:00',
    'America/Adak': 'GMT-10:00 Adak (Vereinigte Staaten)'
  };
  goog.locale.registerTimeZoneSelectedLongNames(
      TimeZoneSelectedLongNames__de_DE, 'de_DE');

  // Test data from TimeZoneSelectedIds__en.js
  var TimeZoneSelectedIds__en =
      ['Etc/GMT+12', 'Pacific/Midway', 'America/Adak', 'Pacific/Honolulu'];
  goog.locale.registerTimeZoneSelectedIds(TimeZoneSelectedIds__en, 'en');

  // Test data from TimeZoneSelectedIds__DE.js
  var TimeZoneSelectedIds__DE =
      ['Etc/GMT+12', 'Pacific/Midway', 'America/Adak', 'Pacific/Honolulu'];
  goog.locale.registerTimeZoneSelectedIds(TimeZoneSelectedIds__DE, 'DE');

  // Test data from TimeZoneAllLongNames__de_DE.js
  var TimeZoneAllLongNames__de_DE = [
    {id: 'Etc/GMT+12', name: 'GMT-12:00'},
    {id: 'Pacific/Apia', name: 'GMT-11:00 Samoa'},
    {id: 'Pacific/Midway', name: 'GMT-11:00 Midway (Amerikanisch-Ozeanien)'},
    {id: 'Pacific/Niue', name: 'GMT-11:00 Niue'},
    {id: 'Pacific/Pago_Pago', name: 'GMT-11:00 Amerikanisch-Samoa'},
    {id: 'Etc/GMT+11', name: 'GMT-11:00'},
    {id: 'America/Adak', name: 'GMT-10:00 Adak (Vereinigte Staaten)'},
    {id: 'Pacific/Fakaofo', name: 'GMT-10:00 Tokelau'}
  ];
  goog.locale.registerTimeZoneAllLongNames(
      TimeZoneAllLongNames__de_DE, 'de_DE');

  goog.locale.setLocale('de_DE');
}

/* Uncomment to display complete listing in the unit tested invocations.

document.write('Shortnames in German for France:<br>');

var idlist = goog.locale.getTimeZoneSelectedShortNames('FR');

for (var i = 0; i < idlist.length; i++) {
  document.write(i + ') ' + idlist[i].id + ' = ' + idlist[i].name + '<br>');
}

document.write('<hr>');

document.write('long names in German for all en speakers:<br>');
var idlist = goog.locale.getTimeZoneSelectedLongNames('en');

for (var i = 0; i < idlist.length; i++) {
  document.write(i + ') ' + idlist[i].id + ' = ' + idlist[i].name + '<br>');
}

document.write('<hr>');

document.write('Longnames in German for germans:<br>');
var idlist = goog.locale.getTimeZoneSelectedLongNames();

for (var i = 0; i < idlist.length; i++) {
  document.write(i + ') ' + idlist[i].id + ' = ' + idlist[i].name + '<br>');
}

document.write('<hr>');

document.write('All longnames in German:<br>');
var idlist = goog.locale.getTimeZoneAllLongNames();

for (var i = 0; i < idlist.length; i++) {
  var pair = idlist[i];
  document.write(i + ') ' + pair.id + ' = ' + pair.name + '<br>');
}

document.write('<hr>');
*/

// Test cases.
function testTimeZoneSelectedShortNames() {
  // Shortnames in German for France.
  var result = goog.locale.getTimeZoneSelectedShortNames('FR');
  assertEquals('Honolulu (Vereinigte Staaten)', result[3].name);
}

function testTimeZoneSelectedLongNames() {
  // Long names in German for all English speaking regions.
  var result = goog.locale.getTimeZoneSelectedLongNames('en');
  assertEquals('GMT-11:00 Midway (Amerikanisch-Ozeanien)', result[1].name);

  // Long names in German for germans.
  var result = goog.locale.getTimeZoneSelectedLongNames();
  assertEquals('GMT-10:00 Adak (Vereinigte Staaten)', result[2].name);
}

function testTimeZoneAllLongNames() {
  // All longnames in German
  var result = goog.locale.getTimeZoneAllLongNames();
  assertEquals('GMT-10:00 Tokelau', result[7].name);
}