20
20
use Symfony \Component \Console \Output \BufferedOutput ;
21
21
use Symfony \Component \Process \Process ;
22
22
23
+ use function dirname ;
24
+
23
25
#[CoversClass(UnixBuild::class)]
24
26
final class UnixBuildTest extends TestCase
25
27
{
@@ -44,6 +46,7 @@ public function testUnixBuildCanBuildExtension(): void
44
46
[ConfigureOption::fromComposerJsonDefinition (['name ' => 'enable-pie_test_ext ' ])],
45
47
true ,
46
48
true ,
49
+ null ,
47
50
),
48
51
self ::TEST_EXTENSION_PATH ,
49
52
);
@@ -96,6 +99,7 @@ public function testUnixBuildWillThrowExceptionWhenExpectedBinaryNameMismatches(
96
99
[ConfigureOption::fromComposerJsonDefinition (['name ' => 'enable-pie_test_ext ' ])],
97
100
true ,
98
101
true ,
102
+ null ,
99
103
),
100
104
self ::TEST_EXTENSION_PATH ,
101
105
);
@@ -116,4 +120,57 @@ public function testUnixBuildWillThrowExceptionWhenExpectedBinaryNameMismatches(
116
120
(new Process (['phpize ' , '--clean ' ], $ downloadedPackage ->extractedSourcePath ))->mustRun ();
117
121
}
118
122
}
123
+
124
+ public function testUnixBuildCanBuildExtensionWithBuildPath (): void
125
+ {
126
+ if (Platform::isWindows ()) {
127
+ self ::markTestSkipped ('Unix build test cannot be run on Windows ' );
128
+ }
129
+
130
+ $ output = new BufferedOutput ();
131
+
132
+ $ downloadedPackage = DownloadedPackage::fromPackageAndExtractedPath (
133
+ new Package (
134
+ $ this ->createMock (CompletePackage::class),
135
+ ExtensionType::PhpModule,
136
+ ExtensionName::normaliseFromString ('pie_test_ext ' ),
137
+ 'pie_test_ext ' ,
138
+ '0.1.0 ' ,
139
+ null ,
140
+ [ConfigureOption::fromComposerJsonDefinition (['name ' => 'enable-pie_test_ext ' ])],
141
+ true ,
142
+ true ,
143
+ 'pie_test_ext ' ,
144
+ ),
145
+ dirname (self ::TEST_EXTENSION_PATH ),
146
+ );
147
+
148
+ $ unixBuilder = new UnixBuild ();
149
+ $ builtBinary = $ unixBuilder ->__invoke (
150
+ $ downloadedPackage ,
151
+ TargetPlatform::fromPhpBinaryPath (PhpBinaryPath::fromCurrentProcess (), null ),
152
+ ['--enable-pie_test_ext ' ],
153
+ $ output ,
154
+ null ,
155
+ );
156
+
157
+ self ::assertNotEmpty ($ builtBinary );
158
+
159
+ $ outputString = $ output ->fetch ();
160
+
161
+ self ::assertStringContainsString ('phpize complete. ' , $ outputString );
162
+ self ::assertStringContainsString ('Configure complete with options: --enable-pie_test_ext ' , $ outputString );
163
+ self ::assertStringContainsString ('Build complete: ' , $ outputString );
164
+ self ::assertStringContainsString ('pie_test_ext.so ' , $ outputString );
165
+
166
+ self ::assertSame (
167
+ 0 ,
168
+ (new Process (['make ' , 'test ' ], $ downloadedPackage ->extractedSourcePath ))
169
+ ->mustRun ()
170
+ ->getExitCode (),
171
+ );
172
+
173
+ (new Process (['make ' , 'clean ' ], $ downloadedPackage ->extractedSourcePath ))->mustRun ();
174
+ (new Process (['phpize ' , '--clean ' ], $ downloadedPackage ->extractedSourcePath ))->mustRun ();
175
+ }
119
176
}
0 commit comments