Skip to content

Commit f6013e5

Browse files
committed
Auto-generated commit
1 parent bd69126 commit f6013e5

File tree

3 files changed

+712
-1
lines changed

3 files changed

+712
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-01-09)
7+
## Unreleased (2026-01-10)
88

99
<section class="features">
1010

@@ -702,6 +702,7 @@ A total of 40 issues were closed in this release:
702702

703703
<details>
704704

705+
- [`426da6e`](https://github.com/stdlib-js/stdlib/commit/426da6ec175dfdb72a9435612069bd5e2819b194) - **test:** add tests to `ndarray/count-truthy` for complete test code coverage [(#9593)](https://github.com/stdlib-js/stdlib/pull/9593) _(by Muhammad Haris, Athan Reines)_
705706
- [`a5a3d29`](https://github.com/stdlib-js/stdlib/commit/a5a3d29ccbc51f322d2f8d84608411e3ebce3d11) - **docs:** improve doctests for ndarray instances in `ndarray/filter` [(#9606)](https://github.com/stdlib-js/stdlib/pull/9606) _(by Harshit Verma, Athan Reines)_
706707
- [`63e3c0c`](https://github.com/stdlib-js/stdlib/commit/63e3c0c70c31fae2111b4dfb4141a3665bc0dea0) - **test:** add tests to `ndarray/find` [(#9311)](https://github.com/stdlib-js/stdlib/pull/9311) _(by Muhammad Haris, Athan Reines, stdlib-bot)_
707708
- [`582d828`](https://github.com/stdlib-js/stdlib/commit/582d8280f7d6f077f686db7348e3132971476939) - **test:** add tests _(by Athan Reines)_

count-truthy/test/test.assign.js

Lines changed: 332 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,332 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2026 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
// MODULES //
22+
23+
var tape = require( 'tape' );
24+
var Float64Array = require( '@stdlib/array/float64' );
25+
var ndarray = require( './../../ctor' );
26+
var empty = require( './../../empty' );
27+
var ndarray2array = require( './../../to-array' );
28+
var countTruthy = require( './../lib/assign.js' );
29+
30+
31+
// TESTS //
32+
33+
tape( 'main export is a function', function test( t ) {
34+
t.ok( true, __filename );
35+
t.strictEqual( typeof countTruthy, 'function', 'main export is a function' );
36+
t.end();
37+
});
38+
39+
tape( 'the function throws an error if provided a first argument which is not an ndarray-like object', function test( t ) {
40+
var values;
41+
var y;
42+
var i;
43+
44+
y = empty( [], {
45+
'dtype': 'int32'
46+
});
47+
48+
values = [
49+
'5',
50+
5,
51+
NaN,
52+
true,
53+
false,
54+
null,
55+
void 0,
56+
{},
57+
[],
58+
function noop() {}
59+
];
60+
61+
for ( i = 0; i < values.length; i++ ) {
62+
t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
63+
}
64+
t.end();
65+
66+
function badValue( value ) {
67+
return function badValue() {
68+
countTruthy( value, y );
69+
};
70+
}
71+
});
72+
73+
tape( 'the function throws an error if provided a first argument which is not an ndarray-like object (options)', function test( t ) {
74+
var values;
75+
var y;
76+
var i;
77+
78+
y = empty( [], {
79+
'dtype': 'int32'
80+
});
81+
82+
values = [
83+
'5',
84+
5,
85+
NaN,
86+
true,
87+
false,
88+
null,
89+
void 0,
90+
{},
91+
[],
92+
function noop() {}
93+
];
94+
95+
for ( i = 0; i < values.length; i++ ) {
96+
t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
97+
}
98+
t.end();
99+
100+
function badValue( value ) {
101+
return function badValue() {
102+
countTruthy( value, y, {} );
103+
};
104+
}
105+
});
106+
107+
tape( 'the function throws an error if provided a second argument which is not an ndarray-like object', function test( t ) {
108+
var values;
109+
var x;
110+
var i;
111+
112+
x = empty( [ 2, 2 ], {
113+
'dtype': 'float64'
114+
});
115+
116+
values = [
117+
'5',
118+
5,
119+
NaN,
120+
true,
121+
false,
122+
null,
123+
void 0,
124+
{},
125+
[],
126+
function noop() {}
127+
];
128+
129+
for ( i = 0; i < values.length; i++ ) {
130+
t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
131+
}
132+
t.end();
133+
134+
function badValue( value ) {
135+
return function badValue() {
136+
countTruthy( x, value );
137+
};
138+
}
139+
});
140+
141+
tape( 'the function throws an error if provided a second argument which is not an ndarray-like object (options)', function test( t ) {
142+
var values;
143+
var x;
144+
var i;
145+
146+
x = empty( [ 2, 2 ], {
147+
'dtype': 'float64'
148+
});
149+
150+
values = [
151+
'5',
152+
5,
153+
NaN,
154+
true,
155+
false,
156+
null,
157+
void 0,
158+
{},
159+
[],
160+
function noop() {}
161+
];
162+
163+
for ( i = 0; i < values.length; i++ ) {
164+
t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
165+
}
166+
t.end();
167+
168+
function badValue( value ) {
169+
return function badValue() {
170+
countTruthy( x, value, {} );
171+
};
172+
}
173+
});
174+
175+
tape( 'the function throws an error if provided an options argument which is not an object', function test( t ) {
176+
var values;
177+
var x;
178+
var y;
179+
var i;
180+
181+
x = empty( [ 2, 2 ], {
182+
'dtype': 'float64'
183+
});
184+
y = empty( [ 2 ], {
185+
'dtype': 'int32'
186+
});
187+
188+
values = [
189+
'5',
190+
5,
191+
NaN,
192+
true,
193+
false,
194+
null,
195+
void 0,
196+
[],
197+
function noop() {}
198+
];
199+
200+
for ( i = 0; i < values.length; i++ ) {
201+
t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
202+
}
203+
t.end();
204+
205+
function badValue( value ) {
206+
return function badValue() {
207+
countTruthy( x, y, value );
208+
};
209+
}
210+
});
211+
212+
tape( 'the function throws an error if provided an options argument with an invalid `dims` property', function test( t ) {
213+
var values;
214+
var x;
215+
var y;
216+
var i;
217+
218+
x = empty( [ 2, 2 ], {
219+
'dtype': 'float64'
220+
});
221+
y = empty( [ 2 ], {
222+
'dtype': 'int32'
223+
});
224+
225+
values = [
226+
'5',
227+
NaN,
228+
true,
229+
false,
230+
null,
231+
void 0,
232+
{}
233+
];
234+
235+
for ( i = 0; i < values.length; i++ ) {
236+
t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
237+
}
238+
t.end();
239+
240+
function badValue( value ) {
241+
return function badValue() {
242+
var opts = {
243+
'dims': value
244+
};
245+
countTruthy( x, y, opts );
246+
};
247+
}
248+
});
249+
250+
tape( 'the function counts the number of truthy elements along one or more ndarray dimensions (row-major)', function test( t ) {
251+
var expected;
252+
var actual;
253+
var x;
254+
var y;
255+
256+
x = new ndarray( 'float64', new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] ), [ 4 ], [ 1 ], 0, 'row-major' );
257+
y = empty( [], {
258+
'dtype': 'int32'
259+
});
260+
261+
actual = countTruthy( x, y );
262+
expected = 4;
263+
264+
t.strictEqual( actual, y, 'returns expected value' );
265+
t.strictEqual( actual.get(), expected, 'returns expected value' );
266+
t.end();
267+
});
268+
269+
tape( 'the function counts the number of truthy elements along one or more ndarray dimensions (column-major)', function test( t ) {
270+
var expected;
271+
var actual;
272+
var x;
273+
var y;
274+
275+
x = new ndarray( 'float64', new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] ), [ 4 ], [ 1 ], 0, 'column-major' );
276+
y = empty( [], {
277+
'dtype': 'int32'
278+
});
279+
280+
actual = countTruthy( x, y );
281+
expected = 4;
282+
283+
t.strictEqual( actual, y, 'returns expected value' );
284+
t.strictEqual( actual.get(), expected, 'returns expected value' );
285+
t.end();
286+
});
287+
288+
tape( 'the function supports specifying reduction dimensions (row-major)', function test( t ) {
289+
var expected;
290+
var actual;
291+
var opts;
292+
var x;
293+
var y;
294+
295+
x = new ndarray( 'float64', new Float64Array( [ 1.0, 3.0, 0.0, 0.0, 0.0, -5.0, -7.0, 0.0 ] ), [ 2, 4 ], [ 4, 1 ], 0, 'row-major' );
296+
297+
opts = {
298+
'dims': [ 0 ]
299+
};
300+
y = empty( [ 4 ], {
301+
'dtype': 'int32'
302+
});
303+
actual = countTruthy( x, y, opts );
304+
expected = [ 1, 2, 1, 0 ];
305+
306+
t.strictEqual( actual, y, 'returns expected value' );
307+
t.deepEqual( ndarray2array( actual ), expected, 'returns expected value' );
308+
t.end();
309+
});
310+
311+
tape( 'the function supports specifying reduction dimensions (column-major)', function test( t ) {
312+
var expected;
313+
var actual;
314+
var opts;
315+
var x;
316+
var y;
317+
318+
x = new ndarray( 'float64', new Float64Array( [ 1.0, 3.0, 0.0, 0.0, 0.0, -5.0, -7.0, 0.0 ] ), [ 2, 4 ], [ 1, 2 ], 0, 'column-major' );
319+
320+
opts = {
321+
'dims': [ 1 ]
322+
};
323+
y = empty( [ 2 ], {
324+
'dtype': 'int32'
325+
});
326+
actual = countTruthy( x, y, opts );
327+
expected = [ 2, 2 ];
328+
329+
t.strictEqual( actual, y, 'returns expected value' );
330+
t.deepEqual( ndarray2array( actual ), expected, 'returns expected value' );
331+
t.end();
332+
});

0 commit comments

Comments
 (0)