-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathDispatchTest.php
More file actions
60 lines (50 loc) · 1.55 KB
/
DispatchTest.php
File metadata and controls
60 lines (50 loc) · 1.55 KB
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
<?php
namespace think\tests;
use GuzzleHttp\Psr7\Response;
use Mockery;
use PHPUnit\Framework\TestCase;
use think\App;
use think\Config;
use think\Container;
use think\Request;
use think\route\Dispatch;
use think\route\Rule;
class DispatchTest extends TestCase
{
use InteractsWithApp;
protected function setUp(): void
{
$this->prepareApp();
// Mock config for Cookie dependency
$this->config->shouldReceive('get')->with('cookie')->andReturn([
'expire' => 0,
'path' => '/',
'domain' => '',
'secure' => false,
'httponly' => false,
'samesite' => ''
]);
}
protected function tearDown(): void
{
Mockery::close();
}
public function testPsr7Response()
{
$request = Mockery::mock(Request::class);
$rule = Mockery::mock(Rule::class);
$dispatch = new class($request, $rule, '') extends Dispatch {
public function exec()
{
return new Response(200, ['framework' => ['tp', 'thinkphp'], 'psr' => 'psr-7'], '123');
}
};
// Mock request methods that might be called
$request->shouldReceive('isJson')->andReturn(false);
$response = $dispatch->run();
$this->assertInstanceOf(\think\Response::class, $response);
$this->assertEquals('123', $response->getContent());
$this->assertEquals('tp, thinkphp', $response->getHeader('framework'));
$this->assertEquals('psr-7', $response->getHeader('psr'));
}
}