chengkun
2025-06-05 4080b5997b38ca84b3b203c7101dcadb97b76925
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
<?php
 
namespace think\tests;
 
use GuzzleHttp\Psr7\Response;
use Mockery;
use PHPUnit\Framework\TestCase;
use think\Request;
use think\route\Dispatch;
use think\route\Rule;
 
class DispatchTest extends TestCase
{
    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');
            }
        };
 
        $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'));
    }
}