| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862 |
- <?php
- namespace Path\Tests\unit;
- use http\Params;
- use Path\BuiltinProxy;
- use Path\Exception\FileExistsException;
- use Path\Exception\FileNotFoundException;
- use Path\Exception\IOException;
- use Path\Path;
- use PHPUnit\Framework\MockObject\MockObject;
- use PHPUnit\Framework\TestCase;
- class TestablePath extends Path {
- public function setBuiltin(BuiltinProxy $builtinProxy): void
- {
- $this->builtin = $builtinProxy;
- }
- public function cast(string|Path $path): Path
- {
- return parent::cast($path);
- }
- public function rrmdir(): bool {
- return $this->rrmdir();
- }
- public function getDirectoryIterator(): \DirectoryIterator
- {
- return parent::getDirectoryIterator();
- }
- }
- class PathTest extends TestCase
- {
- private BuiltinProxy | MockObject $builtin;
- public function setUp(): void
- {
- $this->builtin = $this->getMockBuilder(BuiltinProxy::class)->getMock();
- }
- public function getMock(string $path, string $methodName): TestablePath | MockObject
- {
- $mock = $this
- ->getMockBuilder(TestablePath::class)
- ->setConstructorArgs([$path])
- ->setMethodsExcept(['__toString', 'setBuiltin', $methodName])
- ->getMock();
- $mock->setBuiltin($this->builtin);
- return $mock;
- }
- /**
- * Test 'join' method.
- */
- public function testJoin(): void
- {
- // One part
- $this->assertEquals(
- '/home/user',
- Path::join('/home', 'user')
- );
- // Multiple parts
- $this->assertEquals(
- '/home/user/documents',
- Path::join('/home', 'user', 'documents')
- );
- // Absolute path passed in $parts
- $this->assertEquals(
- '/user/documents',
- Path::join('home', '/user', 'documents')
- );
- }
- public function testToString(): void
- {
- $path = new Path('/foo/bar');
- $this->assertEquals(
- '/foo/bar',
- $path->__toString()
- );
- }
- public function testPath()
- {
- $path = $this->getMock('bar', 'path');
- $this->assertEquals(
- 'bar',
- $path->path()
- );
- }
- public function testEq(): void
- {
- $path = $this->getMock('bar', 'eq');
- $path
- ->method('path')
- ->willReturn('bar');
- $path2 = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $path2
- ->method('path')
- ->willReturn('bar');
- $path3 = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $path3
- ->method('path')
- ->willReturn('/foo/bar');
- $path->method('cast')->willReturnMap(
- [
- [$path2, $path2],
- [$path3, $path3],
- ['bar', $path2],
- ['/foo/bar', $path3],
- ]
- );
- $this->assertTrue($path->eq($path2));
- $this->assertFalse($path->eq($path3));
- $this->assertTrue($path->eq('bar'));
- $this->assertFalse($path->eq('/foo/bar'));
- }
- /**
- * @throws IOException
- */
- public function testAbsPath(): void {
- $path = $this->getMock('./file.ext', 'absPath');
- $path->method('path')->willReturn('./file.ext');
- $this->builtin
- ->expects(self::once())
- ->method('realpath')
- ->with('./file.ext')
- ->willReturn('/foo/file.ext');
- $newPath = $this->getMockBuilder(TestablePath::class)
- ->disableOriginalConstructor()
- ->getMock();
- $newPath->method('path')->willReturn('/foo/file.ext');
- $path->method('cast')->with('/foo/file.ext')->willReturn($newPath);
- $this->assertEquals(
- '/foo/file.ext',
- $path->absPath()->path()
- );
- }
- /**
- * @throws IOException
- */
- public function testRealPath()
- {
- $path = $this->getMock('bar', 'realpath');
- $newPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $newPath
- ->method('eq')
- ->with('/foo/bar')
- ->willReturn(True);
- $path
- ->expects(self::once())
- ->method('absPath')
- ->willReturn($newPath);
- $this->assertTrue(
- $path->realpath()->eq('/foo/bar')
- );
- }
- public function testAccessFileExist(): void
- {
- $path = $this->getMock('bar', 'access');
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_readable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_writable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_executable')
- ->with('bar')
- ->willReturn(true);
- $this->assertTrue(
- $path->access(Path::F_OK)
- );
- }
- public function testAccessIsReadable(): void
- {
- $path = $this->getMock('bar', 'access');
- $this->builtin
- ->expects(self::never())
- ->method('file_exists')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::once())
- ->method('is_readable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_writable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_executable')
- ->with('bar')
- ->willReturn(true);
- $this->assertTrue(
- $path->access(Path::R_OK)
- );
- }
- public function testAccessIsWritable(): void
- {
- $path = $this->getMock('bar', 'access');
- $this->builtin
- ->expects(self::never())
- ->method('file_exists')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_readable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::once())
- ->method('is_writable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_executable')
- ->with('bar')
- ->willReturn(true);
- $this->assertTrue(
- $path->access(Path::W_OK)
- );
- }
- public function testAccessIsExecutable(): void
- {
- $path = $this->getMock('bar', 'access');
- $this->builtin
- ->expects(self::never())
- ->method('file_exists')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_readable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_writable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::once())
- ->method('is_executable')
- ->with('bar')
- ->willReturn(true);
- $this->assertTrue(
- $path->access(Path::X_OK)
- );
- }
- public function testAccessInvalidMode(): void
- {
- $path = $this->getMock('bar', 'access');
- $this->builtin
- ->expects(self::never())
- ->method('file_exists')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_readable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_writable')
- ->with('bar')
- ->willReturn(true);
- $this->builtin
- ->expects(self::never())
- ->method('is_executable')
- ->with('bar')
- ->willReturn(true);
- $this->expectException(\RuntimeException::class);
- $path->access(-1);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testATime(): void
- {
- $path = $this->getMock('bar', 'atime');
- $path->method('exists')->willReturn(True);
- $ts = 1000;
- $this->builtin
- ->expects(self::once())
- ->method('fileatime')
- ->with('bar')
- ->willReturn($ts);
- $this->assertEquals(
- $ts,
- $path->atime()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testATimeFileDoesNotExist(): void
- {
- $path = $this->getMock('bar', 'atime');
- $path->method('exists')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('fileatime');
- $this->expectException(FileNotFoundException::class);
- $path->atime();
- }
- /**
- * @throws FileNotFoundException
- */
- public function testATimeError(): void
- {
- $path = $this->getMock('bar', 'atime');
- $path->method('exists')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('fileatime')
- ->with('bar')
- ->willReturn(false);
- $this->expectException(IOException::class);
- $path->atime();
- }
- public function testCTime(): void
- {
- $path = $this->getMock('bar', 'ctime');
- $this->builtin
- ->expects(self::once())
- ->method('filectime')
- ->with('bar')
- ->willReturn(1000);
- $date = '2000-01-01';
- $this->builtin
- ->expects(self::once())
- ->method('date')
- ->with('Y-m-d H:i:s', 1000)
- ->willReturn($date);
- $this->assertEquals(
- $date,
- $path->ctime()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testCTimeFileDoesNotExist(): void
- {
- $path = $this->getMock('bar', 'ctime');
- $path->method('exists')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('filectime');
- $this->expectException(FileNotFoundException::class);
- $path->ctime();
- }
- /**
- * @throws FileNotFoundException
- */
- public function testCTimeError(): void
- {
- $path = $this->getMock('bar', 'ctime');
- $path->method('exists')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('filectime')
- ->with('bar')
- ->willReturn(false);
- $this->expectException(IOException::class);
- $path->ctime();
- }
- public function testMTime(): void
- {
- $path = $this->getMock('bar', 'mtime');
- $this->builtin
- ->expects(self::once())
- ->method('filemtime')
- ->with('bar')
- ->willReturn(1000);
- $date = '2000-01-01';
- $this->builtin
- ->expects(self::once())
- ->method('date')
- ->with('Y-m-d H:i:s', 1000)
- ->willReturn($date);
- $this->assertEquals(
- $date,
- $path->mtime()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testMTimeFileDoesNotExist(): void
- {
- $path = $this->getMock('bar', 'mtime');
- $path->method('exists')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('filemtime');
- $this->expectException(FileNotFoundException::class);
- $path->mtime();
- }
- /**
- * @throws FileNotFoundException
- */
- public function testMTimeError(): void
- {
- $path = $this->getMock('bar', 'mtime');
- $path->method('exists')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('filemtime')
- ->with('bar')
- ->willReturn(false);
- $this->expectException(IOException::class);
- $path->mtime();
- }
- public function testIsFile(): void
- {
- $path = $this->getMock('bar', 'isFile');
- $this->builtin
- ->expects(self::once())
- ->method('is_file')
- ->with('bar')
- ->willReturn(true);
- $this->assertTrue(
- $path->isFile()
- );
- }
- public function testIsDir(): void
- {
- $path = $this->getMock('bar', 'isDir');
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with('bar')
- ->willReturn(true);
- $this->assertTrue(
- $path->isDir()
- );
- }
- public function testExt(): void
- {
- $path = $this->getMock('bar.ext', 'ext');
- $this->builtin
- ->expects(self::once())
- ->method('pathinfo')
- ->with('bar.ext', PATHINFO_EXTENSION)
- ->willReturn('ext');
- $this->assertEquals(
- 'ext',
- $path->ext()
- );
- }
- public function testExtNoExt(): void
- {
- $path = $this->getMock('bar', 'ext');
- $this->builtin
- ->expects(self::once())
- ->method('pathinfo')
- ->with('bar', PATHINFO_EXTENSION)
- ->willReturn('');
- $this->assertEquals(
- '',
- $path->ext()
- );
- }
- public function testBaseName(): void
- {
- $path = $this->getMock('bar.ext', 'basename');
- $this->builtin
- ->expects(self::once())
- ->method('pathinfo')
- ->with('bar.ext', PATHINFO_BASENAME)
- ->willReturn('bar.ext');
- $this->assertEquals(
- 'bar.ext',
- $path->basename()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testCD(): void
- {
- $path = $this->getMock('bar', 'cd');
- $path->method('exists')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('chdir')
- ->with('bar')
- ->willReturn(True);
- $path->cd();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testCDDirDoesNotExist(): void
- {
- $path = $this->getMock('bar', 'cd');
- $path->method('exists')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('chdir');
- $this->expectException(FileNotFoundException::class);
- $path->cd();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testCDWithError(): void
- {
- $path = $this->getMock('bar', 'cd');
- $path->method('exists')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('chdir')
- ->with('bar')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->cd();
- }
- public function testChDir(): void
- {
- $path = $this->getMock('bar', 'chdir');
- $path
- ->expects(self::once())
- ->method('cd')
- ->with('foo')
- ->willReturn(true);
- $this->assertTrue(
- $path->cd('foo')
- );
- }
- public function testName(): void
- {
- $path = $this->getMock('bar.ext', 'name');
- $this->builtin
- ->expects(self::once())
- ->method('pathinfo')
- ->with('bar.ext', PATHINFO_FILENAME)
- ->willReturn('bar');
- $this->assertEquals(
- 'bar',
- $path->name()
- );
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMkDir(): void
- {
- $path = $this->getMock('foo', 'mkdir');
- $path->method('isDir')->willReturn(False);
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('mkdir')
- ->with('foo', 0777, false)
- ->willReturn(true);
- $path->mkdir();
- }
- /**
- * @throws IOException
- */
- public function testMkDirAlreadyExist(): void
- {
- $path = $this->getMock('foo', 'mkdir');
- $path->method('isDir')->willReturn(True);
- $this->expectException(FileExistsException::class);
- $path->mkdir();
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMkDirAlreadyExistButRecursive(): void
- {
- $path = $this->getMock('foo', 'mkdir');
- $path->method('isDir')->willReturn(True);
- $this->builtin
- ->expects(self::never())
- ->method('mkdir');
- $path->mkdir(0777, true);
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMkDirFileExists(): void
- {
- $path = $this->getMock('foo', 'mkdir');
- $path->method('isDir')->willReturn(False);
- $path->method('isFile')->willReturn(True);
- $this->expectException(FileExistsException::class);
- $path->mkdir();
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMkDirFileExistsButRecursive(): void
- {
- $path = $this->getMock('foo', 'mkdir');
- $path->method('isDir')->willReturn(False);
- $path->method('isFile')->willReturn(True);
- $this->expectException(FileExistsException::class);
- $path->mkdir(0777, true);
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMkDirIoError(): void
- {
- $path = $this->getMock('foo', 'mkdir');
- $path->method('isDir')->willReturn(False);
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('mkdir')
- ->with('foo', 0777, false)
- ->willReturn(false);
- $this->expectException(IOException::class);
- $path->mkdir();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testDeleteIsFile(): void
- {
- $path = $this->getMock('foo', 'delete');
- $path->method('isFile')->willReturn(True);
- $path->method('isDir')->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('unlink')
- ->with('foo')
- ->willReturn(true);
- $path->delete();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testDeleteIsFileWithError(): void
- {
- $path = $this->getMock('foo', 'delete');
- $path->method('isFile')->willReturn(True);
- $path->method('isDir')->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('unlink')
- ->with('foo')
- ->willReturn(false);
- $this->expectException(IOException::class);
- $path->delete();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testDeleteIsDir(): void
- {
- $path = $this->getMock('foo', 'delete');
- $path->method('isFile')->willReturn(False);
- $path->method('isDir')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('rmdir')
- ->with('foo')
- ->willReturn(true);
- $path->delete();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testDeleteIsDirWithError(): void
- {
- $path = $this->getMock('foo', 'delete');
- $path->method('isFile')->willReturn(False);
- $path->method('isDir')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('rmdir')
- ->with('foo')
- ->willReturn(false);
- $this->expectException(IOException::class);
- $path->delete();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testDeleteNonExistentFile(): void
- {
- $path = $this->getMock('foo', 'delete');
- $path->method('isFile')->willReturn(False);
- $path->method('isDir')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('unlink');
- $this->builtin
- ->expects(self::never())
- ->method('rmdir');
- $this->expectException(FileNotFoundException::class);
- $path->delete();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testCopy()
- {
- $path = $this->getMock('foo.ext', 'copy');
- $path->method('isFile')->willReturn(True);
- $destination = "/bar/foo2.ext";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('copy')
- ->with('foo.ext', $destination)
- ->willReturn(True);
- $newPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $newPath->method('eq')->with($destination)->willReturn(True);
- $path->method('cast')->with($destination)->willReturn($newPath);
- $result = $path->copy($destination);
- $this->assertTrue(
- $result->eq($destination)
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testCopyFileDoesNotExist()
- {
- $path = $this->getMock('foo.ext', 'copy');
- $path->method('isFile')->willReturn(False);
- $destination = "/bar/foo2.ext";
- $this->builtin
- ->expects(self::never())
- ->method('is_dir');
- $this->builtin
- ->expects(self::never())
- ->method('file_exists');
- $this->builtin
- ->expects(self::never())
- ->method('copy');
- $this->expectException(FileNotFoundException::class);
- $path->copy($destination);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testCopyDestIsDir()
- {
- $path = $this->getMock('foo.ext', 'copy');
- $path->method('isFile')->willReturn(True);
- $path->method('basename')->willReturn('foo.ext');
- $destination = "/bar";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(True);
- $newDest = $destination . "/foo.ext";
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($newDest)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('copy')
- ->with('foo.ext', $newDest)
- ->willReturn(True);
- $newPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $newPath->method('eq')->with($newDest)->willReturn(True);
- $path->method('cast')->with($newDest)->willReturn($newPath);
- $result = $path->copy($destination);
- $this->assertTrue(
- $result->eq($newDest)
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testCopyFileAlreadyExists()
- {
- $path = $this->getMock('foo.ext', 'copy');
- $path->method('isFile')->willReturn(True);
- $destination = "/bar/foo2.ext";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($destination)
- ->willReturn(True);
- $this->builtin
- ->expects(self::never())
- ->method('copy');
- $this->expectException(FileExistsException::class);
- $path->copy($destination);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testCopyFileDestIsDirButFileAlreadyExists()
- {
- $path = $this->getMock('foo.ext', 'copy');
- $path->method('isFile')->willReturn(True);
- $path->method('basename')->willReturn('foo.ext');
- $destination = "/bar";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(True);
- $newDest = $destination . "/foo.ext";
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($newDest)
- ->willReturn(True);
- $this->builtin
- ->expects(self::never())
- ->method('copy');
- $this->expectException(FileExistsException::class);
- $path->copy($destination);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testCopyFileWithError()
- {
- $path = $this->getMock('foo.ext', 'copy');
- $path->method('isFile')->willReturn(True);
- $destination = "/bar/foo2.ext";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('copy')
- ->with('foo.ext', $destination)
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->copy($destination);
- }
- // public function testCopyTree(): void {
- // TODO: implement
- // }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMove()
- {
- $path = $this->getMock('foo.ext', 'move');
- $destination = "/bar/foo2.ext";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('rename')
- ->with('foo.ext', $destination)
- ->willReturn(True);
- $destinationPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $destinationPath->method('eq')->with($destination)->willReturn(True);
- $path->method('cast')->with($destination)->willReturn($destinationPath);
- $result = $path->move($destination);
- $this->assertTrue(
- $result->eq($destination)
- );
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMoveWithPath()
- {
- $path = $this->getMock('foo.ext', 'move');
- $destination = new Path("/bar/foo2.ext");
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('rename')
- ->with('foo.ext', $destination)
- ->willReturn(True);
- $destinationPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $destinationPath->method('eq')->with($destination)->willReturn(True);
- $path->method('cast')->with($destination)->willReturn($destinationPath);
- $result = $path->move($destination);
- $this->assertTrue(
- $result->eq($destination)
- );
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMoveDestIsDir()
- {
- $path = $this->getMock('foo.ext', 'move');
- $path->method('basename')->willReturn('foo.ext');
- $destination = "/bar";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(True);
- $newDestination = $destination . "/foo.ext";
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($newDestination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('rename')
- ->with('foo.ext', $newDestination)
- ->willReturn(True);
- $destinationPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $destinationPath->method('eq')->with($newDestination)->willReturn(True);
- $path->method('cast')->with($newDestination)->willReturn($destinationPath);
- $result = $path->move($destination);
- $this->assertTrue(
- $result->eq($newDestination)
- );
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMoveFileExist()
- {
- $path = $this->getMock('foo.ext', 'move');
- $path->method('basename')->willReturn('foo.ext');
- $destination = "/bar/foo2.ext";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($destination)
- ->willReturn(True);
- $this->builtin
- ->expects(self::never())
- ->method('rename');
- $this->expectException(FileExistsException::class);
- $path->move($destination);
- }
- /**
- * @throws IOException
- * @throws FileExistsException
- */
- public function testMoveWithError()
- {
- $path = $this->getMock('foo.ext', 'move');
- $path->method('basename')->willReturn('foo.ext');
- $destination = "/bar/foo2.ext";
- $this->builtin
- ->expects(self::once())
- ->method('is_dir')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with($destination)
- ->willReturn(False);
- $this->builtin
- ->expects(self::once())
- ->method('rename')
- ->with('foo.ext', $destination)
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->move($destination);
- }
- /**
- * @throws IOException
- */
- public function testTouchWithNoTimestamps()
- {
- $path = $this->getMock('foo.ext', 'touch');
- $this->builtin
- ->expects(self::once())
- ->method('touch')
- ->with('foo.ext', null, null)
- ->willReturn(True);
- $path->touch();
- }
- /**
- * @throws IOException
- */
- public function testTouchWithTimestamps()
- {
- $path = $this->getMock('foo.ext', 'touch');
- $this->builtin
- ->expects(self::once())
- ->method('touch')
- ->with('foo.ext', 123, 456)
- ->willReturn(True);
- $path->touch(123, 456);
- }
- /**
- * @throws IOException
- */
- public function testTouchWithDatetimes()
- {
- $path = $this->getMock('foo.ext', 'touch');
- $datetime1 = $this->getMockBuilder(\DateTime::class)->getMock();
- $datetime1->method('getTimestamp')->willReturn(123);
- $datetime2 = $this->getMockBuilder(\DateTime::class)->getMock();
- $datetime2->method('getTimestamp')->willReturn(456);
- $this->builtin
- ->expects(self::once())
- ->method('touch')
- ->with('foo.ext', 123, 456)
- ->willReturn(True);
- $path->touch($datetime1, $datetime2);
- }
- /**
- * @throws IOException
- */
- public function testTouchWithError()
- {
- $path = $this->getMock('foo.ext', 'touch');
- $this->builtin
- ->expects(self::once())
- ->method('touch')
- ->with('foo.ext')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->touch();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testSize()
- {
- $path = $this->getMock('foo.ext', 'size');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('filesize')
- ->with('foo.ext')
- ->willReturn(123456);
- $this->assertEquals(
- 123456,
- $path->size()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testSizeFileNotExist()
- {
- $path = $this->getMock('foo.ext', 'size');
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('filesize');
- $this->expectException(FileNotFoundException::class);
- $path->size();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testSizeFileWithError()
- {
- $path = $this->getMock('foo.ext', 'size');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('filesize')
- ->with('foo.ext')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->size();
- }
- public function testParent(): void
- {
- $path = $this->getMock('/foo/foo.ext', 'parent');
- $this->builtin
- ->expects(self::once())
- ->method('dirname')
- ->with('/foo/foo.ext')
- ->willReturn('/foo');
- $newPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $path->method('cast')->with('/foo')->willReturn($newPath);
- $newPath->method('eq')->with('/foo')->willReturn(True);
- $this->assertTrue(
- $path->parent()->eq('/foo')
- );
- }
- public function testDirName(): void
- {
- $path = $this->getMock('/foo/foo.ext', 'dirname');
- $newPath = $this->getMockBuilder(TestablePath::class)->disableOriginalConstructor()->getMock();
- $newPath->method('eq')->with('/foo')->willReturn(True);
- $path
- ->expects(self::once())
- ->method('parent')
- ->willReturn($newPath);
- $this->assertTrue(
- $path->dirname()->eq('/foo')
- );
- }
- /**
- * @throws FileNotFoundException
- */
- public function testDirs()
- {
- $path = $this->getMock('/foo', 'dirs');
- $this->builtin
- ->method('is_dir')
- ->willReturnMap(
- [
- ['/foo', True],
- ['/foo/file.ext', False],
- ['/foo/dir1', True],
- ['/foo/dir2', True],
- ]
- );
- $results = [
- '..',
- '.',
- 'file.ext',
- 'dir1',
- 'dir2'
- ];
- $this->builtin
- ->expects(self::once())
- ->method('scandir')
- ->with('/foo')
- ->willReturn($results);
- $this->assertEquals(
- ['dir1', 'dir2'],
- $path->dirs()
- );
- }
- /**
- * @throws FileNotFoundException
- */
- public function testDirsIsNotDir()
- {
- $path = $this->getMock('/foo', 'dirs');
- $this->builtin
- ->method('is_dir')
- ->with('/foo')
- ->willReturn(False);
- $this->expectException(FileNotFoundException::class);
- $path->dirs();
- }
- /**
- * @throws FileNotFoundException
- */
- public function testFiles()
- {
- $path = $this->getMock('/foo', 'files');
- $this->builtin
- ->method('is_dir')
- ->with('/foo')
- ->willReturn(True);
- $this->builtin
- ->method('is_file')
- ->willReturnMap(
- [
- ['/foo/file1.ext', True],
- ['/foo/file2.ext', True],
- ['/foo/dir1', False],
- ]
- );
- $results = [
- '..',
- '.',
- 'file1.ext',
- 'file2.ext',
- 'dir1'
- ];
- $this->builtin
- ->expects(self::once())
- ->method('scandir')
- ->with('/foo')
- ->willReturn($results);
- $this->assertEquals(
- ['file1.ext', 'file2.ext'],
- $path->files()
- );
- }
- /**
- * @throws FileNotFoundException
- */
- public function testFilesIsNotDir()
- {
- $path = $this->getMock('/foo', 'files');
- $this->builtin
- ->method('is_dir')
- ->with('/foo')
- ->willReturn(False);
- $this->expectException(FileNotFoundException::class);
- $path->files();
- }
- // public function testFnMatch(): void
- // {
- // //TODO: implements
- // }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetContent(): void
- {
- $path = $this->getMock('/foo/file.ext', 'getContent');
- $this->builtin
- ->method('is_file')
- ->with('/foo/file.ext')
- ->willReturn(True);
- $this->builtin
- ->method('file_get_contents')
- ->with('/foo/file.ext')
- ->willReturn('azerty');
- $this->assertEquals(
- 'azerty',
- $path->getContent()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetContentFileDoesNotExist(): void
- {
- $path = $this->getMock('/foo/file.ext', 'getContent');
- $this->builtin
- ->method('is_file')
- ->with('/foo/file.ext')
- ->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('file_get_contents');
- $this->expectException(FileNotFoundException::class);
- $path->getContent();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetContentErrorWhileReading(): void
- {
- $path = $this->getMock('/foo/file.ext', 'getContent');
- $this->builtin
- ->method('is_file')
- ->with('/foo/file.ext')
- ->willReturn(True);
- $this->builtin
- ->method('file_get_contents')
- ->with('/foo/file.ext')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->getContent();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testPutContent(): void
- {
- $path = $this->getMock('/foo/file.ext', 'putContent');
- $this->builtin
- ->method('is_file')
- ->with('/foo/file.ext')
- ->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('file_put_contents')
- ->with('/foo/file.ext', 'azerty')
- ->willReturn(6);
- $this->assertEquals(
- 6,
- $path->putContent('azerty')
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testPutContentAndAppend(): void
- {
- $path = $this->getMock('/foo/file.ext', 'putContent');
- $this->builtin
- ->method('is_file')
- ->with('/foo/file.ext')
- ->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('file_put_contents')
- ->with('/foo/file.ext', 'azerty', FILE_APPEND)
- ->willReturn(6);
- $this->assertEquals(
- 6,
- $path->putContent('azerty', True)
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testPutContentFileDoesNotExist(): void
- {
- $path = $this->getMock('/foo/file.ext', 'putContent');
- $this->builtin
- ->method('is_file')
- ->with('/foo/file.ext')
- ->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('file_put_contents');
- $this->expectException(FileNotFoundException::class);
- $path->putContent('azerty');
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testPutContentErrorWhileWriting(): void
- {
- $path = $this->getMock('/foo/file.ext', 'putContent');
- $this->builtin
- ->method('is_file')
- ->with('/foo/file.ext')
- ->willReturn(True);
- $this->builtin
- ->method('file_put_contents')
- ->with('/foo/file.ext')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->putContent('azerty');
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testPutLines(): void
- {
- $path = $this->getMock('/foo/file.ext', 'putLines');
- $lines = [
- 'once upon a time',
- 'a man and a spoon',
- 'had a great time drinking coffee'
- ];
- $path
- ->expects(self::once())
- ->method('putContent')
- ->with(implode(PHP_EOL, $lines))
- ->willReturn(123);
- $this->assertEquals(
- 123,
- $path->putLines($lines)
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetPermissions(): void
- {
- $path = $this->getMock('/foo/file.ext', 'getPermissions');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->method('fileperms')
- ->with('/foo/file.ext')
- ->willReturn(16895);
- $this->assertEquals(
- 777,
- $path->getPermissions()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetPermissionsFileDoesNotExist(): void
- {
- $path = $this->getMock('/foo/file.ext', 'getPermissions');
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('fileperms');
- $this->expectException(FileNotFoundException::class);
- $path->getPermissions();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetPermissionsWithError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'getPermissions');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->method('fileperms')
- ->with('/foo/file.ext')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->getPermissions();
- }
- /**
- * @throws FileNotFoundException|IOException
- */
- public function testSetPermissions(): void
- {
- $path = $this->getMock('/foo/file.ext', 'setPermissions');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->method('chmod')
- ->with('/foo/file.ext', 0777)
- ->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('clearstatcache');
- $path->setPermissions(0777);
- }
- /**
- * @throws FileNotFoundException|IOException
- */
- public function testSetPermissionsFileDoesNotExist(): void
- {
- $path = $this->getMock('/foo/file.ext', 'setPermissions');
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('clearstatcache');
- $this->builtin
- ->expects(self::never())
- ->method('chmod');
- $this->expectException(FileNotFoundException::class);
- $path->setPermissions(0777);
- }
- /**
- * @throws FileNotFoundException
- */
- public function testSetPermissionsWithError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'setPermissions');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('clearstatcache');
- $this->builtin
- ->method('chmod')
- ->with('/foo/file.ext', 0777)
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->setPermissions(0777);
- }
- /**
- * @throws FileNotFoundException
- * @throws IOException
- */
- public function testSetOwner(): void
- {
- $path = $this->getMock('/foo/file.ext', 'setOwner');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('clearstatcache');
- $this->builtin
- ->method('chown')
- ->with('/foo/file.ext', 'user')
- ->willReturn(True);
- $this->builtin
- ->method('chgrp')
- ->with('/foo/file.ext', 'group')
- ->willReturn(True);
- $path->setOwner('user', 'group');
- }
- /**
- * @throws FileNotFoundException|IOException
- */
- public function testSetOwnerFileDoesNotExist(): void
- {
- $path = $this->getMock('/foo/file.ext', 'setOwner');
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('clearstatcache');
- $this->builtin
- ->expects(self::never())
- ->method('chown');
- $this->builtin
- ->expects(self::never())
- ->method('chgrp');
- $this->expectException(FileNotFoundException::class);
- $path->setOwner('user', 'group');
- }
- /**
- * @throws FileNotFoundException
- */
- public function testSetPermissionsWithChownError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'setOwner');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('clearstatcache');
- $this->builtin
- ->method('chown')
- ->with('/foo/file.ext', 'user')
- ->willReturn(False);
- $this->builtin
- ->method('chgrp')
- ->with('/foo/file.ext', 'group')
- ->willReturn(True);
- $this->expectException(IOException::class);
- $path->setOwner('user', 'group');
- }
- /**
- * @throws FileNotFoundException
- */
- public function testSetPermissionsWithChGroupError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'setOwner');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->method('chown')
- ->with('/foo/file.ext', 'user')
- ->willReturn(True);
- $this->builtin
- ->method('chgrp')
- ->with('/foo/file.ext', 'group')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->setOwner('user', 'group');
- }
- public function testExists(): void
- {
- $path = $this->getMock('/foo/file.ext', 'exists');
- $this->builtin
- ->expects(self::once())
- ->method('file_exists')
- ->with('/foo/file.ext')
- ->willReturn(True);
- $this->assertTrue(
- $path->exists()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGlob(): void {
- $path = $this->getMock('/foo', 'glob');
- $path->method('isDir')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('glob')
- ->with('/foo/*')
- ->willReturn(['a', 'b', 'c']);
- $this->assertEquals(
- ['a', 'b', 'c'],
- array_map(
- function (Path $p) { return (string)$p; },
- $path->glob('*')
- )
- );
- }
- /**
- * @throws IOException
- */
- public function testGlobDirDoesNotExist(): void {
- $path = $this->getMock('/foo', 'glob');
- $path->method('isDir')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('glob');
- $this->expectException(FileNotFoundException::class);
- $path->glob('*');
- }
- /**
- * @throws FileNotFoundException
- */
- public function testGlobWithError(): void {
- $path = $this->getMock('/foo', 'glob');
- $path->method('isDir')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('glob')
- ->with('/foo/*')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->glob('*');
- }
- /**
- * @throws FileNotFoundException
- * @throws IOException
- */
- public function testRmDirNonRecursive(): void
- {
- $path = $this->getMock('/foo', 'rmdir');
- $path->method('isDir')->willReturn(True);
- $this->builtin
- ->method('rmdir')
- ->with('/foo')
- ->willReturn(True);
- $path
- ->expects(self::never())
- ->method('rrmdir');
- $path->rmdir();
- }
- /**
- * @throws FileNotFoundException
- * @throws IOException
- */
- public function testRmDirRecursive(): void
- {
- $path = $this->getMock('/foo', 'rmdir');
- $path->method('isDir')->willReturn(True);
- $this->builtin
- ->expects(self::never())
- ->method('rmdir');
- $path
- ->method('rrmdir')
- ->willReturn(True);
- $path->rmdir(True);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testOpen(): void
- {
- $path = $this->getMock('/foo/file.ext', 'open');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('fopen')
- ->with('/foo/file.ext', 'r')
- ->willReturn('the_handle');
- $this->assertEquals(
- 'the_handle',
- $path->open()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testOpenWithMode(): void
- {
- $path = $this->getMock('/foo/file.ext', 'open');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('fopen')
- ->with('/foo/file.ext', 'w')
- ->willReturn('the_handle');
- $this->assertEquals(
- 'the_handle',
- $path->open('w')
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testOpenFileDoesNotExist(): void
- {
- $path = $this->getMock('/foo/file.ext', 'open');
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('fopen');
- $this->expectException(FileNotFoundException::class);
- $path->open();
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testOpenWithError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'open');
- $path->method('isFile')->willReturn(True);
- $this->builtin
- ->expects(self::once())
- ->method('fopen')
- ->with('/foo/file.ext', 'r')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->open();
- }
- /**
- * @throws \Throwable
- */
- public function testWith(): void
- {
- $path = $this->getMock('/foo/file.ext', 'with');
- $path->method('open')->with('r')->willReturn('the_handle');
- $callback = function ($handle) {
- $this->assertEquals('the_handle', $handle);
- return 'content';
- };
- $this->builtin
- ->expects(self::once())
- ->method('fclose')
- ->with('the_handle')
- ->willReturn(True);
- $this->assertEquals(
- 'content',
- $path->with($callback)
- );
- }
- /**
- * @throws \Throwable
- */
- public function testWithWithMode(): void
- {
- $path = $this->getMock('/foo/file.ext', 'with');
- $path->method('open')->with('w+')->willReturn('the_handle');
- $callback = function ($handle) {
- $this->assertEquals('the_handle', $handle);
- return 'content';
- };
- $this->builtin
- ->expects(self::once())
- ->method('fclose')
- ->with('the_handle')
- ->willReturn(True);
- $this->assertEquals(
- 'content',
- $path->with($callback, 'w+')
- );
- }
- /**
- * @throws \Throwable
- */
- public function testWithWithCallbackError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'with');
- $path->method('open')->with('w+')->willReturn('the_handle');
- $callback = function ($handle) {
- $this->assertEquals('the_handle', $handle);
- throw new \Exception('some_error');
- };
- $this->builtin
- ->expects(self::once())
- ->method('fclose')
- ->with('the_handle')
- ->willReturn(True);
- $this->expectException(\Exception::class);
- $path->with($callback, 'w+');
- }
- /**
- * @throws \Throwable
- */
- public function testWithWithCallbackErrorAndClosingError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'with');
- $path->method('open')->with('w+')->willReturn('the_handle');
- $callback = function ($handle) {
- $this->assertEquals('the_handle', $handle);
- throw new \Exception('some_error');
- };
- $this->builtin
- ->expects(self::once())
- ->method('fclose')
- ->with('the_handle')
- ->willReturn(False);
- $this->expectException(\Exception::class);
- $this->expectException(IOException::class);
- $path->with($callback, 'w+');
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws \Throwable
- */
- public function testChunks(): void
- {
- $path = $this->getMock('/foo/file.ext', 'chunks');
- $path->method('open')->with('rb')->willReturn('the_handle');
- $this->builtin
- ->method('feof')
- ->with('the_handle')
- ->willReturnOnConsecutiveCalls(
- False,
- False,
- False,
- True
- );
- $this->builtin
- ->method('fread')
- ->with('the_handle', 8192)
- ->willReturnOnConsecutiveCalls(
- 'abc',
- 'def',
- 'ghi'
- );
- $this->builtin
- ->expects(self::once())
- ->method('fclose')
- ->with('the_handle')
- ->willReturn(True);
- $this->assertEquals(
- ['abc', 'def', 'ghi'],
- iterator_to_array($path->chunks())
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws \Throwable
- */
- public function testChunksWithDifferentLength(): void
- {
- $path = $this->getMock('/foo/file.ext', 'chunks');
- $path->method('open')->with('rb')->willReturn('the_handle');
- $this->builtin
- ->method('feof')
- ->with('the_handle')
- ->willReturnOnConsecutiveCalls(
- False,
- False,
- False,
- True
- );
- $this->builtin
- ->method('fread')
- ->with('the_handle', 123)
- ->willReturnOnConsecutiveCalls(
- 'abc',
- 'def',
- 'ghi'
- );
- $this->builtin
- ->expects(self::once())
- ->method('fclose')
- ->with('the_handle')
- ->willReturn(True);
- $this->assertEquals(
- ['abc', 'def', 'ghi'],
- iterator_to_array($path->chunks(123))
- );
- }
- /**
- * @throws \Throwable
- */
- public function testChunksWithClosingError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'chunks');
- $path->method('open')->with('rb')->willReturn('the_handle');
- $this->builtin
- ->method('feof')
- ->with('the_handle')
- ->willReturnOnConsecutiveCalls(
- False,
- False,
- False,
- True
- );
- $this->builtin
- ->method('fread')
- ->with('the_handle', 8192)
- ->willReturnOnConsecutiveCalls(
- 'abc',
- 'def',
- 'ghi'
- );
- $this->builtin
- ->expects(self::once())
- ->method('fclose')
- ->with('the_handle')
- ->willReturn(False);
- $this->expectException(IOException::class);
- iterator_to_array($path->chunks());
- }
- public function testIsAbs(): void
- {
- $path = $this->getMock('/foo/file.ext', 'isAbs');
- $this->assertTrue(
- $path->isAbs()
- );
- }
- public function testIsAbsWithRelative(): void
- {
- $path = $this->getMock('foo/file.ext', 'isAbs');
- $this->assertFalse(
- $path->isAbs()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testChmod(): void
- {
- $path = $this->getMock('foo/file.ext', 'chmod');
- $path
- ->expects(self::once())
- ->method('setPermissions')
- ->with('777');
- $path->chmod(777);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testChown(): void
- {
- $path = $this->getMock('foo/file.ext', 'chown');
- $path
- ->expects(self::once())
- ->method('setOwner')
- ->with('user', 'group');
- $path->chown('user', 'group');
- }
- /**
- * @throws IOException
- */
- public function testChRoot(): void
- {
- $path = $this->getMock('/foo', 'chroot');
- $this->builtin
- ->expects(self::once())
- ->method('chroot')
- ->with('/foo')
- ->willReturn(True);
- $path->chroot();
- }
- /**
- * @throws IOException
- */
- public function testChRootWithError(): void
- {
- $path = $this->getMock('/foo', 'chroot');
- $this->builtin
- ->expects(self::once())
- ->method('chroot')
- ->with('/foo')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->chroot();
- }
- public function testIsLink(): void
- {
- $path = $this->getMock('/foo/file.ext', 'isLink');
- $this->builtin
- ->expects(self::once())
- ->method('is_link')
- ->with('/foo/file.ext')
- ->willReturn(True);
- $this->assertTrue(
- $path->isLink()
- );
- }
- public function testIsLinkIsNot(): void
- {
- $path = $this->getMock('/foo/file.ext', 'isLink');
- $this->builtin
- ->expects(self::once())
- ->method('is_link')
- ->with('/foo/file.ext')
- ->willReturn(False);
- $this->assertFalse(
- $path->isLink()
- );
- }
- /**
- * @throws FileNotFoundException
- */
- public function testIterDir(): void
- {
- $path = $this->getMock('/foo', 'iterDir');
- $path->method('isDir')->willReturn(True);
- $fileInfo1 = $this->getMockBuilder(\DirectoryIterator::class)->disableOriginalConstructor()->getMock();
- $fileInfo1->expects(self::once())->method('isDot')->willReturn(True);
- $fileInfo1->expects(self::never())->method('getFilename');
- $fileInfo2 = $this->getMockBuilder(\DirectoryIterator::class)->disableOriginalConstructor()->getMock();
- $fileInfo2->expects(self::once())->method('isDot')->willReturn(False);
- $fileInfo2->expects(self::once())->method('getFilename')->willReturn('file1.ext');
- $fileInfo3 = $this->getMockBuilder(\DirectoryIterator::class)->disableOriginalConstructor()->getMock();
- $fileInfo3->expects(self::once())->method('isDot')->willReturn(False);
- $fileInfo3->expects(self::once())->method('getFilename')->willReturn('file2.ext');
- $result = [$fileInfo1, $fileInfo2, $fileInfo3];
- $directoryIterator = $this->getMockBuilder(\DirectoryIterator::class)->disableOriginalConstructor()->getMock();
- $directoryIterator->method('current')->willReturnCallback(function () use (&$result) {
- return current($result);
- });
- $directoryIterator->method('key')->willReturnCallback(function () use (&$result) {
- return key($result);
- });
- $directoryIterator->method('next')->willReturnCallback(function () use (&$result) {
- return next($result);
- });
- $directoryIterator->method('valid')->willReturnCallback(function () use (&$result) {
- $key = key($result);
- return ($key !== NULL);
- });
- $path
- ->method('getDirectoryIterator')
- ->willReturn($directoryIterator);
- $this->assertEquals(
- ['file1.ext', 'file2.ext'],
- iterator_to_array($path->iterDir())
- );
- }
- /**
- * @throws FileNotFoundException
- */
- public function testIterDirDirDoesNotExist(): void
- {
- $path = $this->getMock('/foo', 'iterDir');
- $path->method('isDir')->willReturn(False);
- $this->expectException(FileNotFoundException::class);
- iterator_to_array($path->iterDir());
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testLink(): void
- {
- $path = $this->getMock('/foo/file.ext', 'link');
- $path->method('isFile')->willReturn(True);
- $target = $this
- ->getMockBuilder(TestablePath::class)
- ->disableOriginalConstructor()
- ->getMock();
- $target->method('isFile')->willReturn(False);
- $target->method('__toString')->willReturn('/bar/link.ext');
- $path->method('cast')->with($target)->willReturn($target);
- $this->builtin
- ->expects(self::once())
- ->method('link')
- ->with('/foo/file.ext', '/bar/link.ext')
- ->willReturn(True);
- $path->link($target);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testLinkWithStringTarget(): void
- {
- $path = $this->getMock('/foo/file.ext', 'link');
- $path->method('isFile')->willReturn(True);
- $target = $this
- ->getMockBuilder(TestablePath::class)
- ->disableOriginalConstructor()
- ->getMock();
- $target->method('isFile')->willReturn(False);
- $target->method('__toString')->willReturn('/bar/link.ext');
- $path->method('cast')->with('/bar/link.ext')->willReturn($target);
- $this->builtin
- ->expects(self::once())
- ->method('link')
- ->with('/foo/file.ext', '/bar/link.ext')
- ->willReturn(True);
- $path->link($target);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testLinkFileDoesNotExist(): void
- {
- $path = $this->getMock('/foo/file.ext', 'link');
- $path->method('isFile')->willReturn(False);
- $this->builtin
- ->expects(self::never())
- ->method('link');
- $this->expectException(FileNotFoundException::class);
- $path->link('/bar/link.ext');
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testLinkTargetExists(): void
- {
- $path = $this->getMock('/foo/file.ext', 'link');
- $path->method('isFile')->willReturn(True);
- $target = $this
- ->getMockBuilder(TestablePath::class)
- ->disableOriginalConstructor()
- ->getMock();
- $target->method('isFile')->willReturn(True);
- $path->method('cast')->with($target)->willReturn($target);
- $this->builtin
- ->expects(self::never())
- ->method('link');
- $this->expectException(FileExistsException::class);
- $path->link($target);
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- * @throws FileExistsException
- */
- public function testLinkWithError(): void
- {
- $path = $this->getMock('/foo/file.ext', 'link');
- $path->method('isFile')->willReturn(True);
- $target = $this
- ->getMockBuilder(TestablePath::class)
- ->disableOriginalConstructor()
- ->getMock();
- $target->method('isFile')->willReturn(False);
- $target->method('__toString')->willReturn('/bar/link.ext');
- $path->method('cast')->with($target)->willReturn($target);
- $this->builtin
- ->expects(self::once())
- ->method('link')
- ->with('/foo/file.ext', '/bar/link.ext')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->link($target);
- }
- /**
- * @throws IOException
- */
- public function testLStat(): void
- {
- $path = $this->getMock('foo/file.ext', 'lstat');
- $this->builtin
- ->expects(self::once())
- ->method('lstat')
- ->willReturn(['a', 'b', 'c']);
- $this->assertEquals(
- ['a', 'b', 'c'],
- $path->lstat()
- );
- }
- /**
- * @throws IOException
- */
- public function testLStatWithError(): void
- {
- $path = $this->getMock('foo/file.ext', 'lstat');
- $this->builtin
- ->expects(self::once())
- ->method('lstat')
- ->willReturn(False);
- $this->expectException(IOException::class);
- $path->lstat();
- }
- public function testParts(): void
- {
- $path = $this->getMock('foo/bar/file.ext', 'parts');
- $this->assertEquals(
- ['foo', 'bar', 'file.ext'],
- $path->parts()
- );
- }
- public function testPartsWithLeadingSlash(): void
- {
- $path = $this->getMock('/foo/bar/file.ext', 'parts');
- $this->assertEquals(
- ['/', 'foo', 'bar', 'file.ext'],
- $path->parts()
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetRelativePath(): void
- {
- $path = $this->getMock('./bar/file.ext', 'getRelativePath');
- $path->method('exists')->willReturn(True);
- $absPath = $this
- ->getMockBuilder(TestablePath::class)
- ->disableOriginalConstructor()
- ->getMock();
- $absPath->method('__toString')->willReturn('/foo/bar/file.ext');
- $path->method('absPath')->willReturn($absPath);
- $basePath = '/other/path';
- $this->builtin
- ->expects(self::once())
- ->method('realpath')
- ->with($basePath)
- ->willReturn('/other/path');
- $this->assertEquals(
- '../../foo/bar/file.ext',
- $path->getRelativePath($basePath)
- );
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetRelativePathFileDoesNotExist(): void
- {
- $path = $this->getMock('./bar/file.ext', 'getRelativePath');
- $path->method('exists')->willReturn(False);
- $this->expectException(FileNotFoundException::class);
- $path->getRelativePath('/other/path');
- }
- /**
- * @throws IOException
- * @throws FileNotFoundException
- */
- public function testGetRelativePathTargetDoesNotExist(): void
- {
- $path = $this->getMock('./bar/file.ext', 'getRelativePath');
- $path->method('exists')->willReturn(True);
- $absPath = $this
- ->getMockBuilder(TestablePath::class)
- ->disableOriginalConstructor()
- ->getMock();
- $absPath->method('__toString')->willReturn('/foo/bar/file.ext');
- $path->method('absPath')->willReturn($absPath);
- $basePath = '/other/path';
- $this->builtin
- ->expects(self::once())
- ->method('realpath')
- ->with($basePath)
- ->willReturn(False);
- $this->expectException(FileNotFoundException::class);
- $path->getRelativePath($basePath);
- }
- }
|