summaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/list-format/format.js
blob: fef05c38e02005e2d62ff65a7bf06a2a5b0e9c2a (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
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --harmony-intl-list-format

function assertListFormat(listFormat, input) {
  try {
    let result = listFormat.format(input);
    assertEquals('string', typeof result);
    if (input) {
      for (var i = 0; i < input.length; i++) {
        assertTrue(result.indexOf(input[i]) >= 0);
      }
    }
  } catch (e) {
    fail('should not throw exception ' + e);
  }
}

function testFormatter(listFormat) {
  assertListFormat(listFormat, []);
  assertListFormat(listFormat, undefined);
  assertListFormat(listFormat, ['1']);
  assertListFormat(listFormat, ['a']);
  assertListFormat(listFormat, ['1', 'b']);
  assertListFormat(listFormat, ['1', 'b', '3']);
  assertListFormat(listFormat, ['a', 'b']);
  assertListFormat(listFormat, ['a', 'b', 'c']);
  assertListFormat(listFormat, ['a', 'b', 'c', 'd']);
  assertListFormat(listFormat, ['作者', '譚永鋒', '1', (new Date()).toString()]);
  assertListFormat(listFormat, ['作者', '譚永鋒', '1', 'b', '3']);

  assertThrows(() => listFormat.format(null), TypeError);
  assertThrows(() => listFormat.format([new Date()]), TypeError);
  assertThrows(() => listFormat.format([1]), TypeError);
  assertThrows(() => listFormat.format([1, 'b']), TypeError);
  assertThrows(() => listFormat.format([1, 'b', 3]), TypeError);
  assertThrows(() => listFormat.format([[3, 4]]), TypeError);
  assertThrows(() => listFormat.format([undefined, 'world']), TypeError);
  assertThrows(() => listFormat.format(['hello', undefined]), TypeError);
  assertThrows(() => listFormat.format([undefined]), TypeError);
  assertThrows(() => listFormat.format([null, 'world']), TypeError);
  assertThrows(() => listFormat.format(['hello', null]), TypeError);
  assertThrows(() => listFormat.format([null]), TypeError);
}
testFormatter(new Intl.ListFormat());
testFormatter(new Intl.ListFormat(["en"]));
testFormatter(new Intl.ListFormat(["en"], {style: 'long'}));
testFormatter(new Intl.ListFormat(["en"], {style: 'short'}));
assertThrows(() => new Intl.ListFormat(
    ["en"], {style: 'narrow'}), RangeError);
testFormatter(new Intl.ListFormat(["en"], {type: 'conjunction'}));
testFormatter(new Intl.ListFormat(["en"], {type: 'disjunction'}));
testFormatter(new Intl.ListFormat(["en"], {type: 'unit'}));
testFormatter(new Intl.ListFormat(["en"], {style: 'long', type: 'conjunction'}));
testFormatter(new Intl.ListFormat(["en"], {style: 'short', type: 'conjunction'}));
assertThrows(() => new Intl.ListFormat(
    ["en"], {style: 'narrow', type: 'conjunction'}), RangeError);
testFormatter(new Intl.ListFormat(["en"], {style: 'long', type: 'disjunction'}));
testFormatter(new Intl.ListFormat(["en"], {style: 'short', type: 'disjunction'}));
assertThrows(() => new Intl.ListFormat(
    ["en"], {style: 'narrow', type: 'disjunction'}), RangeError);
testFormatter(new Intl.ListFormat(["en"], {style: 'long', type: 'unit'}));
testFormatter(new Intl.ListFormat(["en"], {style: 'short', type: 'unit'}));
testFormatter(new Intl.ListFormat(["en"], {style: 'narrow', type: 'unit'}));