mirror of
https://gitee.com/yansongda/pay.git
synced 2024-11-30 03:07:38 +08:00
155 lines
4.5 KiB
PHP
155 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace Yansongda\Pay\Tests;
|
|
|
|
use DI\Container;
|
|
use GuzzleHttp\Client;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psr\Container\ContainerInterface;
|
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
|
use Yansongda\Pay\Contract\ConfigInterface;
|
|
use Yansongda\Pay\Contract\EventDispatcherInterface;
|
|
use Yansongda\Pay\Contract\HttpClientInterface;
|
|
use Yansongda\Pay\Contract\LoggerInterface;
|
|
use Yansongda\Pay\Exception\ContainerException;
|
|
use Yansongda\Pay\Exception\ServiceNotFoundException;
|
|
use Yansongda\Pay\Pay;
|
|
use Yansongda\Pay\Tests\Stubs\FooServiceProviderStub;
|
|
use Yansongda\Supports\Collection;
|
|
use Yansongda\Supports\Config;
|
|
use Yansongda\Supports\Logger;
|
|
use Yansongda\Supports\Pipeline;
|
|
|
|
class PayTest extends TestCase
|
|
{
|
|
protected function tearDown (): void
|
|
{
|
|
Pay::clear();
|
|
}
|
|
|
|
public function testConfig()
|
|
{
|
|
$result = Pay::config(['name' => 'yansongda']);
|
|
static::assertInstanceOf(Pay::class, $result);
|
|
}
|
|
|
|
public function testSetAndGet()
|
|
{
|
|
Pay::config(['name' => 'yansongda']);
|
|
|
|
Pay::set('age', 28);
|
|
|
|
self::assertEquals(28, Pay::get('age'));
|
|
}
|
|
|
|
public function testHas()
|
|
{
|
|
Pay::config(['name' => 'yansongda']);
|
|
|
|
Pay::set('age', 28);
|
|
|
|
self::assertFalse(Pay::has('name'));
|
|
self::assertTrue(Pay::has('age'));
|
|
}
|
|
|
|
public function testGetContainerAndClear()
|
|
{
|
|
Pay::config(['name' => 'yansongda']);
|
|
self::assertInstanceOf(ContainerInterface::class, Pay::getContainer());
|
|
|
|
Pay::clear();
|
|
|
|
$this->expectException(ContainerException::class);
|
|
$this->expectExceptionCode(ContainerException::CONTAINER_NOT_FOUND);
|
|
$this->expectExceptionMessage('You should init/config PAY first');
|
|
|
|
Pay::getContainer();
|
|
}
|
|
|
|
public function testMakeService()
|
|
{
|
|
Pay::config(['name' => 'yansongda']);
|
|
self::assertNotSame(Pay::make(Pipeline::class), Pay::make(Pipeline::class));
|
|
}
|
|
|
|
public function testRegisterService()
|
|
{
|
|
Pay::config(['name' => 'yansongda']);
|
|
|
|
Pay::registerService(FooServiceProviderStub::class, []);
|
|
|
|
self::assertEquals('bar', Pay::get('foo'));
|
|
}
|
|
|
|
public function testMagicCallNotFoundService()
|
|
{
|
|
$this->expectException(ServiceNotFoundException::class);
|
|
|
|
Pay::foo([]);
|
|
}
|
|
|
|
public function testCoreService()
|
|
{
|
|
Pay::config(['name' => 'yansongda']);
|
|
|
|
self::assertInstanceOf(Container::class, Pay::get(\Yansongda\Pay\Contract\ContainerInterface::class));
|
|
self::assertInstanceOf(Container::class, Pay::get(ContainerInterface::class));
|
|
self::assertInstanceOf(Pay::class, Pay::get(Pay::class));
|
|
}
|
|
|
|
public function testCoreServiceConfig()
|
|
{
|
|
$config = ['name' => 'yansongda'];
|
|
Pay::config($config);
|
|
|
|
self::assertInstanceOf(Config::class, Pay::get(ConfigInterface::class));
|
|
self::assertInstanceOf(Config::class, Pay::get('config'));
|
|
self::assertEquals($config['name'], Pay::get(ConfigInterface::class)->get('name'));
|
|
|
|
// 修改 config 的情况
|
|
$config2 = [
|
|
'name' => 'yansongda2',
|
|
];
|
|
Pay::set(ConfigInterface::class, new Config($config2));
|
|
|
|
self::assertEquals($config2['name'], Pay::get(ConfigInterface::class)->get('name'));
|
|
}
|
|
|
|
public function testCoreServiceLogger()
|
|
{
|
|
$config = ['name' => 'yansongda','logger' => ['enable' => true]];
|
|
Pay::config($config);
|
|
|
|
self::assertInstanceOf(Logger::class, Pay::get(LoggerInterface::class));
|
|
|
|
$otherLogger = new \Monolog\Logger('test');
|
|
Pay::set(LoggerInterface::class, $otherLogger);
|
|
self::assertEquals($otherLogger, Pay::get(LoggerInterface::class));
|
|
}
|
|
|
|
public function testCoreServiceEvent()
|
|
{
|
|
$config = ['name' => 'yansongda'];
|
|
Pay::config($config);
|
|
|
|
self::assertInstanceOf(EventDispatcher::class, Pay::get(EventDispatcherInterface::class));
|
|
}
|
|
|
|
public function testCoreServiceHttpClient()
|
|
{
|
|
$config = ['name' => 'yansongda'];
|
|
Pay::config($config);
|
|
|
|
self::assertInstanceOf(Client::class, Pay::get(HttpClientInterface::class));
|
|
|
|
// 使用外部 http client
|
|
$oldClient = Pay::get(HttpClientInterface::class);
|
|
|
|
$client = new Client(['timeout' => 3.0]);
|
|
Pay::set(HttpClientInterface::class, $client);
|
|
|
|
self::assertEquals($client, Pay::get(HttpClientInterface::class));
|
|
self::assertNotEquals($oldClient, Pay::get(HttpClientInterface::class));
|
|
}
|
|
}
|