2016-03-04 62 views
1

我試圖測試圖片進口商這需要一個文件,並提交一個表單附有該圖像提交。測試的那部分似乎是它摔倒的部分,我不知道如何解決它。測試連接UploadedFile的形成與PhpSpec

我明白「不嘲笑你不擁有的東西」的概念,但是如果不承認對私有方法insertImageThroughForm的調用,則測試不起作用。

我得到以下錯誤:

75 ! imports image assets 
     method call: 
      - submit(["file" => ["assetFile" => ["file" => Symfony\Component\HttpFoundation\File\UploadedFile:0000000027d380bc00007f8c6cad27ec Object (
      'test' => false 
      'originalName' => 'picco.jpg' 
      'mimeType' => 'application/octet-stream' 
      'size' => null 
      'error' => 0 
     )]]], false) 
     on Double\Symfony\Component\Form\Form\P22 was not expected, expected calls were: 
      - submit(exact(["file" => ["assetFile" => ["file" => Double\Symfony\Component\Finder\SplFileInfo\P19:0000000027d3807500007f8c6cad27ec Object (
      'objectProphecy' => Prophecy\Prophecy\ObjectProphecy Object (*Prophecy*) 
      'relativePath' => null 
      'relativePathname' => null 
     )]]]), exact(false)) 
      - submit(exact(["file" => ["assetFile" => ["file" => Double\Symfony\Component\Finder\SplFileInfo\P20:0000000027d3803000007f8c6cad27ec Object (
      'objectProphecy' => Prophecy\Prophecy\ObjectProphecy Object (*Prophecy*) 
      'relativePath' => null 
      'relativePathname' => null 
     )]]]), exact(false)) 

ImageImporterSpec.php

const TEMP_PATH = '/tmp/crmpicco/imageImporter'; 

function it_imports_image_assets(
    Category $category, 
    AssetFactory $assetFactory, 
    Asset $asset, 
    Finder $finder, 
    SplFileInfo $file1, 
    SplFileInfo $file2, 
    FormFactory $formFactory, 
    Form $form 
) { 
    $category->getId()->willReturn(14); 

    $createTempPathFilesystem = new Filesystem(); 
    $createTempPathFilesystem->mkdir(self::TEMP_PATH); 
    $createTempPathFilesystem->mkdir(self::TEMP_PATH . DIRECTORY_SEPARATOR . 'courses'); 

    $imageImportPath = self::TEMP_PATH . DIRECTORY_SEPARATOR . 'courses/'; 

    $createTempPathFilesystem->touch($imageImportPath . 'picco.jpg'); 
    $createTempPathFilesystem->touch($imageImportPath . 'morton.jpg'); 

    $finder->files()->willReturn($finder); 
    $finder->in($imageImportPath)->willReturn($finder); 

    $finder->getIterator()->willReturn(new \ArrayIterator([ 
     $file1->getWrappedObject(), 
     $file2->getWrappedObject(), 
    ])); 

    $file1->getPathname()->willReturn($imageImportPath . 'picco.jpg'); 
    $file2->getPathname()->willReturn($imageImportPath . 'morton.jpg'); 

    $assetFactory->createForCategory(14)->willReturn($asset); 

    $formFactory->create('category_asset', $asset, ['csrf_protection' => false])->willReturn($form); 

    $form->submit(['file' => ['assetFile' => ['file' => $file1->getWrappedObject()]]], false)->shouldBeCalled(); 
    $form->submit(['file' => ['assetFile' => ['file' => $file2->getWrappedObject()]]], false)->shouldBeCalled(); 

    $this->importImageAssets('courses/', $category)->shouldBeCalled(); 
} 

ImageImporter.php

public function importImageAssets($importDirectory, Category $category) 
{ 
    $finder = new Finder(); 
    $finder->files()->in($importDirectory); 
    if (count($finder) > 0) { 
     foreach ($finder as $image) { 
      $filename = $image->getBasename('.' . $image->getExtension()); 
      $filepath = $importDirectory . '/' . $image->getFilename(); 

      $asset = $this->assetFactory->createForCategory($category->getId()); 

      $asset->setName($filename); 

      $this->insertImageThroughForm($asset, $filepath); 

      $this->entityManager->persist($asset); 
     } 
     $this->entityManager->flush(); 
    } 
} 

private function insertImageThroughForm(Asset $asset, $filePath) 
{ 
    $form = $this->formFactory->create('category_asset', $asset, ['csrf_protection' => false]); 

    $uploadedFile = new UploadedFile($filePath, basename($filePath)); 

    $form->submit(['file' => ['assetFile' => ['file' => $uploadedFile]]], false); 
} 

回答

4

什麼你正在測試超過一個單元測試的集成測試。 PhpSpec不適用於集成測試,但僅適用於低單元測試。爲什麼這是一個集成測試?因爲你使用一個真正的文件系統,它是外部服務,也可以幾個第三方庫像FilesystemFinder

您試圖模擬Finder,但Finder在該方法中直接初始化,因此無法模擬。您需要注入Finder作爲該類的依賴項。

+0

謝謝,我已經來到了結論,PhpSpec不適合工作的正確工具 - 十分感謝確認。我最終寫了一些Behat場景來完成這項工作。 – crmpicco