forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.native.js
326 lines (270 loc) · 9.33 KB
/
test.native.js
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
// MODULES //
var resolve = require( 'path' ).resolve;
var tape = require( 'tape' );
var PI = require( '@stdlib/constants/float64/pi' );
var PINF = require( '@stdlib/constants/float64/pinf' );
var NINF = require( '@stdlib/constants/float64/ninf' );
var EPS = require( '@stdlib/constants/float64/eps' );
var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var ceil = require( '@stdlib/math/base/special/ceil' );
var pow = require( '@stdlib/math/base/special/pow' );
var abs = require( '@stdlib/math/base/special/abs' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
var tryRequire = require( '@stdlib/utils/try-require' );
// VARIABLES //
var ceilb = tryRequire( resolve( __dirname, './../lib/native.js' ) );
var opts = {
'skip': ( ceilb instanceof Error )
};
// TESTS //
tape( 'main export is a function', opts, function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof ceilb, 'function', 'main export is a function' );
t.end();
});
tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) {
var v;
v = ceilb( NaN, -2, 1 );
t.strictEqual( isnan( v ), true, 'returns NaN' );
t.end();
});
tape( 'the function returns `NaN` if provided `b <= 0`', opts, function test( t ) {
var v;
v = ceilb( PI, 5, 0 );
t.strictEqual( isnan( v ), true, 'returns NaN' );
v = ceilb( PI, 5, -1 );
t.strictEqual( isnan( v ), true, 'returns NaN' );
t.end();
});
tape( 'the function returns `+infinity` if provided `+infinity`', opts, function test( t ) {
var v = ceilb( PINF, 5, 10 );
t.strictEqual( v, PINF, 'returns +infinity' );
t.end();
});
tape( 'the function returns `-infinity` if provided `-infinity`', opts, function test( t ) {
var v = ceilb( NINF, -3, 10 );
t.strictEqual( v, NINF, 'returns -infinity' );
t.end();
});
tape( 'the function returns `-0` if provided `-0`', opts, function test( t ) {
var v;
v = ceilb( -0.0, 0, 10 );
t.strictEqual( isNegativeZero( v ), true, 'returns -0' );
v = ceilb( -0.0, -2, 10 );
t.strictEqual( isNegativeZero( v ), true, 'returns -0' );
v = ceilb( -0.0, 2, 10 );
t.strictEqual( isNegativeZero( v ), true, 'returns -0' );
t.end();
});
tape( 'the function returns `+0` if provided `+0`', opts, function test( t ) {
var v;
v = ceilb( 0.0, 0, 10 );
t.strictEqual( isPositiveZero( v ), true, 'returns +0' );
v = ceilb( +0.0, -2, 10 );
t.strictEqual( isPositiveZero( v ), true, 'returns +0' );
v = ceilb( +0.0, 2, 10 );
t.strictEqual( isPositiveZero( v ), true, 'returns +0' );
t.end();
});
tape( 'the function supports rounding a numeric value to a desired number of decimals', opts, function test( t ) {
t.strictEqual( ceilb( PI, -2, 10 ), 3.15, 'returns expected value' );
t.strictEqual( ceilb( -PI, -2, 10 ), -3.14, 'returns expected value' );
t.strictEqual( ceilb( 9.99999, -2, 10 ), 10.0, 'returns expected value' );
t.strictEqual( ceilb( -9.99999, -2, 10 ), -9.99, 'returns expected value' );
t.strictEqual( ceilb( 0.0, 2, 10 ), 0.0, 'returns expected value' );
t.strictEqual( ceilb( 12368.0, -3, 10 ), 12368.0, 'returns expected value' );
t.strictEqual( ceilb( -12368.0, -3, 10 ), -12368.0, 'returns expected value' );
t.end();
});
tape( 'due to floating-point rounding error, rounding a numeric value can result in unexpected behavior', opts, function test( t ) {
var x;
x = 0.2 + 0.1; // => 0.30000000000000004
t.strictEqual( ceilb( x, -16, 10 ), 0.3000000000000001, 'equals 0.3000000000000001 and not 0.3' );
x = 24.616838129811768;
t.strictEqual( ceilb( x, 2, 7 ), 48.99999999999999, 'equals 48.99999999999999 and not 49' );
t.end();
});
tape( 'the function supports rounding a numeric value to a desired number of digits', opts, function test( t ) {
t.strictEqual( ceilb( PI, 4, 10 ), 10000.0, 'returns expected value' );
t.strictEqual( ceilb( 12368.0, 3, 10 ), 13000.0, 'returns expected value' );
t.strictEqual( ceilb( 12368.0, 1, 10 ), 12370.0, 'returns expected value' );
t.strictEqual( ceilb( PI, 3, 10 ), 1000, 'returns expected value' );
t.strictEqual( isNegativeZero( ceilb( -PI, 3, 10 ) ), true, 'returns expected value' );
t.strictEqual( ceilb( -12368.0, 3, 10 ), -12000.0, 'returns expected value' );
t.strictEqual( ceilb( -12368.0, 1, 10 ), -12360.0, 'returns expected value' );
t.end();
});
tape( 'if `x` is too large a double to have decimals and `n < 0`, the input value is returned', opts, function test( t ) {
var sign;
var exp;
var x;
var n;
var v;
var i;
for ( i = 0; i < 100; i++ ) {
sign = ( randu()<0.5 ) ? -1.0 : 1.0;
exp = 54 + round( randu()*254.0 );
x = sign * (1.0+randu()) * pow( 10.0, exp );
n = -( round( randu()*324.0) );
v = ceilb( x, n, 10 );
t.strictEqual( x, v, ' returns input value when provided x='+x+', n='+n+'.' );
}
t.end();
});
tape( 'if `b^n` is too large and `x > 0`, the function returns `+infinity`', opts, function test( t ) {
var exp;
var x;
var n;
var v;
var i;
for ( i = 0; i < 100; i++ ) {
exp = round( randu()*307.0 );
x = (1.0+randu()) * pow( 10.0, exp );
n = round( randu()*100.0 ) + 309;
v = ceilb( x, n, 10 );
t.strictEqual( v, PINF, ' returns +infinity when provided x='+x+', n='+n+'.' );
}
t.end();
});
tape( 'if `b^n` is too large and `x < 0`, the function returns `-0` (sign preserving)', opts, function test( t ) {
var exp;
var x;
var n;
var v;
var i;
for ( i = 0; i < 100; i++ ) {
exp = round( randu()*307.0 );
x = -(1.0+randu()) * pow( 10.0, exp );
n = round( randu()*100.0 ) + 309;
v = ceilb( x, n, 10 );
t.strictEqual( isNegativeZero( v ), true, ' returns +0 when provided x='+x+', n='+n+'.' );
}
t.end();
});
tape( 'the function supports rounding very small numbers (including subnormals)', opts, function test( t ) {
var expected;
var delta;
var tol;
var x;
var n;
var v;
var i;
x = 3.1468234343023397 * pow( 10.0, -308 );
n = [];
for ( i = -308; i > -325; i-- ) {
n.push( i );
}
expected = [
4e-308,
3.2e-308,
3.15e-308,
3.147e-308,
3.1469e-308,
3.14683e-308,
3.146824e-308,
3.1468235e-308,
3.14682344e-308,
3.146823435e-308,
3.1468234344e-308,
3.14682343431e-308,
3.146823434303e-308,
3.1468234343024e-308,
3.14682343430234e-308,
3.146823434302340e-308,
3.1468234343023397e-308
];
for ( i = 0; i < n.length; i++ ) {
v = ceilb( x, n[i], 10 );
if ( v === expected[i] ) {
t.strictEqual( v, expected[ i ], 'returns '+expected[i]+' when provided x='+x+' and n='+n[i]+'.' );
} else {
delta = abs( v - expected[i] );
tol = EPS * abs( expected[i] );
t.strictEqual( delta <= tol, true, 'x: '+x+'. n: '+n[i]+'. v: '+v+'. expected: '+expected[i]+'. delta: '+delta+'. tol: '+tol );
}
}
t.end();
});
tape( 'if the function encounters overflow, the function returns the input value', opts, function test( t ) {
var x;
var v;
x = 3.1468234343023397;
v = ceilb( x, -314, 10 );
t.strictEqual( v, x, 'returns the input value' );
x = -3.1468234343023397;
v = ceilb( x, -314, 10 );
t.strictEqual( v, x, 'returns the input value' );
x = 9007199254740000;
v = ceilb( x, -300, 10 );
t.strictEqual( v, x, 'returns the input value' );
x = -9007199254740000;
v = ceilb( x, -300, 10 );
t.strictEqual( v, x, 'returns the input value' );
t.end();
});
tape( 'if `n = 0`, the function exhibits standard ceil behavior', opts, function test( t ) {
var x;
var v;
var i;
for ( i = 0; i < 200; i++ ) {
x = (randu()*1000.0) - 500.0;
v = ceilb( x, 0, 2 );
t.strictEqual( v, ceil( x ), 'returns expected value' );
}
t.end();
});
tape( 'if `b = 1`, the function exhibits standard ceil behavior', opts, function test( t ) {
var x;
var v;
var i;
for ( i = 0; i < 200; i++ ) {
x = (randu()*1000.0) - 500.0;
v = ceilb( x, 100, 1 );
t.strictEqual( v, ceil( x ), 'returns expected value' );
}
t.end();
});
tape( 'the function supports arbitrary rounding', opts, function test( t ) {
t.strictEqual( ceilb( 5.0, 1, 2 ), 6.0, 'returns expected value' );
t.strictEqual( ceilb( 38.5, 1, 6 ), 42.0, 'returns expected value' );
t.strictEqual( ceilb( 0.425, -2, 2 ), 0.50, 'returns expected value' );
t.strictEqual( ceilb( 60.0, 1, 40.0 ), 80.0, 'returns expected value' );
t.strictEqual( ceilb( -21.54, -1, 5 ), -21.4, 'returns expected value' );
t.strictEqual( ceilb( 35.037, -4, 2 ), 35.0625, 'returns expected value' );
t.end();
});
tape( 'if the function overflows, the function returns the input value', opts, function test( t ) {
var x;
var v;
x = 12.5;
v = ceilb( x, -308, 10 );
t.strictEqual( v, x, 'returns expected value' );
x = 12.5;
v = ceilb( x, -1022, 2 );
t.strictEqual( v, x, 'returns expected value' );
x = 12.5;
v = ceilb( x, -1074, 2 );
t.strictEqual( v, x, 'returns expected value' );
t.end();
});