File tree 6 files changed +71
-2
lines changed
6 files changed +71
-2
lines changed Original file line number Diff line number Diff line change 37
37
},
38
38
"autoload-dev" : {
39
39
"psr-4" : {
40
- "SwoftTest\\ " : " test/Cases"
40
+ "SwoftTest\\ " : " test/Cases" ,
41
+ "SwoftTest\\ Testing\\ " : " test/Testing/"
41
42
}
42
43
},
43
44
"repositories" : {
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ public function registerServerNamespace()
20
20
}
21
21
22
22
$ this ->componentNamespaces [] = $ ns ;
23
+ $ componentDir = alias ($ componentDir );
23
24
24
25
foreach ($ this ->serverScan as $ dir ) {
25
26
$ scanDir = $ componentDir . DS . $ dir ;
@@ -48,6 +49,7 @@ public function registerWorkerNamespace()
48
49
}
49
50
50
51
$ this ->componentNamespaces [] = $ ns ;
52
+ $ componentDir = alias ($ componentDir );
51
53
52
54
if (!is_dir ($ componentDir )) {
53
55
continue ;
Original file line number Diff line number Diff line change 14
14
use Swoft \Proxy \Proxy ;
15
15
use SwoftTest \Bean \ProxyTest ;
16
16
use SwoftTest \Bean \TestHandler ;
17
+ use SwoftTest \Testing \Bean \Config ;
17
18
18
19
/**
19
20
* Class BeanTest
@@ -52,4 +53,13 @@ public function testCustomComponentNamespaces()
52
53
$ namespace = $ resource ->getComponentNamespaces ();
53
54
$ this ->assertNotFalse (array_search ('SwoftTest ' , $ namespace ));
54
55
}
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
+ }
55
65
}
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 19
19
'env ' => 'Base ' ,
20
20
'components ' => [
21
21
'custom ' => [
22
- 'SwoftTest '
22
+ 'SwoftTest ' ,
23
+ 'SwoftTest \\Testing \\Bean ' => BASE_PATH . '/Testing/Bean ' ,
24
+ 'SwoftTest \\Testing \\Bean2 ' => '@root/Testing/Bean2 ' ,
23
25
]
24
26
],
25
27
'provider ' => require __DIR__ . DS . 'provider.php ' ,
You can’t perform that action at this time.
0 commit comments