summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Date/constructor-convert-all-arguments.js
blob: 3a281cae220196bdf404ba96409412792a8dbb90 (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
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommonn.org/licenses/publicdomain/
 */

var BUGNUMBER = 1160356;
var summary =
  "new Date(...) must convert *all* arguments to number, not return NaN " +
  "early if a non-finite argument is encountered";

print(BUGNUMBER + ": " + summary);

/**************
 * BEGIN TEST *
 **************/

function expectThrowTypeError(f, i)
{
  try
  {
    f();
    throw new Error("didn't throw");
  }
  catch (e)
  {
    assertEq(e, 42, "index " + i + ": expected 42, got " + e);
  }
}

var bad =
  { toString: function() { throw 17; }, valueOf: function() { throw 42; } };

var funcs =
 [
  function() { new Date(bad); },

  function() { new Date(NaN, bad); },
  function() { new Date(Infinity, bad); },
  function() { new Date(1970, bad); },

  function() { new Date(1970, NaN, bad); },
  function() { new Date(1970, Infinity, bad); },
  function() { new Date(1970, 4, bad); },

  function() { new Date(1970, 4, NaN, bad); },
  function() { new Date(1970, 4, Infinity, bad); },
  function() { new Date(1970, 4, 17, bad); },

  function() { new Date(1970, 4, 17, NaN, bad); },
  function() { new Date(1970, 4, 17, Infinity, bad); },
  function() { new Date(1970, 4, 17, 13, bad); },

  function() { new Date(1970, 4, 17, 13, NaN, bad); },
  function() { new Date(1970, 4, 17, 13, Infinity, bad); },
  function() { new Date(1970, 4, 17, 13, 37, bad); },

  function() { new Date(1970, 4, 17, 13, 37, NaN, bad); },
  function() { new Date(1970, 4, 17, 13, 37, Infinity, bad); },
  function() { new Date(1970, 4, 17, 13, 37, 23, bad); },
 ];

for (var i = 0, len = funcs.length; i < len; i++)
  expectThrowTypeError(funcs[i]);

/******************************************************************************/

if (typeof reportCompare === "function")
  reportCompare(true, true);

print("Tests complete");