Skip to content

Commit 17c2a5d

Browse files
authored
Merge pull request #6 from runkit7/support-runkit7
Support the plan to deprecate old function/constant names
2 parents 19beddd + cee8d11 commit 17c2a5d

File tree

6 files changed

+27
-35
lines changed

6 files changed

+27
-35
lines changed

.phan/config.php

-3
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@
192192

193193
// A list of files to include in analysis
194194
'file_list' => [
195-
// 'vendor/phpunit/phpunit/src/Framework/TestCase.php',
196195
],
197196

198197
// A file list that defines files that will be excluded
@@ -216,7 +215,6 @@
216215
// your application should be included in this list.
217216
'directory_list' => [
218217
'src',
219-
'vendor',
220218
],
221219

222220
// List of case-insensitive file extensions supported by Phan.
@@ -235,7 +233,6 @@
235233
// should be added to the `directory_list` as
236234
// to `exclude_analysis_directory_list`.
237235
"exclude_analysis_directory_list" => [
238-
'vendor',
239236
],
240237

241238
// A list of plugin files to execute

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: php
22
php:
3+
- 7.4
34
- 7.3
45
- 7.2
5-
- 7.1
66

77
before_script:
88
- ci/install_runkit_for_php_version.sh

ci/install_runkit_for_php_version.sh

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
#!/bin/bash -xeu
22
PHP_MAJOR_VERSION=$(php -r "echo PHP_MAJOR_VERSION;");
33

4-
git clone --depth 1 https://github.com/runkit7/runkit7.git
5-
pushd runkit7
6-
phpize && ./configure && make && make install || exit 1
7-
echo 'extension = runkit.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
8-
popd
4+
pecl install runkit7-3.1.0a1
5+
echo 'extension = runkit7.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
96
# Configuration settings needed for running tests.
107
echo 'runkit.internal_override = On' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
118
# Optional, set error reporting

composer.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55
"keywords": ["mocks", "testing", "simplestaticmock", "runkit", "runkit7"],
66
"type": "library",
77
"require": {
8-
"php": ">= 7.0"
9-
},
10-
"suggest": {
11-
"ext-runkit": ">=1.0.5a5 (former name runkit7 was built with)",
12-
"ext-runkit7": ">=3.0.0a1"
8+
"php": ">= 7.2",
9+
"ext-runkit7": ">=3.1.0a1"
1310
},
1411
"require-dev": {
15-
"phpunit/phpunit": "^7.5"
12+
"phpunit/phpunit": "^7.5",
13+
"phan/phan": "^3.1.1"
1614
},
1715
"autoload": {
1816
"psr-4": {"SimpleStaticMock\\": "src/SimpleStaticMock"}

src/SimpleStaticMock/MockFunction.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class MockFunction
5959

6060
/**
6161
* @param \Closure|\ReflectionFunctionAbstract $function (ReflectionFunction or ReflectionMethod)
62-
* NOTE: PLAT-2090: Runkit was extremely slow if we keep references to objects around for long.
62+
* NOTE: Runkit7 was extremely slow if we keep references to objects around for long.
6363
* Until php 7.0.15, there was a bug in the garbage collector that caused those references to stay around.
6464
* As a result, this class and its subclasses were rewritten to avoid keeping a reference to $function in the properties.
6565
*/
@@ -251,7 +251,7 @@ protected function _getStaticVariables(\ReflectionFunctionAbstract $function) :
251251
* 2 => array('value' => 4000),
252252
* );
253253
*
254-
* and the new runkit-redefined method my_class::get_data (the X's represent some sequence of digits)
254+
* and the new runkit7-redefined method my_class::get_data (the X's represent some sequence of digits)
255255
* would be defined as the the following function:
256256
*
257257
* public function getData($id) {
@@ -261,7 +261,7 @@ protected function _getStaticVariables(\ReflectionFunctionAbstract $function) :
261261
* );
262262
* return $fakeData[$data];
263263
* }
264-
* @param array - The static variables of this function.
264+
* @param array $staticVars - The static variables of this function.
265265
* @return void
266266
*/
267267
private function _parseUseClause(array $staticVars)

src/SimpleStaticMock/SimpleStaticMock.php

+17-17
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ public function mock()
121121

122122
$reflectionMethod = new \ReflectionMethod($this->_className, $this->_methodName);
123123
if ($reflectionMethod->isPrivate()) {
124-
$flags = RUNKIT_ACC_PRIVATE;
124+
$flags = RUNKIT7_ACC_PRIVATE;
125125
} elseif ($reflectionMethod->isProtected()) {
126-
$flags = RUNKIT_ACC_PROTECTED;
126+
$flags = RUNKIT7_ACC_PROTECTED;
127127
} else {
128-
$flags = RUNKIT_ACC_PUBLIC;
128+
$flags = RUNKIT7_ACC_PUBLIC;
129129
}
130130
if ($reflectionMethod->isStatic()) {
131-
$flags |= RUNKIT_ACC_STATIC;
131+
$flags |= RUNKIT7_ACC_STATIC;
132132
}
133133

134134
$reflectionClosure = new \ReflectionFunction($this->_closure);
@@ -148,16 +148,16 @@ public function mock()
148148
$body = $function->getBody();
149149

150150
// Used to have problems mocking methods with static variables in them.
151-
// Seems to work now (new version of runkit) so the code checking for that has been removed.
151+
// Seems to work now (new version of runkit7) so the code checking for that has been removed.
152152

153-
if (!\runkit_method_copy($this->_className, $this->_overrideName, $this->_className, $this->_methodName)) {
154-
throw new \RuntimeException($method . ' runkit_method_copy mock');
153+
if (!\runkit7_method_copy($this->_className, $this->_overrideName, $this->_className, $this->_methodName)) {
154+
throw new \RuntimeException($method . ' runkit7_method_copy mock');
155155
}
156-
if (!\runkit_method_remove($this->_className, $this->_methodName)) {
157-
throw new \RuntimeException($method . ' runkit_method_remove mock');
156+
if (!\runkit7_method_remove($this->_className, $this->_methodName)) {
157+
throw new \RuntimeException($method . ' runkit7_method_remove mock');
158158
}
159-
if (!\runkit_method_add($this->_className, $this->_methodName, $function->getParameters(), $body, $flags)) {
160-
throw new \RuntimeException($method . ' runkit_method_add mock');
159+
if (!\runkit7_method_add($this->_className, $this->_methodName, $function->getParameters(), $body, $flags)) {
160+
throw new \RuntimeException($method . ' runkit7_method_add mock');
161161
}
162162

163163
// Register object for later destruction.
@@ -175,14 +175,14 @@ public function unmock()
175175
$method = $this->_classAndMethod();
176176
if ($this->_isMocked) {
177177
// echo "Unmock $method\n";
178-
if (!\runkit_method_remove($this->_className, $this->_methodName)) {
179-
trigger_error($method . ' runkit_method_remove1 unmock');
178+
if (!\runkit7_method_remove($this->_className, $this->_methodName)) {
179+
trigger_error($method . ' runkit7_method_remove1 unmock');
180180
}
181-
if (!\runkit_method_copy($this->_className, $this->_methodName, $this->_className, $this->_overrideName)) {
182-
trigger_error($method . ' runkit_method_copy unmock');
181+
if (!\runkit7_method_copy($this->_className, $this->_methodName, $this->_className, $this->_overrideName)) {
182+
trigger_error($method . ' runkit7_method_copy unmock');
183183
}
184-
if (!\runkit_method_remove($this->_className, $this->_overrideName)) {
185-
trigger_error($method . ' runkit_method_remove2 unmock');
184+
if (!\runkit7_method_remove($this->_className, $this->_overrideName)) {
185+
trigger_error($method . ' runkit7_method_remove2 unmock');
186186
}
187187
$this->_isMocked = false;
188188
self::$_counts[$method] = [];

0 commit comments

Comments
 (0)