testPdf = new InMemoryFile('test.pdf', $fileContents); } /** * Asserts that putContent replaces the file contents. * * @return void */ public function testPutContent() { $this->testPdf->putContent('test'); self::assertEquals('test', $this->testPdf->getContent()); } /** * Asserts that delete() doesn't rise an exception. * * @return void */ public function testDelete() { $this->testPdf->delete(); // assert true, otherwise phpunit complains about not doing any assert self::assertTrue(true); } /** * Asserts that getName returns the name passed on file creation. * * @return void */ public function testGetName() { self::assertEquals('test.pdf', $this->testPdf->getName()); } /** * Asserts that the file size is the size of the test file. * * @return void */ public function testGetSize() { self::assertEquals(7083, $this->testPdf->getSize()); } /** * Asserts the file contents are the same than the original file contents. * * @return void */ public function testGetContent() { self::assertEquals( file_get_contents(__DIR__ . '/../../../data/test.pdf'), $this->testPdf->getContent() ); } /** * Asserts the test file modification time is an integer. * * @return void */ public function testGetMTime() { self::assertTrue(is_int($this->testPdf->getMTime())); } /** * Asserts the test file mime type is "application/json". * * @return void */ public function testGetMimeType() { self::assertEquals('application/pdf', $this->testPdf->getMimeType()); } /** * Asserts that read() raises an NotPermittedException. * * @return void */ public function testRead() { self::expectException(NotPermittedException::class); $this->testPdf->read(); } /** * Asserts that write() raises an NotPermittedException. * * @return void */ public function testWrite() { self::expectException(NotPermittedException::class); $this->testPdf->write(); } }