-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathToolkitTest.php
234 lines (181 loc) · 6.61 KB
/
ToolkitTest.php
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
<?php
namespace ToolkitApiTest;
use PHPUnit\Framework\TestCase;
use ToolkitApi\BinParam;
use ToolkitApi\CharParam;
use ToolkitApi\DataArea;
use ToolkitApi\FloatParam;
use ToolkitApi\HoleParam;
use ToolkitApi\Int16Param;
use ToolkitApi\Int32Param;
use ToolkitApi\Int64Param;
use ToolkitApi\Int8Param;
use ToolkitApi\PackedDecParam;
use ToolkitApi\RealParam;
use ToolkitApi\SizePackParam;
use ToolkitApi\SizeParam;
use ToolkitApi\Toolkit;
use ToolkitApi\ToolkitInterface;
use ToolkitApi\UInt16Param;
use ToolkitApi\UInt32Param;
use ToolkitApi\UInt64Param;
use ToolkitApi\UInt8Param;
use ToolkitApi\ZonedParam;
use Exception;
/**
* Class ToolkitTest
* @package ToolkitApiTest
*/
final class ToolkitTest extends TestCase
{
/**
* @var ToolkitInterface $toolkit
*/
protected $toolkit;
protected function setUp(): void
{
$this->toolkit = new Toolkit('*LOCAL', '0', 'testPwd', 'http', false);
}
public function testCanAddSigned8ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterInt8('both', 'test comment', 'testVar', 8);
$this->assertTrue($parameter instanceof Int8Param);
}
public function testCanAddSigned16ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterInt16('both', 'test comment', 'testVar', 10);
$this->assertTrue($parameter instanceof Int16Param);
}
public function testCanAddSigned32ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterInt32('both', 'test comment', 'testVar', 100);
$this->assertTrue($parameter instanceof Int32Param);
}
public function testCanAddSigned64ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterInt64('both', 'test comment', 'testVar', 1000);
$this->assertTrue($parameter instanceof Int64Param);
}
public function testCanAddUnsigned8ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterUInt8('both', 'test comment', 'testVar', 8);
$this->assertTrue($parameter instanceof UInt8Param);
}
public function testCanAddUnsigned16ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterUInt16('both', 'test comment', 'testVar', 8);
$this->assertTrue($parameter instanceof UInt16Param);
}
public function testCanAddUnsigned32ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterUInt32('both', 'test comment', 'testVar', 8);
$this->assertTrue($parameter instanceof UInt32Param);
}
public function testCanAddUnsigned64ByteIntegerParameter(): void
{
$parameter = $this->toolkit->AddParameterUInt64('both', 'test comment', 'testVar', 8);
$this->assertTrue($parameter instanceof UInt64Param);
}
public function testCanAddCharacterParameter(): void
{
$parameter = $this->toolkit->AddParameterChar('both', 10, 'CODE', 'CODE', 'code');
$this->assertTrue($parameter instanceof CharParam);
}
public function testCanAddFloatParameter(): void
{
$parameter = $this->toolkit->AddParameterFloat('both', 'test comment', 'varName', 'false');
$this->assertTrue($parameter instanceof FloatParam);
}
public function testCanAddRealParameter(): void
{
$parameter = $this->toolkit->AddParameterReal('both', 'test comment', 'varName', 'testValue');
$this->assertTrue($parameter instanceof RealParam);
}
public function testCanAddPackedDecimalParameter(): void
{
$parameter = $this->toolkit->AddParameterPackDec('both', 7,4, 'INDEC1', 'var3', '001.0001');
$this->assertTrue($parameter instanceof PackedDecParam);
}
public function testCanAddZonedParameter(): void
{
$parameter = $this->toolkit->AddParameterZoned('both', 12, 2, 'Check amount', 'amount', '2000.25');
$this->assertTrue($parameter instanceof ZonedParam);
}
public function testCanAddParameterHole(): void
{
$parameter = $this->toolkit->AddParameterHole(12, 'hole');
$this->assertTrue($parameter instanceof HoleParam);
}
public function testCanAddBinaryParameter(): void
{
$parameter = $this->toolkit->AddParameterBin('both', 20, 'UncodeSample', 'p1', 'test');
$this->assertTrue($parameter instanceof BinParam);
}
public function testCanAddParameterSize(): void
{
$size = $this->toolkit->AddParameterSize('test comment', 'varName', 3);
$this->assertTrue($size instanceof SizeParam);
}
public function testCanAddParameterSizePack(): void
{
$parameter = $this->toolkit->AddParameterSizePack('test comment', 'varName', 4);
$this->assertTrue($parameter instanceof SizePackParam);
}
public function testCanSetPersistent(): void
{
$isPersistent = false;
$this->toolkit->setIsPersistent($isPersistent);
$this->assertEquals($isPersistent, $this->toolkit->getIsPersistent());
}
public function testCanReturnScriptAbsolutePath(): void
{
$path = Toolkit::classPath();
$this->assertEquals($path, $this->toolkit->classPath());
}
public function testCanGetPhpOperatingSystem(): void
{
$os = php_uname('s');
$this->assertEquals($os, $this->toolkit->getPhpOperatingSystem());
}
public function testCanTellIfPhpIsRunningOnIbmI(): void
{
$isRunningOnIbmI = (php_uname('s') === 'OS400');
$this->assertEquals($isRunningOnIbmI, $this->toolkit->isPhpRunningOnIbmI());
}
public function testDatabaseNameOrResourceIsNotBoolean(): void
{
$resource = false;
$this->expectException(Exception::class);
new Toolkit($resource);
}
public function testDatabaseNameOrResourceIsNotFloat(): void
{
$resource = 1.81;
$this->expectException(Exception::class);
new Toolkit($resource);
}
public function testDatabaseNameOrResourceIsNotObject(): void
{
$resource = new DataArea();
$this->expectException(Exception::class);
new Toolkit($resource);
}
public function testDatabaseNameOrResourceIsNotInteger(): void
{
$resource = 12;
$this->expectException(Exception::class);
new Toolkit($resource);
}
public function testDatabaseNameOrResourceIsNotArray(): void
{
$resource = array(1, 2, 3);
$this->expectException(Exception::class);
new Toolkit($resource);
}
public function testDatabaseNameOrResourceIsNotNull(): void
{
$resource = null;
$this->expectException(Exception::class);
new Toolkit($resource);
}
}