js/src/tests/test262/ch09/9.7/S9.7_A1.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/test262/ch09/9.7/S9.7_A1.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,54 @@
     1.4 +// Copyright 2009 the Sputnik authors.  All rights reserved.
     1.5 +// This code is governed by the BSD license found in the LICENSE file.
     1.6 +
     1.7 +/**
     1.8 + * If value is NaN, +0, -0, +Infinity, or -Infinity, return +0
     1.9 + *
    1.10 + * @path ch09/9.7/S9.7_A1.js
    1.11 + * @description For testing use String.fromCharCode(Number).charCodeAt(0) construction
    1.12 + */
    1.13 +
    1.14 +// CHECK#1
    1.15 +if (String.fromCharCode(Number.NaN).charCodeAt(0) !== +0) {
    1.16 +  $ERROR('#1.1: String.fromCharCode(Number.NaN).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(Number.NaN).charCodeAt(0)));
    1.17 +} else if (1/String.fromCharCode(Number.NaN).charCodeAt(0) !== Number.POSITIVE_INFINITY) {
    1.18 +  $ERROR('#1.2: String.fromCharCode(Number.NaN).charCodeAt(0) === +0. Actual: -0');
    1.19 +}
    1.20 +
    1.21 +// CHECK#2
    1.22 +if (String.fromCharCode(Number("abc")).charCodeAt(0) !== +0) {
    1.23 +  $ERROR('#2.1: String.fromCharCode(Number("abc")).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(Number("abc")).charCodeAt(0)));
    1.24 +} else if (1/String.fromCharCode(0).charCodeAt(0) !== Number.POSITIVE_INFINITY) {
    1.25 +  $ERROR('#2.2: String.fromCharCode(0).charCodeAt(0) === +0. Actual: -0');
    1.26 +}
    1.27 +
    1.28 +// CHECK#3
    1.29 +if (String.fromCharCode(0).charCodeAt(0) !== +0) {
    1.30 +  $ERROR('#3.1: String.fromCharCode(0).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(0).charCodeAt(0)));
    1.31 +} else if (1/String.fromCharCode(0).charCodeAt(0) !== Number.POSITIVE_INFINITY) {
    1.32 +  $ERROR('#3.2: String.fromCharCode(0).charCodeAt(0) === +0. Actual: -0');
    1.33 +}
    1.34 +
    1.35 +// CHECK#4
    1.36 +if (String.fromCharCode(-0).charCodeAt(0) !== +0) {
    1.37 +  $ERROR("#4.1: String.fromCharCode(-0).charCodeAt(0) === +0");
    1.38 +} else if (1/String.fromCharCode(-0).charCodeAt(0) !== Number.POSITIVE_INFINITY) {
    1.39 +  $ERROR("#4.2: String.fromCharCode(-0).charCodeAt(0) === +0. Actual: -0");
    1.40 +}
    1.41 +
    1.42 +// CHECK#5
    1.43 +if (String.fromCharCode(Number.POSITIVE_INFINITY).charCodeAt(0) !== +0) {
    1.44 +  $ERROR('#5.1: String.fromCharCode(Number.POSITIVE_INFINITY).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(Number.POSITIVE_INFINITY).charCodeAt(0)));
    1.45 +} else if (1/String.fromCharCode(Number.POSITIVE_INFINITY).charCodeAt(0) !== Number.POSITIVE_INFINITY) {
    1.46 +  $ERROR('#5.2: String.fromCharCode(Number.POSITIVE_INFINITY).charCodeAt(0) === +0. Actual: -0');
    1.47 +}
    1.48 +
    1.49 +// CHECK#6
    1.50 +if (String.fromCharCode(Number.NEGATIVE_INFINITY).charCodeAt(0) !== +0) {
    1.51 +  $ERROR("#6.1: String.fromCharCode(Number.NEGATIVE_INFINITY).charCodeAt(0) === +0");
    1.52 +} else if (1/String.fromCharCode(Number.NEGATIVE_INFINITY).charCodeAt(0) !== Number.POSITIVE_INFINITY) {
    1.53 +  $ERROR("#6.2: String.fromCharCode(Number.NEGATIVE_INFINITY).charCodeAt(0) === +0. Actual: -0");
    1.54 +}
    1.55 +
    1.56 +
    1.57 +

mercurial