summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/getUTCHours/this-value-valid-date.js
blob: 19157cf7870e45e62fb2bab336f1dc51f91f3f81 (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
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.prototype.getutchours
description: Return value for valid dates
info: |
  1. Let t be ? thisTimeValue(this value).
  2. If t is NaN, return NaN.
  3. Return HourFromTime(t).
---*/

var hour15 = 1467817200000;
var hour23 = 1467846000000;
var hourMs = 60 * 60 * 1000;

assert.sameValue(new Date(hour15).getUTCHours(), 15, 'first millisecond');
assert.sameValue(
  new Date(hour15 - 1).getUTCHours(), 14, 'previous millisecond'
);
assert.sameValue(
  new Date(hour15 + hourMs - 1).getUTCHours(), 15, 'final millisecond'
);
assert.sameValue(
  new Date(hour15 + hourMs).getUTCHours(), 16, 'subsequent millisecond'
);

assert.sameValue(
  new Date(hour23).getUTCHours(), 23, 'first millisecond (day boundary)'
);
assert.sameValue(
  new Date(hour23 - 1).getUTCHours(), 22, 'previous millisecond (day boundary)'
);
assert.sameValue(
  new Date(hour23 + hourMs - 1).getUTCHours(),
  23,
  'final millisecond (day boundary)'
);
assert.sameValue(
  new Date(hour23 + hourMs).getUTCHours(),
  0,
  'subsequent millisecond (day boundary)'
);

reportCompare(0, 0);