Skip to content

Commit 9c4da9f

Browse files
limingxinleohuangzhhui
authored andcommitted
自定义组件支持别名配置 (swoft-cloud/swoft-component#181)
* 增加自定义组件支持别名的单测 * 让组件地址支持别名
1 parent bccf7a6 commit 9c4da9f

File tree

6 files changed

+71
-2
lines changed

6 files changed

+71
-2
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
},
3838
"autoload-dev": {
3939
"psr-4": {
40-
"SwoftTest\\": "test/Cases"
40+
"SwoftTest\\": "test/Cases",
41+
"SwoftTest\\Testing\\": "test/Testing/"
4142
}
4243
},
4344
"repositories": {

src/Bean/Resource/CustomComponentsRegister.php

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public function registerServerNamespace()
2020
}
2121

2222
$this->componentNamespaces[] = $ns;
23+
$componentDir = alias($componentDir);
2324

2425
foreach ($this->serverScan as $dir) {
2526
$scanDir = $componentDir . DS . $dir;
@@ -48,6 +49,7 @@ public function registerWorkerNamespace()
4849
}
4950

5051
$this->componentNamespaces[] = $ns;
52+
$componentDir = alias($componentDir);
5153

5254
if (!is_dir($componentDir)) {
5355
continue;

test/Cases/BeanTest.php

+10
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
use Swoft\Proxy\Proxy;
1515
use SwoftTest\Bean\ProxyTest;
1616
use SwoftTest\Bean\TestHandler;
17+
use SwoftTest\Testing\Bean\Config;
1718

1819
/**
1920
* Class BeanTest
@@ -52,4 +53,13 @@ public function testCustomComponentNamespaces()
5253
$namespace = $resource->getComponentNamespaces();
5354
$this->assertNotFalse(array_search('SwoftTest', $namespace));
5455
}
56+
57+
public function testCustomComponentSupportAlias()
58+
{
59+
$config = bean(Config::class);
60+
$this->assertEquals('test', $config->getName());
61+
62+
$config = bean(\SwoftTest\Testing\Bean2\Config::class);
63+
$this->assertEquals('test', $config->getName());
64+
}
5565
}

test/Testing/Bean/Config.php

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
namespace SwoftTest\Testing\Bean;
3+
4+
use Swoft\Bean\Annotation\Bean;
5+
use Swoft\Bean\Annotation\Value;
6+
7+
/**
8+
* Class Config
9+
* @Bean
10+
* @package SwoftTest\Testing\Bean
11+
*/
12+
class Config
13+
{
14+
/**
15+
* @Value(env="${TEST_NAME}")
16+
* @var string
17+
*/
18+
public $name = 'fail';
19+
20+
/**
21+
* @return string
22+
*/
23+
public function getName(): string
24+
{
25+
return $this->name;
26+
}
27+
}

test/Testing/Bean2/Config.php

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
namespace SwoftTest\Testing\Bean2;
3+
4+
use Swoft\Bean\Annotation\Bean;
5+
use Swoft\Bean\Annotation\Value;
6+
7+
/**
8+
* Class Config
9+
* @Bean
10+
* @package SwoftTest\Testing\Bean
11+
*/
12+
class Config
13+
{
14+
/**
15+
* @Value(env="${TEST_NAME}")
16+
* @var string
17+
*/
18+
public $name = 'fail';
19+
20+
/**
21+
* @return string
22+
*/
23+
public function getName(): string
24+
{
25+
return $this->name;
26+
}
27+
}

test/config/properties/app.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
'env' => 'Base',
2020
'components' => [
2121
'custom' => [
22-
'SwoftTest'
22+
'SwoftTest',
23+
'SwoftTest\\Testing\\Bean' => BASE_PATH . '/Testing/Bean',
24+
'SwoftTest\\Testing\\Bean2' => '@root/Testing/Bean2',
2325
]
2426
],
2527
'provider' => require __DIR__ . DS . 'provider.php',

0 commit comments

Comments
 (0)