public function load(ObjectManager $manager)
 {
     NodeHelper::createPath($manager->getPhpcrSession(), '/test');
     $testDataDir = realpath(__DIR__ . '/../../app/Resources/data');
     $root = $manager->find(null, '/test');
     // media root
     $mediaRoot = new Generic();
     $mediaRoot->setNodename('media');
     $mediaRoot->setParent($root);
     $manager->persist($mediaRoot);
     // content root
     $contentRoot = new Generic();
     $contentRoot->setNodename('content');
     $contentRoot->setParent($root);
     $manager->persist($contentRoot);
     // File
     $file = new File();
     $file->setParent($mediaRoot);
     $file->setName('file-1.txt');
     $file->setContentFromString('Test file 1.');
     $file->setContentType('text/plain');
     $manager->persist($file);
     // Image
     $image = new Image();
     $image->setParent($mediaRoot);
     $image->setName('cmf-logo.png');
     $image->setFileContentFromFilesystem($testDataDir . '/cmf-logo.png');
     $manager->persist($image);
     $image2 = new Image();
     $image2->setParent($contentRoot);
     $image2->setName('cmf-logo-2.png');
     $image2->setFileContentFromFilesystem($testDataDir . '/cmf-logo.png');
     $manager->persist($image2);
     // Content with image
     $content = new Content();
     $content->setParent($contentRoot);
     $content->setName('content-with-image');
     $content->setTitle('Content document with image embedded');
     $contentImage = new Image();
     $contentImage->setFileContentFromFilesystem($testDataDir . '/cmf-logo.png');
     $content->setFile($contentImage);
     $manager->persist($content);
     // Content with file
     $content2 = new Content();
     $content2->setParent($contentRoot);
     $content2->setName('content-with-file');
     $content2->setTitle('Content document with file attached');
     $contentFile = new File();
     $contentFile->setFileContentFromFilesystem($testDataDir . '/testfile.txt');
     $content2->setFile($contentFile);
     $manager->persist($content2);
     $manager->flush();
 }
 public function testDownloadUrl()
 {
     $router = $this->getMock('Symfony\\Component\\Routing\\RouterInterface');
     $router->expects($this->once())->method('generate')->will($this->returnValue('http://www.example.com/media/download/test/media/file-download'));
     $mediaManager = $this->getMock('Symfony\\Cmf\\Bundle\\MediaBundle\\MediaManagerInterface');
     $mediaManager->expects($this->once())->method('getUrlSafePath')->will($this->returnValue('test/media/file-download'));
     $file = new File();
     $file->setName('file-download');
     $file->setId('/test/media/file-download');
     $file->setContentFromString('File download url test.');
     $mediaHelper = new CmfMediaHelper($mediaManager, $router);
     $mediaHelper->downloadUrl($file);
 }
Example #3
0
 /**
  * Create file and return it's path or false on failed
  *
  * @param  string      $path parent dir path
  * @param  string      $name new file name
  * @return string|bool
  * @author Dmitry (dio) Levashov
  **/
 protected function _mkfile($path, $name)
 {
     $filename = $this->_joinPath($path, $name);
     $file = new File();
     $file->setContentFromString('');
     $file->setId($filename);
     $this->mediaManager->setDefaults($file, $path);
     $pi = pathinfo($filename);
     if (isset($pi['extension']) && !empty($pi['extension'])) {
         if (isset(self::$mimetypes[$pi['extension']])) {
             $file->setContentType(self::$mimetypes[$pi['extension']]);
         }
     }
     $this->dm->persist($file);
     $this->dm->flush();
     return $file->getId();
 }
Example #4
0
 /**
  * @dataProvider getSizeProvider
  */
 public function testSize($content, $expectedSize)
 {
     $file = new File();
     $file->setContentFromString($content);
     $this->assertSame($expectedSize, $file->getSize());
 }