1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* This file is part of the Vultr PHP library. |
4
|
|
|
* |
5
|
|
|
* (c) Albert Leitato <[email protected]> |
6
|
|
|
* |
7
|
|
|
* For the full copyright and license information, please view the LICENSE |
8
|
|
|
* file that was distributed with this source code. |
9
|
|
|
*/ |
10
|
|
|
namespace Vultr\Tests; |
11
|
|
|
|
12
|
|
|
class VultrTest extends TestCase |
13
|
|
|
{ |
14
|
|
|
public function testAccount() |
15
|
|
|
{ |
16
|
|
|
$account = $this->vultr->account; |
|
|
|
|
17
|
|
|
$this->assertInstanceOf('Vultr\Api\Account', $account); |
18
|
|
|
} |
19
|
|
|
|
20
|
|
|
public function testApplication() |
21
|
|
|
{ |
22
|
|
|
$application = $this->vultr->application; |
|
|
|
|
23
|
|
|
$this->assertInstanceOf('Vultr\Api\Application', $application); |
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
public function testAuth() |
27
|
|
|
{ |
28
|
|
|
$this->assertInstanceOf('Vultr\Api\Auth', $this->vultr->auth); |
|
|
|
|
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
public function testBackup() |
32
|
|
|
{ |
33
|
|
|
$this->assertInstanceOf('Vultr\Api\Backup', $this->vultr->backup); |
|
|
|
|
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
public function testDomain() |
37
|
|
|
{ |
38
|
|
|
$this->assertInstanceOf('Vultr\Api\Domain', $this->vultr->domain); |
|
|
|
|
39
|
|
|
} |
40
|
|
|
public function testBlock() |
41
|
|
|
{ |
42
|
|
|
$this->assertInstanceOf('Vultr\Api\Block', $this->vultr->block); |
|
|
|
|
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function testDomainRecord() |
46
|
|
|
{ |
47
|
|
|
$this->assertInstanceOf('Vultr\Api\DomainRecord', $this->vultr->domain_record); |
|
|
|
|
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public function testFirewallGroup() |
51
|
|
|
{ |
52
|
|
|
$this->assertInstanceOf('Vultr\Api\FirewallGroup', $this->vultr->firewall_group); |
|
|
|
|
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
public function testFirewallRule() |
56
|
|
|
{ |
57
|
|
|
$this->assertInstanceOf('Vultr\Api\FirewallRule', $this->vultr->firewall_rule); |
|
|
|
|
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
public function testImage() |
61
|
|
|
{ |
62
|
|
|
$this->assertInstanceOf('Vultr\Api\Image', $this->vultr->image); |
|
|
|
|
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function testOs() |
66
|
|
|
{ |
67
|
|
|
$this->assertInstanceOf('Vultr\Api\Os', $this->vultr->os); |
|
|
|
|
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
public function testPlan() |
71
|
|
|
{ |
72
|
|
|
$this->assertInstanceOf('Vultr\Api\Plan', $this->vultr->plan); |
|
|
|
|
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
public function testRegion() |
76
|
|
|
{ |
77
|
|
|
$this->assertInstanceOf('Vultr\Api\Region', $this->vultr->region); |
|
|
|
|
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
public function testReservedIp() |
81
|
|
|
{ |
82
|
|
|
$this->assertInstanceOf('Vultr\Api\ReservedIp', $this->vultr->reserved_ip); |
|
|
|
|
83
|
|
|
} |
84
|
|
|
|
85
|
|
|
public function testServer() |
86
|
|
|
{ |
87
|
|
|
$this->assertInstanceOf('Vultr\Api\Server', $this->vultr->server); |
|
|
|
|
88
|
|
|
} |
89
|
|
|
} |
90
|
|
|
|
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.