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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Webapi\Test\Unit\Model\Config;
/**
* Test for class reflector.
*/
class ClassReflectorTest extends \PHPUnit\Framework\TestCase
{
/** @var \Magento\Framework\Reflection\TypeProcessor|\PHPUnit_Framework_MockObject_MockObject */
protected $_typeProcessor;
/** @var \Magento\Webapi\Model\Config\ClassReflector */
protected $_classReflector;
/**
* Set up helper.
*/
protected function setUp()
{
$this->_typeProcessor = $this->createPartialMock(
\Magento\Framework\Reflection\TypeProcessor::class,
['process']
);
$this->_typeProcessor->expects(
$this->any()
)->method(
'process'
)->will(
$this->returnValueMap([['string', 'str'], ['int', 'int']])
);
$this->_classReflector = new \Magento\Webapi\Model\Config\ClassReflector($this->_typeProcessor);
}
public function testReflectClassMethods()
{
$data = $this->_classReflector->reflectClassMethods(
\Magento\Webapi\Test\Unit\Model\Config\TestServiceForClassReflector::class,
['generateRandomString' => ['method' => 'generateRandomString']]
);
$this->assertEquals(['generateRandomString' => $this->_getSampleReflectionData()], $data);
}
public function testExtractMethodData()
{
$classReflection = new \Zend\Code\Reflection\ClassReflection(
\Magento\Webapi\Test\Unit\Model\Config\TestServiceForClassReflector::class
);
/** @var $methodReflection \Zend\Code\Reflection\MethodReflection */
$methodReflection = $classReflection->getMethods()[0];
$methodData = $this->_classReflector->extractMethodData($methodReflection);
$expectedResponse = $this->_getSampleReflectionData();
$this->assertEquals($expectedResponse, $methodData);
}
/**
* Expected reflection data for TestServiceForClassReflector generateRandomString method
*
* @return array
*/
protected function _getSampleReflectionData()
{
return [
'documentation' => 'Basic random string generator. This line is short description ' .
'This line is long description. This is still the long description.',
'interface' => [
'in' => [
'parameters' => [
'length' => [
'type' => 'int',
'required' => true,
'documentation' => 'length of the random string',
],
],
],
'out' => [
'parameters' => [
'result' => ['type' => 'string', 'documentation' => 'random string', 'required' => true],
],
],
]
];
}
}