-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Fix TestCase::expectErrorLog() with open_basedir php.ini #6208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mvorisek
wants to merge
3
commits into
sebastianbergmann:12.1
Choose a base branch
from
mvorisek:fix_6197
base: 12.1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
tests/end-to-end/generic/expect-error-log-fail-with-open_basedir.phpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--TEST-- | ||
https://github.com/sebastianbergmann/phpunit/issues/6197 | ||
--FILE-- | ||
<?php declare(strict_types=1); | ||
$_SERVER['argv'][] = '--do-not-cache-result'; | ||
$_SERVER['argv'][] = '--no-configuration'; | ||
$_SERVER['argv'][] = '--testdox'; | ||
$_SERVER['argv'][] = __DIR__ . '/_files/ExpectErrorLogFailTest.php'; | ||
|
||
/* | ||
* Expected result should match the result of expect-error-log-fail-with-open_basedir.phpt test, | ||
* but at least one of these feature requests needs to be implemented in php-src: | ||
* - https://github.com/php/php-src/issues/17817 | ||
* - https://github.com/php/php-src/issues/18530 | ||
* | ||
* Until then, mark the test result as incomplete when TestCase::expectErrorLog() was called and an error_log file | ||
* could not be created (because of open_basedir php.ini in effect, readonly filesystem...). | ||
*/ | ||
|
||
ini_set('open_basedir', (ini_get('open_basedir') ? ini_get('open_basedir') . PATH_SEPARATOR : '') . dirname(__DIR__, 3)); | ||
|
||
require_once __DIR__ . '/../../bootstrap.php'; | ||
|
||
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']); | ||
--EXPECTF-- | ||
PHPUnit %s by Sebastian Bergmann and contributors. | ||
|
||
Runtime: %s | ||
|
||
I 1 / 1 (100%) | ||
|
||
Time: %s, Memory: %s | ||
|
||
Expect Error Log Fail (PHPUnit\TestFixture\ExpectNoErrorLog\ExpectErrorLogFail) | ||
∅ One | ||
│ | ||
│ Could not create writable error_log file. | ||
|
||
│ | ||
|
||
OK, but there were issues! | ||
Tests: 1, Assertions: 1, Incomplete: 1. |
33 changes: 33 additions & 0 deletions
33
tests/end-to-end/generic/expect-error-log-with-open_basedir.phpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--TEST-- | ||
https://github.com/sebastianbergmann/phpunit/issues/6197 | ||
--FILE-- | ||
<?php declare(strict_types=1); | ||
$_SERVER['argv'][] = '--do-not-cache-result'; | ||
$_SERVER['argv'][] = '--no-configuration'; | ||
$_SERVER['argv'][] = '--testdox'; | ||
$_SERVER['argv'][] = __DIR__ . '/_files/ExpectErrorLogTest.php'; | ||
|
||
ini_set('open_basedir', (ini_get('open_basedir') ? ini_get('open_basedir') . PATH_SEPARATOR : '') . dirname(__DIR__, 3)); | ||
|
||
require_once __DIR__ . '/../../bootstrap.php'; | ||
|
||
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']); | ||
--EXPECTF-- | ||
PHPUnit %s by Sebastian Bergmann and contributors. | ||
|
||
Runtime: %s | ||
|
||
logged a side effect | ||
I 1 / 1 (100%) | ||
|
||
Time: %s, Memory: %s | ||
|
||
Expect Error Log (PHPUnit\TestFixture\ExpectErrorLog\ExpectErrorLog) | ||
∅ One | ||
│ | ||
│ Could not create writable error_log file. | ||
|
||
│ | ||
|
||
OK, but there were issues! | ||
Tests: 1, Assertions: 1, Incomplete: 1. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.