Example #1
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', 'parents' => ['second/theme'], 'authors' => []], ['name' => 'second/theme', 'parents' => ['first/theme'], 'authors' => []]]);
     $themeFactory->createNamed('first/theme')->willReturn($firstTheme);
     $themeFactory->createNamed('second/theme')->willReturn($secondTheme);
     $themeHydrator->hydrate(['name' => 'first/theme', 'parents' => [$secondTheme], 'authors' => []], $firstTheme)->willReturn($firstTheme);
     $themeHydrator->hydrate(['name' => 'second/theme', 'parents' => [$firstTheme], 'authors' => []], $secondTheme)->willReturn($secondTheme);
     $circularDependencyChecker->check(Argument::cetera())->willThrow(CircularDependencyFoundException::class);
     $this->shouldThrow(new ThemeLoadingFailedException('Circular dependency found.'))->during('load');
 }
Example #2
0
 /**
  * @param array $configurations
  * @param ThemeInterface[] $themes
  *
  * @return ThemeInterface[]
  */
 private function hydrateThemes(array $configurations, array $themes)
 {
     foreach ($configurations as $configuration) {
         $themeName = $configuration['name'];
         $configuration['parents'] = $this->convertParentsNamesToParentsObjects($themeName, $configuration['parents'], $themes);
         $configuration['authors'] = $this->convertAuthorsArraysToAuthorsObjects($configuration['authors']);
         $themes[$themeName] = $this->themeHydrator->hydrate($configuration, $themes[$themeName]);
     }
     return $themes;
 }