Exemple #1
0
 public function testAppend()
 {
     $tempFile = new File(FileUtil::getTempFileName());
     $this->assertTrue($tempFile->append('foobar'));
     $this->assertSame('foobar', $tempFile->getContent());
     $this->assertTrue($tempFile->append('bazfoobar'));
     $this->assertSame('foobarbazfoobar', $tempFile->getContent());
 }
Exemple #2
0
 /**
  * @see \Psr\Log\LoggerInterface::log()
  */
 public function log($level, $message, array $context = array())
 {
     $this->logFile->append($this->buildLogEntry($level, $this->composeMessage($message, $context), $this->getExceptionFromContext($context)) . StringUtil::CHAR_LINE_FEED);
 }
 /**
  * Tests whether removeDirectory() works correctly.
  *
  * @return void
  */
 public function testRemoveDirectory()
 {
     FileUtil::createDirectoryIfNotExists(ABLERON_TEMP_DIR . '/testRemoveDirectory/foo/bar/baz');
     $file = new File(ABLERON_TEMP_DIR . '/testRemoveDirectory/foo/bar/bar.txt');
     $file->append('foobar');
     $this->assertTrue(is_file($file->getPath()));
     FileUtil::removeDirectory(ABLERON_TEMP_DIR . '/testRemoveDirectory');
     $this->assertFalse(is_file($file->getPath()));
     $this->assertFalse(is_dir(ABLERON_TEMP_DIR . '/testRemoveDirectory'));
 }