summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Segmenter/prototype/segment/containing/one-index.js
blob: b23683ef995ffd5c28ca083ca3d7275565031231 (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
// |reftest| skip-if(!Intl.Segmenter) -- Intl.Segmenter is not enabled unconditionally
// Copyright 2020 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%segmentsprototype%.containing
description: Verifies the cases which the value of index turn into 1.
info: |
    %Segments.prototype%.containing ( index )

    6. Let n be ? ToInteger(index).
    7. If n < 0 or n ≥ len, return undefined.
    8. Let startIndex be ! FindBoundary(segmenter, string, n, before).

    ToInteger ( argument )
    1. Let number be ? ToNumber(argument).
    2. If number is NaN, +0, or -0, return +0.
    4. Let integer be the Number value that is the same sign as number and whose magnitude is floor(abs(number)).
    5. If integer is -0, return +0.
    6. Return integer.

    ToNumber ( argument )
    Undefined | Return NaN.
    Null      | Return +0.
    Boolean   | If argument is true, return 1. If argument is false, return +0.

features: [Intl.Segmenter]
---*/

const input = "a c";
const granularities = [undefined, "grapheme", "word"];
const index_to_one = [
    1,
    1.49,
    14.9E-1,
    14.9e-1,
    "1.49",
    "14.9E-1",
    "14.9e-1",
    true,
    { toString(){ return "1"; } },
    { valueOf(){ return 1; } },
    { [Symbol.toPrimitive](){ return 1; } },
];

// Except granularity: "sentence", check the result.segment is " ".
granularities.forEach(
    function(granularity) {
      const segmenter = new Intl.Segmenter(undefined, {granularity});
      const segment = segmenter.segment(input);
      index_to_one.forEach(function(index) {
        const result = segment.containing(index);
        const msg = "granularity: " + granularity + " index: " + index;
        assert.sameValue(1, result.index, msg + " index");
        assert.sameValue(" ", result.segment, msg + " segment");
        assert.sameValue(input, result.input, msg + " input");
      });
    });

// For granularity: "sentence", result.segment is input
const segmenter = new Intl.Segmenter(undefined, {granularity: "sentence"});
const segment = segmenter.segment(input);
index_to_one.forEach(function(index) {
  const result = segment.containing(index);
  const msg = "granularity: sentence index: " + index;
  assert.sameValue(0, result.index, msg + " index");
  assert.sameValue(input, result.segment, msg + " segment");
  assert.sameValue(input, result.input, msg + " input");
});

reportCompare(0, 0);