Passed
Push — main ( 801b6a...3683b4 )
by Sammy
01:38
created
tests/FileSystemTest.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
     protected function setUp(): void
14 14
     {
15
-        $this->testRootPath = sys_get_temp_dir() . '/hexmakina_localfs_test';
15
+        $this->testRootPath = sys_get_temp_dir().'/hexmakina_localfs_test';
16 16
         if (!file_exists($this->testRootPath)) {
17 17
             mkdir($this->testRootPath);
18 18
         }
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
             $objects = scandir($dir);
31 31
             foreach ($objects as $object) {
32 32
                 if ($object != "." && $object != "..") {
33
-                    if (is_dir($dir . "/" . $object)) {
34
-                        $this->removeDirectory($dir . "/" . $object);
33
+                    if (is_dir($dir."/".$object)) {
34
+                        $this->removeDirectory($dir."/".$object);
35 35
                     } else {
36
-                        unlink($dir . "/" . $object);
36
+                        unlink($dir."/".$object);
37 37
                     }
38 38
                 }
39 39
             }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     $fileSystem = new FileSystem($testRootPath);
57 57
 
58 58
     $relativePath = 'subdir/file.txt';
59
-    $expectedPath = $testRootPath . '/' . $relativePath;
59
+    $expectedPath = $testRootPath.'/'.$relativePath;
60 60
 
61 61
     $result = $fileSystem->absolutePathFor($relativePath);
62 62
 
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
 
78 78
 public function testCopyNonExistentSourceFile()
79 79
 {
80
-    $nonExistentSourcePath = $this->testRootPath . '/non_existent_file.txt';
81
-    $destinationPath = $this->testRootPath . '/destination.txt';
80
+    $nonExistentSourcePath = $this->testRootPath.'/non_existent_file.txt';
81
+    $destinationPath = $this->testRootPath.'/destination.txt';
82 82
 
83 83
     $result = FileSystem::copy($nonExistentSourcePath, $destinationPath);
84 84
 
@@ -88,10 +88,10 @@  discard block
 block discarded – undo
88 88
 
89 89
 public function testResolveSymlink()
90 90
 {
91
-    $tempDir = sys_get_temp_dir() . '/symlink_test';
91
+    $tempDir = sys_get_temp_dir().'/symlink_test';
92 92
     mkdir($tempDir);
93
-    $targetFile = $tempDir . '/target.txt';
94
-    $symlinkFile = $tempDir . '/symlink.txt';
93
+    $targetFile = $tempDir.'/target.txt';
94
+    $symlinkFile = $tempDir.'/symlink.txt';
95 95
 
96 96
     file_put_contents($targetFile, 'Test content');
97 97
     symlink($targetFile, $symlinkFile);
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 
108 108
 public function testEnsureWritablePathCreatesDirectories()
109 109
 {
110
-    $nonExistentPath = $this->testRootPath . '/new/nested/directory';
110
+    $nonExistentPath = $this->testRootPath.'/new/nested/directory';
111 111
     $this->assertFalse(is_dir($nonExistentPath));
112 112
 
113 113
     $result = $this->fileSystem->ensureWritablePath($nonExistentPath);
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
 
130 130
 public function testDirectoriesListsOnlyDirectories()
131 131
 {
132
-    $testDir = $this->testRootPath . '/test_directories';
132
+    $testDir = $this->testRootPath.'/test_directories';
133 133
     mkdir($testDir);
134
-    mkdir($testDir . '/dir1');
135
-    mkdir($testDir . '/dir2');
136
-    touch($testDir . '/file1.txt');
137
-    touch($testDir . '/file2.txt');
134
+    mkdir($testDir.'/dir1');
135
+    mkdir($testDir.'/dir2');
136
+    touch($testDir.'/file1.txt');
137
+    touch($testDir.'/file2.txt');
138 138
 
139 139
     $result = $this->fileSystem->directories('test_directories');
140 140
 
@@ -147,13 +147,13 @@  discard block
 block discarded – undo
147 147
 
148 148
 public function testFilesListsOnlyFilesInSpecifiedDirectory()
149 149
 {
150
-    $testDir = $this->testRootPath . '/test_files';
150
+    $testDir = $this->testRootPath.'/test_files';
151 151
     mkdir($testDir);
152 152
     
153 153
     // Create test files and directories
154
-    touch($testDir . '/file1.txt');
155
-    touch($testDir . '/file2.txt');
156
-    mkdir($testDir . '/subdir');
154
+    touch($testDir.'/file1.txt');
155
+    touch($testDir.'/file2.txt');
156
+    mkdir($testDir.'/subdir');
157 157
     
158 158
     $fileSystem = new FileSystem($this->testRootPath);
159 159
     $files = $fileSystem->files('test_files');
@@ -164,9 +164,9 @@  discard block
 block discarded – undo
164 164
     $this->assertNotContains('subdir', $files);
165 165
     
166 166
     // Clean up
167
-    unlink($testDir . '/file1.txt');
168
-    unlink($testDir . '/file2.txt');
169
-    rmdir($testDir . '/subdir');
167
+    unlink($testDir.'/file1.txt');
168
+    unlink($testDir.'/file2.txt');
169
+    rmdir($testDir.'/subdir');
170 170
     rmdir($testDir);
171 171
 }
172 172
 }
Please login to merge, or discard this patch.