-
Notifications
You must be signed in to change notification settings - Fork 329
/
Copy pathAbstractTypeTest.php
78 lines (61 loc) · 1.59 KB
/
AbstractTypeTest.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
<?php
namespace TelegramBot\Api\Test;
use PHPUnit\Framework\TestCase;
abstract class AbstractTypeTest extends TestCase
{
/**
* @return string
*/
/*abstract*/ protected static function getType()
{
return new \LogicException(sprintf('Method "%s:%s" must be implemented', static::class, __METHOD__));
}
/**
* @return array
*/
/*abstract*/ public static function getMinResponse()
{
return [];
}
/**
* @return array
*/
/*abstract*/ public static function getFullResponse()
{
return [];
}
public static function createMinInstance()
{
$class = static::getType();
return $class::fromResponse(static::getMinResponse());
}
public static function createFullInstance()
{
$class = static::getType();
return $class::fromResponse(static::getFullResponse());
}
public function testFromResponseMin()
{
$item = static::createMinInstance();
$this->assertInstanceOf(static::getType(), $item);
$this->assertMinItem($item);
}
public function testFromResponseFull()
{
$item = static::createFullInstance();
$this->assertInstanceOf(static::getType(), $item);
$this->assertFullItem($item);
$innerJson = $item->toJson();
$this->assertIsString($innerJson);
}
/**
* @param object $item
* @return void
*/
abstract protected function assertMinItem($item);
/**
* @param object $item
* @return void
*/
abstract protected function assertFullItem($item);
}