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
|
<?php
use PHPUnit\Framework\TestCase;
class ApiTest extends TestCase {
private function _doTest($input, $expected) {
require_once(dirname(__FILE__) . '/../http/api-inc.php');
if (is_string($expected)) {
$this->expectException(ParametersException::class);
run($input);
} else {
$output = run($input);
$this->assertEquals($expected, $output);
}
}
/**
* @dataProvider generatedDataProvider
*/
public function testRandomResults($input, $expected) {
$this->_doTest($input, $expected);
}
/**
* @dataProvider generatedDataProvider
*/
public function testBoardCounts($input, $expected) {
$input['boards'] = strval($input['over39_boards'] ? rand(40, 60) : rand(1, 39));
unset($input['over39_boards']);
$this->_doTest($input, $expected);
}
/**
* @dataProvider bridgenetDataProvider
*/
public function testBridgenet($input, $expected) {
$this->_doTest($input, $expected);
}
private function _fileDataProvider($file) {
$contents = file(dirname(__FILE__) . '/' . $file);
$count = count($contents);
for ($i = 0; $i < $count; $i += 2) {
$input = [];
parse_str(http_build_query(json_decode($contents[$i], TRUE)), $input);
yield [$input, json_decode($contents[$i+1], TRUE)];
}
}
public function generatedDataProvider() {
yield from $this->_fileDataProvider('tests.txt');
}
public function bridgenetDataProvider() {
yield from $this->_fileDataProvider('bridgenet.txt');
}
}
?>
|