summaryrefslogtreecommitdiff
path: root/tests/integration/ApiTest.php
blob: cd7a8d67a55753118b7cc7c984df17035e5b8192 (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
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
<?php
use PHPUnit\Framework\TestCase;

/** @group integration */
final class ApiTest extends TestCase {

	/** @var string */
	private $api_url;

	/** @var string */
	private $sid;

	function __construct() {

		$this->api_url = $_ENV['API_URL'];

		print_r($this->api_url);

		parent::__construct();
	}

	function api(array $payload) : ?array {
		$ch = curl_init($this->api_url);

		curl_setopt($ch, CURLOPT_HEADER, false);
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
		curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-type: application/json"]);
		curl_setopt($ch, CURLOPT_POST, true);
		curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));

		$response = curl_exec($ch);

		$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);

		curl_close($ch);

		return json_decode($response, true);
	}

	public function common_assertions(array $response) {
		$this->assertArrayHasKey("content", $response);
		$this->assertArrayNotHasKey("error", $response['content'], $response['content']['error']);
	}

	public function test_login() {
		$response = $this->api(["op" => "login", "user" => "test", "password" => "test"]);

		$this->common_assertions($response);
	}

	public function test_getVersion() {

		$response = $this->api(["op" => "getVersion"]);

		$this->common_assertions($response);


	}

}