aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch06/6.3/6.3.1_b.js
blob: 90051b343c39fe35a0fc0f6e2c618531492a2ec1 (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
// Copyright 2012 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @description Tests that invalid currency codes are not accepted.
 * @author Norbert Lindenberg
 */

var invalidCurrencyCodes = [
    "€",
    "$",
    "SFr.",
    "DM",
    "KR₩",
    "702",
    "ßP",
    "ınr"
];

invalidCurrencyCodes.forEach(function (code) {
    var error;
    try {
        // this must throw an exception for an invalid currency code
        var format = new Intl.NumberFormat(["de-de"], {style: "currency", currency: code});
    } catch (e) {
        error = e;
    }
    if (error === undefined) {
        $ERROR("Invalid currency code " + code + " was not rejected.");
    } else if (error.name !== "RangeError") {
        $ERROR("Invalid currency code " + code + " was rejected with wrong error " + error.name + ".");
    }
});