HummingBirdAnimeClient/tests/Ion/FriendTest.php

79 lines
1.8 KiB
PHP
Raw Permalink Normal View History

<?php declare(strict_types=1);
/**
2020-03-12 11:45:11 -04:00
* Hummingbird Anime List Client
*
2020-03-12 11:45:11 -04:00
* An API client for Kitsu to manage anime and manga watch lists
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2023-07-13 11:08:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
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
{
parent::setUp();
$obj = new FriendTestClass();
$this->friend = new Friend($obj);
}
2022-03-04 12:19:47 -05:00
public function testPrivateMethod(): void
{
$actual = $this->friend->getPrivate();
2022-03-04 12:19:47 -05:00
$this->assertSame(23, $actual);
}
2022-03-04 12:19:47 -05:00
public function testProtectedMethod(): void
{
$actual = $this->friend->getProtected();
2022-03-04 12:19:47 -05:00
$this->assertSame(4, $actual);
}
2022-03-04 12:19:47 -05:00
public function testGet(): void
{
2022-03-04 12:19:47 -05:00
$this->assertSame(356, $this->friend->protected);
$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);
$this->assertNull($this->friend->parentPrivate); // Can't get a parent's privates
}
2020-03-12 12:04:20 -04:00
public function testSet(): void
{
$this->friend->private = 123;
2022-03-04 12:19:47 -05:00
$this->assertSame(123, $this->friend->private);
$this->friend->foo = 32;
$this->assertNull($this->friend->foo);
}
2022-03-04 12:19:47 -05:00
public function testBadInvokation(): void
{
$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
{
$this->expectException('BadMethodCallException');
$this->expectExceptionMessage("Method 'foo' does not exist");
$this->friend->foo();
}
2022-03-04 12:19:47 -05:00
}