path = __DIR__ . '/fixtures/files/'; $this->add_lang('posting'); } public function tearDown() { $iterator = new DirectoryIterator(__DIR__ . '/../../phpBB/files/'); foreach ($iterator as $fileinfo) { if ( $fileinfo->isDot() || $fileinfo->isDir() || $fileinfo->getFilename() === 'index.htm' || $fileinfo->getFilename() === '.htaccess' ) { continue; } unlink($fileinfo->getPathname()); } } private function upload_file($filename, $mimetype) { $file = array( 'tmp_name' => $this->path . $filename, 'name' => $filename, 'type' => $mimetype, 'size' => filesize($this->path . $filename), 'error' => UPLOAD_ERR_OK, ); $crawler = self::$client->request( 'POST', 'posting.php?mode=reply&f=2&t=1&sid=' . $this->sid, array('add_file' => $this->lang('ADD_FILE')), array('fileupload' => $file) ); return $crawler; } public function test_empty_file() { $this->login(); $crawler = $this->upload_file('empty.png', 'image/png'); $this->assertEquals($this->lang('EMPTY_FILEUPLOAD'), $crawler->filter('p.error')->text()); } public function test_invalid_extension() { $this->login(); $crawler = $this->upload_file('illegal-extension.bif', 'application/octet-stream'); $this->assertEquals($this->lang('DISALLOWED_EXTENSION', 'bif'), $crawler->filter('p.error')->text()); } public function test_too_large() { $this->create_user('fileupload'); $this->login('fileupload'); $crawler = $this->upload_file('too-large.png', 'image/png'); $this->assertEquals($this->lang('WRONG_FILESIZE', '256', 'KiB'), $crawler->filter('p.error')->text()); } public function test_valid_file() { $this->login(); $crawler = $this->upload_file('valid.jpg', 'image/jpeg'); // Ensure there was no error message rendered $this->assertNotContains('

' . $this->lang('INFORMATION') . '

', $this->get_content()); // Also the file name should be in the first row of the files table $this->assertEquals('valid.jpg', $crawler->filter('span.file-name')->eq(1)->text()); } }