Skip to content

Commit c345c29

Browse files
authored
Merge pull request #1361 from ulue/dev2
2 parents c8f3bf1 + 85df5e2 commit c345c29

File tree

5 files changed

+102
-21
lines changed

5 files changed

+102
-21
lines changed

.php_cs

+12-9
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,24 @@ return PhpCsFixer\Config::create()
1313
->setRiskyAllowed(true)
1414
->setRules([
1515
'@PSR2' => true,
16-
'header_comment' => [
17-
'comment_type' => 'PHPDoc',
18-
'header' => $header,
19-
'separate' => 'bottom'
20-
],
2116
'array_syntax' => [
2217
'syntax' => 'short'
2318
],
24-
'encoding' => true, // MUST use only UTF-8 without BOM
25-
'single_quote' => true,
2619
'class_attributes_separation' => true,
20+
'declare_strict_types' => true,
21+
'encoding' => true, // MUST use only UTF-8 without BOM
22+
'global_namespace_import' => [
23+
'import_constants' => true,
24+
'import_functions' => true,
25+
],
26+
'header_comment' => [
27+
'comment_type' => 'PHPDoc',
28+
'header' => $header,
29+
'separate' => 'bottom'
30+
],
2731
'no_unused_imports' => true,
28-
'global_namespace_import' => true,
32+
'single_quote' => true,
2933
'standardize_not_equals' => true,
30-
'declare_strict_types' => true,
3134
])
3235
->setFinder(
3336
PhpCsFixer\Finder::create()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of Swoft.
4+
*
5+
* @link https://swoft.org
6+
* @document https://swoft.org/docs
7+
* @contact [email protected]
8+
* @license https://github.com/swoft-cloud/swoft/blob/master/LICENSE
9+
*/
10+
11+
namespace App\Http\Middleware;
12+
13+
use Psr\Http\Message\ResponseInterface;
14+
use Psr\Http\Message\ServerRequestInterface;
15+
use Psr\Http\Server\RequestHandlerInterface;
16+
use Swoft\Bean\Annotation\Mapping\Bean;
17+
use Swoft\Http\Message\Request;
18+
use Swoft\Http\Server\Contract\MiddlewareInterface;
19+
use function context;
20+
use function strpos;
21+
22+
/**
23+
* Class DomainLimitMiddleware
24+
*
25+
* @Bean()
26+
*/
27+
class DomainLimitMiddleware implements MiddlewareInterface
28+
{
29+
private $domain2paths = [
30+
'user.com' => [
31+
// match all /user/*
32+
'/user/',
33+
],
34+
'blog.com' => [
35+
// match all /blog/*
36+
'/blog/',
37+
]
38+
];
39+
40+
/**
41+
* Process an incoming server request.
42+
*
43+
* @param ServerRequestInterface|Request $request
44+
* @param RequestHandlerInterface $handler
45+
*
46+
* @return ResponseInterface
47+
* @inheritdoc
48+
*/
49+
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
50+
{
51+
$uriPath = $request->getUriPath();
52+
$domain = $request->getUri()->getHost();
53+
54+
if (!isset($this->domain2paths[$domain])) {
55+
return context()->getResponse()->withStatus(404)->withContent('invalid request domain');
56+
}
57+
58+
foreach ($this->domain2paths[$domain] as $prefix) {
59+
// not match route prefix
60+
if (strpos($uriPath, $prefix) !== 0) {
61+
return context()->getResponse()->withStatus(404)->withContent('page not found');
62+
}
63+
}
64+
65+
return $handler->handle($request);
66+
}
67+
}

app/Http/Middleware/FavIconMiddleware.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use Psr\Http\Message\ServerRequestInterface;
1515
use Psr\Http\Server\RequestHandlerInterface;
1616
use Swoft\Bean\Annotation\Mapping\Bean;
17-
use Swoft\Exception\SwoftException;
1817
use Swoft\Http\Message\Request;
1918
use Swoft\Http\Server\Contract\MiddlewareInterface;
2019
use function context;
@@ -34,10 +33,12 @@ class FavIconMiddleware implements MiddlewareInterface
3433
*
3534
* @return ResponseInterface
3635
* @inheritdoc
37-
* @throws SwoftException
3836
*/
3937
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
4038
{
39+
$uriPath = $request->getUriPath();
40+
$domain = $request->getUri()->getHost();
41+
4142
if ($request->getUriPath() === '/favicon.ico') {
4243
return context()->getResponse()->withStatus(404);
4344
}

test/README.md

+16-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
# Tests
22

3-
## Http tests
4-
5-
**If you want to run http client tests, you must start the http server.**
6-
7-
### Run http tests
8-
9-
Can only be run inside phpstorm.
10-
11-
![http-client-tests](testdata/http-client-tests.png)
12-
133
## API tests
144

155
**If you want to run api tests, you must start the http server.**
166

7+
tests case dir: `/test/api/`
8+
179
## Start server
1810

1911
```bash
@@ -30,8 +22,22 @@ php test/run.php -c phpunit.xml --testsuite apiTests
3022

3123
## Unit tests
3224

25+
tests case dir: `/test/unit/`
26+
3327
### Run unit tests
3428

3529
```bash
3630
php test/run.php -c phpunit.xml --testsuite unitTests
3731
```
32+
33+
## Http tests
34+
35+
tests case dir: `/test/httptest/`
36+
37+
**If you want to run http client tests, you must start the http server.**
38+
39+
### Run http tests
40+
41+
Can only be run inside phpstorm.
42+
43+
![http-client-tests](testdata/http-client-tests.png)

test/unit/Common/MyBeanTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
use App\Common\MyBean;
1414
use PHPUnit\Framework\TestCase;
15+
use Swoft\Log\Helper\Log;
1516
use function bean;
1617

1718
/**
@@ -25,6 +26,9 @@ public function testMyMethod2(): void
2526
{
2627
$bean = bean(MyBean::class);
2728

29+
vdump('test message');
30+
Log::info('test message');
31+
2832
$this->assertSame(MyBean::class . '::myMethod2', $bean->myMethod2());
2933
}
3034
}

0 commit comments

Comments
 (0)