forked from coenjacobs/mozart
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'namespace-prefix-improvement'
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,67 @@ | ||
<?php | ||
/** | ||
* `return (string) \Aws\serialize($command)->getUri();` not prefixed properly. | ||
* | ||
* @see https://github.com/BrianHenryIE/strauss/issues/88 | ||
*/ | ||
|
||
namespace BrianHenryIE\Strauss\Tests\Issues; | ||
|
||
use BrianHenryIE\Strauss\Console\Commands\Compose; | ||
use BrianHenryIE\Strauss\Tests\Integration\Util\IntegrationTestCase; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
|
||
/** | ||
* @package BrianHenryIE\Strauss\Tests\Issues | ||
* @coversNothing | ||
*/ | ||
class StraussIssue88Test extends IntegrationTestCase | ||
{ | ||
public function test_returned_casted_function_call() | ||
{ | ||
|
||
$composerJsonString = <<<'EOD' | ||
{ | ||
"name": "issue/83", | ||
"require": { | ||
"aws/aws-sdk-php": "3.293.8" | ||
}, | ||
"extra": { | ||
"strauss": { | ||
"namespace_prefix": "Company\\Project\\", | ||
"exclude_from_copy": { | ||
"file_patterns": [ | ||
"/^((?!aws\\/aws-sdk-php).)*$/" | ||
] | ||
} | ||
}, | ||
"aws/aws-sdk-php": [ | ||
"S3" | ||
] | ||
}, | ||
"scripts": { | ||
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices" | ||
} | ||
} | ||
EOD; | ||
|
||
chdir($this->testsWorkingDir); | ||
|
||
file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString); | ||
|
||
exec('composer install'); | ||
|
||
$inputInterfaceMock = $this->createMock(InputInterface::class); | ||
$outputInterfaceMock = $this->createMock(OutputInterface::class); | ||
|
||
$strauss = new Compose(); | ||
|
||
$result = $strauss->run($inputInterfaceMock, $outputInterfaceMock); | ||
|
||
$php_string = file_get_contents($this->testsWorkingDir . '/vendor-prefixed/aws/aws-sdk-php/src/S3/S3Client.php'); | ||
|
||
self::assertStringNotContainsString('return (string) \Aws\serialize($command)->getUri();', $php_string); | ||
self::assertStringContainsString('return (string) \Company\Project\Aws\serialize($command)->getUri();', $php_string); | ||
} | ||
} |