summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DateTimeFormat/prototype/format/time-clip-to-integer.js
blob: d7fbe4db66f9a339638abb876aad4f716726bdf6 (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
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-partitiondatetimepattern
description: |
  TimeClip applies ToInteger on its input value.
info: >
  12.1.6 PartitionDateTimePattern ( dateTimeFormat, x )

  1. Let x be TimeClip(x).
  2. ...

  20.3.1.15 TimeClip ( time )
  ...
  3. Let clippedTime be ! ToInteger(time).
  4. If clippedTime is -0, set clippedTime to +0.
  5. Return clippedTime.
---*/

// Switch to a time format instead of using DateTimeFormat's default date-only format.
var dtf = new Intl.DateTimeFormat(undefined, {
    hour: "numeric", minute: "numeric", second: "numeric"
});

var expected = dtf.format(0);

assert.sameValue(dtf.format(-0.9), expected, "format(-0.9)");
assert.sameValue(dtf.format(-0.5), expected, "format(-0.5)");
assert.sameValue(dtf.format(-0.1), expected, "format(-0.1)");
assert.sameValue(dtf.format(-Number.MIN_VALUE), expected, "format(-Number.MIN_VALUE)");
assert.sameValue(dtf.format(-0), expected, "format(-0)");
assert.sameValue(dtf.format(+0), expected, "format(+0)");
assert.sameValue(dtf.format(Number.MIN_VALUE), expected, "format(Number.MIN_VALUE)");
assert.sameValue(dtf.format(0.1), expected, "format(0.1)");
assert.sameValue(dtf.format(0.5), expected, "format(0.5)");
assert.sameValue(dtf.format(0.9), expected, "format(0.9)");

reportCompare(0, 0);