aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/locale/timezonelist_test.html
blob: dedc1cd4534e2e305228431c34c61878b8456431 (plain)
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
<!DOCTYPE html>
<html>
<!--
Copyright 2007 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<!--
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Closure Unit Tests - goog.locale.TimeZoneConstants</title>
  <!-- UTF-8 needed for character encoding -->
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  <script src="../base.js"></script>
  <script>
    goog.require('goog.locale.TimeZoneList');
    goog.require('goog.locale');
    goog.require('goog.testing.jsunit');
  </script>
</head>
<body>

<script>

  // 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);
  }

</script>
</body>
</html>