/**
  * @test
  * @return void
  */
 public function testLoadData()
 {
     $fileContent = 'content file';
     $media = ['preview_image' => 'preview.jpg'];
     $themeTitle = 'Theme title';
     $themeConfigFile = 'theme.xml';
     $themeConfig = $this->getMockBuilder('Magento\\Framework\\Config\\Theme')->disableOriginalConstructor()->getMock();
     $theme = $this->getMockBuilder('Magento\\Theme\\Model\\Theme')->disableOriginalConstructor()->getMock();
     $parentTheme = ['parentThemeCode'];
     $parentThemePath = 'frontend/parent/theme';
     $themePackage = $this->getMock('\\Magento\\Framework\\View\\Design\\Theme\\ThemePackage', [], [], '', false);
     $themePackage->expects($this->any())->method('getArea')->will($this->returnValue('frontend'));
     $themePackage->expects($this->any())->method('getVendor')->will($this->returnValue('theme'));
     $themePackage->expects($this->any())->method('getName')->will($this->returnValue('code'));
     $this->themePackageList->expects($this->once())->method('getThemes')->will($this->returnValue([$themePackage]));
     $this->directory->expects($this->once())->method('isExist')->with($themeConfigFile)->willReturn(true);
     $this->directory->expects($this->once())->method('readFile')->with($themeConfigFile)->willReturn($fileContent);
     $this->themeConfigFactory->expects($this->once())->method('create')->with(['configContent' => $fileContent])->willReturn($themeConfig);
     $this->entityFactory->expects($this->any())->method('create')->with('Magento\\Theme\\Model\\Theme')->willReturn($theme);
     $themeConfig->expects($this->once())->method('getMedia')->willReturn($media);
     $themeConfig->expects($this->once())->method('getParentTheme')->willReturn($parentTheme);
     $themeConfig->expects($this->once())->method('getThemeTitle')->willReturn($themeTitle);
     $theme->expects($this->once())->method('addData')->with(['parent_id' => null, 'type' => ThemeInterface::TYPE_PHYSICAL, 'area' => 'frontend', 'theme_path' => 'theme/code', 'code' => 'theme/code', 'theme_title' => $themeTitle, 'preview_image' => $media['preview_image'], 'parent_theme_path' => 'theme/parentThemeCode'])->willReturnSelf();
     $theme->expects($this->once())->method('getData')->with('parent_theme_path')->willReturn($parentThemePath);
     $theme->expects($this->once())->method('getArea')->willReturn('frontend');
     $this->assertInstanceOf(get_class($this->model), $this->model->loadData());
 }
 public function testGetThemeTemplates()
 {
     $templates = (require __DIR__ . '/Config/_files/email_templates_merged.php');
     $templateId = 'template_one';
     $template = $templates[$templateId];
     $foundThemePath = 'Vendor/custom_theme';
     $theme = $this->getMock('\\Magento\\Framework\\View\\Design\\Theme\\ThemePackage', [], [], '', false);
     $theme->expects($this->any())->method('getArea')->willReturn('frontend');
     $theme->expects($this->any())->method('getVendor')->willReturn('Vendor');
     $theme->expects($this->any())->method('getName')->willReturn('custom_theme');
     $theme->expects($this->any())->method('getPath')->willReturn('/theme/path');
     $this->themePackages->expects($this->once())->method('getThemes')->willReturn([$theme]);
     $dir = $this->getMockForAbstractClass('\\Magento\\Framework\\Filesystem\\Directory\\ReadInterface');
     $this->readDirFactory->expects($this->once())->method('create')->with('/theme/path')->willReturn($dir);
     $dir->expects($this->once())->method('isExist')->willReturn(true);
     $actualTemplates = $this->model->getThemeTemplates($templateId);
     $this->assertNotEmpty($actualTemplates);
     foreach ($actualTemplates as $templateOptions) {
         $this->assertEquals(sprintf('%s (%s)', $template['label'], $foundThemePath), $templateOptions['label']);
         $this->assertEquals(sprintf('%s/%s', $templateId, $foundThemePath), $templateOptions['value']);
         $this->assertEquals($template['module'], $templateOptions['group']);
     }
 }