-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.ts
103 lines (87 loc) · 3.22 KB
/
test.ts
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
/*
* @license Apache-2.0
*
* Copyright (c) 2021 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.
*/
/* eslint-disable @typescript-eslint/no-unused-expressions */
import RandomStream = require( './index' );
// TESTS //
// The constructor returns a stream...
{
new RandomStream(); // $ExpectType RandomStream
new RandomStream( { 'iter': 10 } ); // $ExpectType RandomStream
}
// The constructor is callable...
{
const randomStream = RandomStream;
randomStream(); // $ExpectType RandomStream
randomStream( { 'iter': 10 } ); // $ExpectType RandomStream
}
// The constructor has an `objectMode` method which returns a stream...
{
RandomStream.objectMode(); // $ExpectType RandomStream
RandomStream.objectMode( { 'iter': 10 } ); // $ExpectType RandomStream
}
// The constructor has a `factory` method which returns a function for creating streams...
{
let f = RandomStream.factory();
f(); // $ExpectType RandomStream
f(); // $ExpectType RandomStream
f(); // $ExpectType RandomStream
f = RandomStream.factory( {} );
f(); // $ExpectType RandomStream
f(); // $ExpectType RandomStream
f(); // $ExpectType RandomStream
f = RandomStream.factory( { 'iter': 10 } );
f(); // $ExpectType RandomStream
f(); // $ExpectType RandomStream
f(); // $ExpectType RandomStream
}
// The compiler throws an error if the constructor is provided an argument which is not an options object...
{
new RandomStream( 'abc' ); // $ExpectError
new RandomStream( 123 ); // $ExpectError
new RandomStream( true ); // $ExpectError
new RandomStream( false ); // $ExpectError
new RandomStream( [] ); // $ExpectError
new RandomStream( null ); // $ExpectError
}
// The compiler throws an error if the `objectMode` method is provided an argument which is not an options object...
{
RandomStream.objectMode( 'abc' ); // $ExpectError
RandomStream.objectMode( 123 ); // $ExpectError
RandomStream.objectMode( true ); // $ExpectError
RandomStream.objectMode( false ); // $ExpectError
RandomStream.objectMode( [] ); // $ExpectError
RandomStream.objectMode( null ); // $ExpectError
}
// The compiler throws an error if the `factory` method is provided an argument which is not an options object...
{
RandomStream.factory( 'abc' ); // $ExpectError
RandomStream.factory( 123 ); // $ExpectError
RandomStream.factory( true ); // $ExpectError
RandomStream.factory( false ); // $ExpectError
RandomStream.factory( [] ); // $ExpectError
RandomStream.factory( null ); // $ExpectError
}
// The compiler throws an error if the function returned by the `factory` method is provided input arguments...
{
let f = RandomStream.factory();
f( 2.0 ); // $ExpectError
f = RandomStream.factory( {} );
f( 2.0 ); // $ExpectError
f = RandomStream.factory( { 'iter': 10 } );
f( 2.0 ); // $ExpectError
}