@@ -28,7 +28,7 @@ class WriteTest extends \PHPUnit_Framework_TestCase
28
28
*/
29
29
public function testInstance ()
30
30
{
31
- $ dir = $ this ->getDirectoryInstance ('newDir1 ' , 0770 );
31
+ $ dir = $ this ->getDirectoryInstance ('newDir1 ' , 0777 );
32
32
$ this ->assertTrue ($ dir instanceof ReadInterface);
33
33
$ this ->assertTrue ($ dir instanceof WriteInterface);
34
34
}
@@ -56,10 +56,10 @@ public function testCreate($basePath, $permissions, $path)
56
56
public function createProvider ()
57
57
{
58
58
return [
59
- ['newDir1 ' , 0770 , "newDir1 " ],
60
- ['newDir1 ' , 0770 , "root_dir1/subdir1/subdir2 " ],
61
- ['newDir2 ' , 0750 , "root_dir2/subdir " ],
62
- ['newDir1 ' , 0770 , ". " ]
59
+ ['newDir1 ' , 0777 , "newDir1 " ],
60
+ ['newDir1 ' , 0777 , "root_dir1/subdir1/subdir2 " ],
61
+ ['newDir2 ' , 0777 , "root_dir2/subdir " ],
62
+ ['newDir1 ' , 0777 , ". " ]
63
63
];
64
64
}
65
65
@@ -71,7 +71,7 @@ public function createProvider()
71
71
*/
72
72
public function testDelete ($ path )
73
73
{
74
- $ directory = $ this ->getDirectoryInstance ('newDir ' , 0770 );
74
+ $ directory = $ this ->getDirectoryInstance ('newDir ' , 0777 );
75
75
$ directory ->create ($ path );
76
76
$ this ->assertTrue ($ directory ->isExist ($ path ));
77
77
$ directory ->delete ($ path );
@@ -116,7 +116,7 @@ public function testRename($basePath, $permissions, $name, $newName)
116
116
*/
117
117
public function renameProvider ()
118
118
{
119
- return [['newDir1 ' , 0770 , 'first_name.txt ' , 'second_name.txt ' ]];
119
+ return [['newDir1 ' , 0777 , 'first_name.txt ' , 'second_name.txt ' ]];
120
120
}
121
121
122
122
/**
@@ -150,7 +150,7 @@ public function testRenameTargetDir($firstDir, $secondDir, $permission, $name, $
150
150
*/
151
151
public function renameTargetDirProvider ()
152
152
{
153
- return [['dir1 ' , 'dir2 ' , 0770 , 'first_name.txt ' , 'second_name.txt ' ]];
153
+ return [['dir1 ' , 'dir2 ' , 0777 , 'first_name.txt ' , 'second_name.txt ' ]];
154
154
}
155
155
156
156
/**
@@ -180,8 +180,8 @@ public function testCopy($basePath, $permissions, $name, $newName)
180
180
public function copyProvider ()
181
181
{
182
182
return [
183
- ['newDir1 ' , 0770 , 'first_name.txt ' , 'second_name.txt ' ],
184
- ['newDir1 ' , 0770 , 'subdir/first_name.txt ' , 'subdir/second_name.txt ' ]
183
+ ['newDir1 ' , 0777 , 'first_name.txt ' , 'second_name.txt ' ],
184
+ ['newDir1 ' , 0777 , 'subdir/first_name.txt ' , 'subdir/second_name.txt ' ]
185
185
];
186
186
}
187
187
@@ -216,8 +216,8 @@ public function testCopyTargetDir($firstDir, $secondDir, $permission, $name, $ne
216
216
public function copyTargetDirProvider ()
217
217
{
218
218
return [
219
- ['dir1 ' , 'dir2 ' , 0770 , 'first_name.txt ' , 'second_name.txt ' ],
220
- ['dir1 ' , 'dir2 ' , 0770 , 'subdir/first_name.txt ' , 'subdir/second_name.txt ' ]
219
+ ['dir1 ' , 'dir2 ' , 0777 , 'first_name.txt ' , 'second_name.txt ' ],
220
+ ['dir1 ' , 'dir2 ' , 0777 , 'subdir/first_name.txt ' , 'subdir/second_name.txt ' ]
221
221
];
222
222
}
223
223
@@ -226,9 +226,9 @@ public function copyTargetDirProvider()
226
226
*/
227
227
public function testChangePermissions ()
228
228
{
229
- $ directory = $ this ->getDirectoryInstance ('newDir1 ' , 0770 );
229
+ $ directory = $ this ->getDirectoryInstance ('newDir1 ' , 0777 );
230
230
$ directory ->create ('test_directory ' );
231
- $ this ->assertTrue ($ directory ->changePermissions ('test_directory ' , 0640 ));
231
+ $ this ->assertTrue ($ directory ->changePermissions ('test_directory ' , 0644 ));
232
232
}
233
233
234
234
/**
@@ -241,7 +241,7 @@ public function testChangePermissionsRecursively()
241
241
$ directory ->create ('test_directory/subdirectory ' );
242
242
$ directory ->writeFile ('test_directory/subdirectory/test_file.txt ' , 'Test Content ' );
243
243
244
- $ this ->assertTrue ($ directory ->changePermissionsRecursively ('test_directory ' , 0750 , 0640 ));
244
+ $ this ->assertTrue ($ directory ->changePermissionsRecursively ('test_directory ' , 0777 , 0644 ));
245
245
}
246
246
247
247
/**
@@ -269,8 +269,8 @@ public function testTouch($basePath, $permissions, $path, $time)
269
269
public function touchProvider ()
270
270
{
271
271
return [
272
- ['test_directory ' , 0770 , 'touch_file.txt ' , time () - 3600 ],
273
- ['test_directory ' , 0770 , 'subdirectory/touch_file.txt ' , time () - 3600 ]
272
+ ['test_directory ' , 0777 , 'touch_file.txt ' , time () - 3600 ],
273
+ ['test_directory ' , 0777 , 'subdirectory/touch_file.txt ' , time () - 3600 ]
274
274
];
275
275
}
276
276
@@ -279,7 +279,7 @@ public function touchProvider()
279
279
*/
280
280
public function testIsWritable ()
281
281
{
282
- $ directory = $ this ->getDirectoryInstance ('newDir1 ' , 0770 );
282
+ $ directory = $ this ->getDirectoryInstance ('newDir1 ' , 0777 );
283
283
$ directory ->create ('bar ' );
284
284
$ this ->assertFalse ($ directory ->isWritable ('not_existing_dir ' ));
285
285
$ this ->assertTrue ($ directory ->isWritable ('bar ' ));
@@ -310,8 +310,8 @@ public function testOpenFile($basePath, $permissions, $path, $mode)
310
310
public function openFileProvider ()
311
311
{
312
312
return [
313
- ['newDir1 ' , 0770 , 'newFile.txt ' , 'w+ ' ],
314
- ['newDir1 ' , 0770 , 'subdirectory/newFile.txt ' , 'w+ ' ]
313
+ ['newDir1 ' , 0777 , 'newFile.txt ' , 'w+ ' ],
314
+ ['newDir1 ' , 0777 , 'subdirectory/newFile.txt ' , 'w+ ' ]
315
315
];
316
316
}
317
317
@@ -325,7 +325,7 @@ public function openFileProvider()
325
325
*/
326
326
public function testWriteFile ($ path , $ content , $ extraContent )
327
327
{
328
- $ directory = $ this ->getDirectoryInstance ('writeFileDir ' , 0770 );
328
+ $ directory = $ this ->getDirectoryInstance ('writeFileDir ' , 0777 );
329
329
$ directory ->writeFile ($ path , $ content );
330
330
$ this ->assertEquals ($ content , $ directory ->readFile ($ path ));
331
331
$ directory ->writeFile ($ path , $ extraContent );
@@ -342,7 +342,7 @@ public function testWriteFile($path, $content, $extraContent)
342
342
*/
343
343
public function testWriteFileAppend ($ path , $ content , $ extraContent )
344
344
{
345
- $ directory = $ this ->getDirectoryInstance ('writeFileDir ' , 0770 );
345
+ $ directory = $ this ->getDirectoryInstance ('writeFileDir ' , 0777 );
346
346
$ directory ->writeFile ($ path , $ content , 'a+ ' );
347
347
$ this ->assertEquals ($ content , $ directory ->readFile ($ path ));
348
348
$ directory ->writeFile ($ path , $ extraContent , 'a+ ' );
0 commit comments