$tmpFileName, 'type' => 'text/plaintext', 'size' => filesize($tmpFilePath), 'tmp_name' => $tmpFilePath, 'extension' => 'txt', 'error' => UPLOAD_ERR_OK, ); // test upload into default folder $u1 = new Upload(); $u1->load($tmpFile); $file1 = $u1->getFile(); $this->assertTrue( file_exists($file1->getFullPath()), 'File upload to standard directory in /assets' ); $this->assertTrue( (strpos($file1->getFullPath(),Director::baseFolder() . '/assets/' . Upload::$uploads_folder) !== false), 'File upload to standard directory in /assets' ); $file1->delete(); // test upload into custom folder $customFolder = 'UploadTest_testUpload'; $u2 = new Upload(); $u2->load($tmpFile, $customFolder); $file2 = $u2->getFile(); $this->assertTrue( file_exists($file2->getFullPath()), 'File upload to custom directory in /assets' ); $this->assertTrue( (strpos($file2->getFullPath(),Director::baseFolder() . '/assets/' . $customFolder) !== false), 'File upload to custom directory in /assets' ); $file2->delete(); unlink($tmpFilePath); */ } function testAllowedFilesize() { // @todo } function testAllowedExtensions() { // @todo } } ?>