Example #1
0
 protected function setUp()
 {
     $this->taskExecutionRepository = $this->prophesize(TaskExecutionRepositoryInterface::class);
     $this->taskHandlerFactory = $this->prophesize(TaskHandlerFactoryInterface::class);
     $this->eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->taskRunner = new TaskRunner($this->taskExecutionRepository->reveal(), $this->taskHandlerFactory->reveal(), $this->eventDispatcher->reveal());
 }
 public function setUp()
 {
     parent::setUp();
     $this->mockClient = $this->prophesize(AcmeClient::class);
     $this->mockDispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->service = new Challenger($this->mockClient->reveal(), $this->mockDispatcher->reveal());
 }
 protected function setUp()
 {
     $this->channel = $this->prophesize(AMQPChannel::class);
     $this->serializer = $this->prophesize(Serializer::class);
     $this->eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->parser = $this->prophesize(Parser::class);
     $this->manager = new ConsumerManager($this->channel->reveal(), self::EXCHANGE_NAME, $this->serializer->reveal(), $this->parser->reveal());
     $this->manager->setEventDispatcher($this->eventDispatcher->reveal());
 }
 public function setUp()
 {
     parent::setUp();
     $this->aclProvider = $this->prophesize(MutableAclProviderInterface::class);
     $this->maskConverter = $this->prophesize(MaskConverterInterface::class);
     $this->securityIdentity = new RoleSecurityIdentity('ROLE_SULU_ADMINISTRATOR');
     $this->acl = $this->prophesize(MutableAclInterface::class);
     $this->eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->accessControlManager = new SymfonyAccessControlManager($this->aclProvider->reveal(), $this->maskConverter->reveal(), $this->eventDispatcher->reveal());
 }
Example #5
0
 public function setUp()
 {
     parent::setUp();
     $this->mockClient = $this->prophesize(AcmeClient::class);
     $this->mockKeyPairFactory = $this->prophesize(DomainKeyPairProviderFactory::class);
     $this->mockChallenger = $this->prophesize(Challenger::class);
     $this->mockCertificateRepository = $this->prophesize(CertificateRepository::class);
     $this->mockDispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->service = new Requester($this->mockClient->reveal(), $this->mockKeyPairFactory->reveal(), $this->mockChallenger->reveal(), $this->mockCertificateRepository->reveal(), $this->mockDispatcher->reveal());
 }
 /**
  * It should handle query execution and set the result.
  */
 public function testHandleQueryExecute()
 {
     $locale = 'fr';
     $primarySelector = 'p';
     $this->query->getLocale()->willReturn($locale);
     $this->query->getPhpcrQuery()->willReturn($this->phpcrQuery->reveal());
     $this->phpcrQuery->execute()->willReturn($this->phpcrResult->reveal());
     $this->query->getPrimarySelector()->willReturn($primarySelector);
     $this->queryExecuteEvent->getQuery()->willReturn($this->query->reveal());
     $this->queryExecuteEvent->getOptions()->willReturn([]);
     $this->queryExecuteEvent->setResult(new QueryResultCollection($this->phpcrResult->reveal(), $this->dispatcher->reveal(), $locale))->shouldBeCalled();
     $this->subscriber->handleQueryExecute($this->queryExecuteEvent->reveal());
 }
 public function setUp()
 {
     $this->dispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->manager = new NotificationManager();
     $this->manager->setEventDispatcher($this->dispatcher->reveal());
 }
 /**
  * {@inheritdoc}
  */
 protected function setUp()
 {
     parent::setUp();
     $this->moduleHandler = $this->prophesize(ModuleHandlerInterface::class);
     $this->moduleHandler->getImplementations('entity_type_build')->willReturn([]);
     $this->moduleHandler->alter('entity_type', Argument::type('array'))->willReturn(NULL);
     $this->moduleHandler->alter('entity_base_field_info', Argument::type('array'), Argument::any())->willReturn(NULL);
     $this->moduleHandler->alter('entity_bundle_field_info', Argument::type('array'), Argument::any(), Argument::type('string'))->willReturn(NULL);
     $this->cacheBackend = $this->prophesize(CacheBackendInterface::class);
     $this->cacheTagsInvalidator = $this->prophesize(CacheTagsInvalidatorInterface::class);
     $language = new Language(['id' => 'en']);
     $this->languageManager = $this->prophesize(LanguageManagerInterface::class);
     $this->languageManager->getCurrentLanguage()->willReturn($language);
     $this->languageManager->getLanguages()->willReturn(['en' => (object) ['id' => 'en']]);
     $this->typedDataManager = $this->prophesize(TypedDataManager::class);
     $this->typedDataManager->getDefinition('field_item:boolean')->willReturn(['class' => BooleanItem::class]);
     $this->eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->keyValueFactory = $this->prophesize(KeyValueFactoryInterface::class);
     $this->container = $this->prophesize(ContainerInterface::class);
     $this->container->get('cache_tags.invalidator')->willReturn($this->cacheTagsInvalidator->reveal());
     $this->container->get('typed_data_manager')->willReturn($this->typedDataManager->reveal());
     \Drupal::setContainer($this->container->reveal());
     $this->discovery = $this->prophesize(DiscoveryInterface::class);
     $translation_manager = $this->prophesize(TranslationInterface::class);
     $this->entityManager = new TestEntityManager(new \ArrayObject(), $this->moduleHandler->reveal(), $this->cacheBackend->reveal(), $this->languageManager->reveal(), $translation_manager->reveal(), $this->getClassResolverStub(), $this->typedDataManager->reveal(), $this->keyValueFactory->reveal(), $this->eventDispatcher->reveal());
     $this->entityManager->setContainer($this->container->reveal());
     $this->entityManager->setDiscovery($this->discovery->reveal());
 }
 public function setUp()
 {
     $this->maskConverter = $this->prophesize(MaskConverterInterface::class);
     $this->eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
     $this->accessControlManager = new AccessControlManager($this->maskConverter->reveal(), $this->eventDispatcher->reveal());
 }
Example #10
0
 protected function getNanbando(array $backup)
 {
     return new Nanbando($backup, $this->storage->reveal(), $this->databaseFactory->reveal(), $this->eventDispatcher->reveal());
 }