Ejemplo n.º 1
0
 /**
  * @param array $configurations
  *
  * @return ThemeInterface[]
  */
 private function initializeThemes(array $configurations)
 {
     $themes = [];
     foreach ($configurations as $configuration) {
         /** @var ThemeInterface $theme */
         $themes[$configuration['name']] = $this->themeFactory->create($configuration['name'], $configuration['path']);
     }
     return $themes;
 }
Ejemplo n.º 2
0
 function it_throws_an_exception_if_there_is_a_circular_dependency_found(ConfigurationProviderInterface $configurationProvider, ThemeFactoryInterface $themeFactory, HydrationInterface $themeHydrator, CircularDependencyCheckerInterface $circularDependencyChecker, ThemeInterface $firstTheme, ThemeInterface $secondTheme)
 {
     $configurationProvider->getConfigurations()->willReturn([['name' => 'first/theme', 'path' => '/first/theme/path', 'parents' => ['second/theme'], 'authors' => [], 'screenshots' => []], ['name' => 'second/theme', 'path' => '/second/theme/path', 'parents' => ['first/theme'], 'authors' => [], 'screenshots' => []]]);
     $themeFactory->create('first/theme', '/first/theme/path')->willReturn($firstTheme);
     $themeFactory->create('second/theme', '/second/theme/path')->willReturn($secondTheme);
     $themeHydrator->hydrate(['name' => 'first/theme', 'path' => '/first/theme/path', 'parents' => [$secondTheme], 'authors' => [], 'screenshots' => []], $firstTheme)->willReturn($firstTheme);
     $themeHydrator->hydrate(['name' => 'second/theme', 'path' => '/second/theme/path', 'parents' => [$firstTheme], 'authors' => [], 'screenshots' => []], $secondTheme)->willReturn($secondTheme);
     $circularDependencyChecker->check(Argument::cetera())->willThrow(CircularDependencyFoundException::class);
     $this->shouldThrow(new ThemeLoadingFailedException('Circular dependency found.'))->during('load');
 }