2020-03-11 23:04:01 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2020-03-12 11:45:11 -04:00
|
|
|
* Hummingbird Anime List Client
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2020-03-12 11:45:11 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2021-02-04 11:57:01 -05:00
|
|
|
* PHP version 8
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2020-03-12 11:45:11 -04:00
|
|
|
* @package HummingbirdAnimeClient
|
2022-03-04 12:32:17 -05:00
|
|
|
* @author Timothy J. Warren <tim@timshome.page>
|
|
|
|
* @copyright 2015 - 2022 Timothy J. Warren
|
2020-03-11 23:04:01 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2020-03-12 11:45:11 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2020-03-11 23:04:01 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\Ion\Tests;
|
|
|
|
|
|
|
|
use Aviat\Ion\Friend;
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
final class FriendTest extends IonTestCase
|
|
|
|
{
|
2020-03-12 12:04:20 -04:00
|
|
|
protected $friend;
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
protected function setUp(): void
|
|
|
|
{
|
2020-03-11 23:04:01 -04:00
|
|
|
parent::setUp();
|
|
|
|
$obj = new FriendTestClass();
|
|
|
|
$this->friend = new Friend($obj);
|
|
|
|
}
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
public function testPrivateMethod(): void
|
2020-03-11 23:04:01 -04:00
|
|
|
{
|
|
|
|
$actual = $this->friend->getPrivate();
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame(23, $actual);
|
2020-03-11 23:04:01 -04:00
|
|
|
}
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
public function testProtectedMethod(): void
|
2020-03-11 23:04:01 -04:00
|
|
|
{
|
|
|
|
$actual = $this->friend->getProtected();
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame(4, $actual);
|
2020-03-11 23:04:01 -04:00
|
|
|
}
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
public function testGet(): void
|
2020-03-11 23:04:01 -04:00
|
|
|
{
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame(356, $this->friend->protected);
|
2020-03-11 23:04:01 -04:00
|
|
|
$this->assertNull($this->friend->foo); // Return NULL for non-existent properties
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame(47, $this->friend->parentProtected);
|
|
|
|
$this->assertSame(84, $this->friend->grandParentProtected);
|
2020-03-11 23:04:01 -04:00
|
|
|
$this->assertNull($this->friend->parentPrivate); // Can't get a parent's privates
|
|
|
|
}
|
|
|
|
|
2020-03-12 12:04:20 -04:00
|
|
|
public function testSet(): void
|
2020-03-11 23:04:01 -04:00
|
|
|
{
|
|
|
|
$this->friend->private = 123;
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame(123, $this->friend->private);
|
2020-03-11 23:04:01 -04:00
|
|
|
|
|
|
|
$this->friend->foo = 32;
|
|
|
|
$this->assertNull($this->friend->foo);
|
|
|
|
}
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
public function testBadInvokation(): void
|
2020-03-11 23:04:01 -04:00
|
|
|
{
|
|
|
|
$this->expectException('InvalidArgumentException');
|
|
|
|
$this->expectExceptionMessage('Friend must be an object');
|
|
|
|
|
|
|
|
$friend = new Friend('foo');
|
|
|
|
}
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
public function testBadMethod(): void
|
2020-03-11 23:04:01 -04:00
|
|
|
{
|
|
|
|
$this->expectException('BadMethodCallException');
|
|
|
|
$this->expectExceptionMessage("Method 'foo' does not exist");
|
|
|
|
|
|
|
|
$this->friend->foo();
|
|
|
|
}
|
2022-03-04 12:19:47 -05:00
|
|
|
}
|