aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch13/13.3/13.3.0_1.js
blob: 0f2902162e4292c755c9999036e70024da7843a1 (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
// Copyright 2012 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @description Tests that Date.prototype.toLocaleString & Co. handle "this time value" correctly.
 * @author Norbert Lindenberg
 */

var functions = {
    toLocaleString: Date.prototype.toLocaleString,
    toLocaleDateString: Date.prototype.toLocaleDateString,
    toLocaleTimeString: Date.prototype.toLocaleTimeString
};
var invalidValues = [undefined, null, 5, "5", false, {valueOf: function () { return 5; }}];

Object.getOwnPropertyNames(functions).forEach(function (p) {
    var f = functions[p];
    invalidValues.forEach(function (value) {
        var error;
        try {
            var result = f.call(value);
        } catch (e) {
            error = e;
        }
        if (error === undefined) {
            $ERROR("Date.prototype." + p + " did not reject this = " + value + ".");
        } else if (error.name !== "TypeError") {
            $ERROR("Date.prototype." + p + " rejected this = " + value + " with wrong error " + error.name + ".");
        }
    });
});