blob: 93ed02446fc084afc8bf49c668f71ce18273e143 (
plain)
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
|
<?php
use PHPUnit\Framework\TestCase;
class ApiTest extends TestCase {
/**
* @dataProvider generatedDataProvider
*/
public function testRandomResults($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);
}
}
public function generatedDataProvider() {
$contents = file(dirname(__FILE__) . '/tests.txt');
$count = count($contents) / 2;
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)];
}
}
}
?>
|