public ContractQueryBaseTest(ContractQueryConfiguration queryConfig)
        {
            this.queryConfig = queryConfig;

            decodedEvent = DecodedEvent.Empty();

            Web3Mock web3Mock = new Web3Mock();

            var fakeResults = new List <ParameterOutput>();

            fakeResults.Add(new ParameterOutput {
                Result = FAKE_QUERY_RESULT
            });

            subscriptionState     = new EventSubscriptionStateDto();
            MockEventSubscription = new Mock <IEventSubscription>();
            MockEventSubscription.Setup(s => s.State).Returns(subscriptionState);

            contractQueryEventHandler = new ContractQueryEventHandler(MockEventSubscription.Object, 1, web3Mock.Eth, queryConfig);
            contractQueryEventHandler.QueryInterceptor = (abi, address, sig, inputs) =>
            {
                actualQueryArgs                     = new QueryArgs {
                };
                actualQueryArgs.Abi                 = abi;
                actualQueryArgs.ContractAddress     = address;
                actualQueryArgs.FunctionSignature   = sig;
                actualQueryArgs.FunctionInputValues = inputs;

                return(Task.FromResult(fakeResults));
            };
        }
        public ContractQueryBaseTest(ContractQueryConfiguration queryConfig)
        {
            this.queryConfig = queryConfig;

            decodedEvent = DecodedEvent.Empty();

            var mockContractQuery = MockContractQuery(FAKE_QUERY_RESULT, (actualArgs) => actualQueryArgs = actualArgs);

            subscriptionState     = new EventSubscriptionStateDto();
            MockEventSubscription = new Mock <IEventSubscription>();
            MockEventSubscription.Setup(s => s.State).Returns(subscriptionState);
            contractQueryEventHandler = new ContractQueryEventHandler(MockEventSubscription.Object, 1, mockContractQuery, queryConfig);
        }
        public async Task ContractQuery()
        {
            var config = new EventHandlerDto
            {
                Id = 50,
                EventSubscriptionId = 99,
                HandlerType         = EventHandlerType.ContractQuery
            };

            var contractQueryConfig = new ContractQueryConfiguration();

            _contractQueryFactory
            .Setup(f => f.GetAsync(_mockEventSubscription.Object.SubscriberId, config.Id))
            .ReturnsAsync(contractQueryConfig);

            var handler = await _eventHandlerFactory.LoadAsync(_mockEventSubscription.Object, config);

            var contractQueryEventHandler = handler as ContractQueryEventHandler;

            Assert.NotNull(contractQueryEventHandler);
            Assert.Equal(config.Id, contractQueryEventHandler.Id);
            Assert.Same(_mockEventSubscription.Object, contractQueryEventHandler.Subscription);
            Assert.Same(contractQueryConfig, contractQueryEventHandler.Configuration);
        }
        public static IEventProcessingConfigurationRepository CreateMockRepository(this EventProcessingConfigContext repo, IdGenerator id)
        {
            Mock <IEventProcessingConfigurationRepository> configDb = new Mock <IEventProcessingConfigurationRepository>();

            var EventSubscriptionStateRepository          = new Mock <IEventSubscriptionStateRepository>();
            var EventContractQueryConfigurationRepository = new Mock <IEventContractQueryConfigurationRepository>();

            var EventHandlerHistory                  = new Mock <IEventHandlerHistoryRepository>();
            var EventAggregatorRepository            = new Mock <IEventAggregatorRepository>();
            var EventRuleRepository                  = new Mock <IEventRuleRepository>();
            var subscriberStorageRepository          = new Mock <ISubscriberStorageRepository>();
            var subscriberRepository                 = new Mock <ISubscriberRepository>();
            var subscriberQueueRepository            = new Mock <ISubscriberQueueRepository>();
            var subscriberSearchIndexRepository      = new Mock <ISubscriberSearchIndexRepository>();
            var subscriberContractRepository         = new Mock <ISubscriberContractRepository>();
            var eventSubscriptionRepository          = new Mock <IEventSubscriptionRepository>();
            var eventSubscriptionAddressesRepository = new Mock <IEventSubscriptionAddressRepository>();
            var parameterConditionsRepository        = new Mock <IParameterConditionRepository>();
            var eventHandlerRepository               = new Mock <IEventHandlerRepository>();

            configDb.Setup(c => c.EventSubscriptionStates).Returns(EventSubscriptionStateRepository.Object);
            configDb.Setup(c => c.EventContractQueries).Returns(EventContractQueryConfigurationRepository.Object);
            configDb.Setup(c => c.EventAggregators).Returns(EventAggregatorRepository.Object);
            configDb.Setup(c => c.EventHandlerHistoryRepo).Returns(EventHandlerHistory.Object);
            configDb.Setup(c => c.EventRules).Returns(EventRuleRepository.Object);
            configDb.Setup(c => c.SubscriberStorage).Returns(subscriberStorageRepository.Object);
            configDb.Setup(c => c.SubscriberSearchIndexes).Returns(subscriberSearchIndexRepository.Object);

            configDb.Setup(c => c.Subscribers).Returns(subscriberRepository.Object);
            configDb.Setup(c => c.EventSubscriptions).Returns(eventSubscriptionRepository.Object);
            configDb.Setup(c => c.SubscriberContracts).Returns(subscriberContractRepository.Object);
            configDb.Setup(c => c.SubscriberQueues).Returns(subscriberQueueRepository.Object);
            configDb.Setup(c => c.EventSubscriptionAddresses).Returns(eventSubscriptionAddressesRepository.Object);
            configDb.Setup(c => c.ParameterConditions).Returns(parameterConditionsRepository.Object);
            configDb.Setup(c => c.EventHandlers).Returns(eventHandlerRepository.Object);

            EventHandlerHistory.Setup(h => h.UpsertAsync(It.IsAny <IEventHandlerHistoryDto>()))
            .Returns <IEventHandlerHistoryDto>((history) =>
            {
                repo.Add(history);
                return(Task.FromResult(history));
            });

            EventHandlerHistory.Setup(h => h.ContainsAsync(It.IsAny <long>(), It.IsAny <string>()))
            .Returns <long, string>((eventHandlerId, eventKey) =>
            {
                var exists = repo.EventHandlerHistories.Any(h =>
                                                            h.EventHandlerId == eventHandlerId &&
                                                            h.EventKey == eventKey);

                return(Task.FromResult(exists));
            });

            subscriberRepository
            .Setup(d => d.GetManyAsync(It.IsAny <long>()))
            .Returns <long>((partitionId) => Task.FromResult(repo.Subscribers.Where(s => s.PartitionId == partitionId).Cast <ISubscriberDto>().ToArray()));

            eventSubscriptionRepository
            .Setup(d => d.GetManyAsync(It.IsAny <long>()))
            .Returns <long>((subscriberId) => Task.FromResult(repo.EventSubscriptions.Where(s => s.SubscriberId == subscriberId).Cast <IEventSubscriptionDto>().ToArray()));

            subscriberContractRepository
            .Setup(d => d.GetAsync(It.IsAny <long>(), It.IsAny <long>()))
            .Returns <long, long>((subscriberId, contractId) => Task.FromResult(repo.Contracts.Where(s => s.SubscriberId == subscriberId && s.Id == contractId).Cast <ISubscriberContractDto>().FirstOrDefault()));

            eventSubscriptionAddressesRepository
            .Setup(d => d.GetManyAsync(It.IsAny <long>()))
            .Returns <long>((eventSubscriptionId) => Task.FromResult(repo.EventSubscriptionAddresses.Where(s => s.EventSubscriptionId == eventSubscriptionId).Cast <IEventSubscriptionAddressDto>().ToArray()));

            parameterConditionsRepository
            .Setup(d => d.GetManyAsync(It.IsAny <long>()))
            .Returns <long>((eventSubscriptionId) => Task.FromResult(repo.ParameterConditions.Where(s => s.EventSubscriptionId == eventSubscriptionId).Cast <IParameterConditionDto>().ToArray()));

            eventHandlerRepository
            .Setup(d => d.GetManyAsync(It.IsAny <long>()))
            .Returns <long>((eventSubscriptionId) => Task.FromResult(repo.DecodedEventHandlers.Where(s => s.EventSubscriptionId == eventSubscriptionId).Cast <IEventHandlerDto>().ToArray()));

            EventSubscriptionStateRepository
            .Setup(d => d.GetAsync(It.IsAny <long>()))
            .Returns <long>((eventSubscriptionId) =>
            {
                var state = repo.GetEventSubscriptionState(eventSubscriptionId);
                if (state == null)
                {
                    state = repo.Add(new EventSubscriptionStateDto(eventSubscriptionId));
                }
                return(Task.FromResult(state as IEventSubscriptionStateDto));
            });

            EventSubscriptionStateRepository
            .Setup(d => d.UpsertAsync(It.IsAny <IEnumerable <IEventSubscriptionStateDto> >()))
            .Callback <IEnumerable <IEventSubscriptionStateDto> >((states) =>
            {
                foreach (var state in states)
                {
                    //simulate an update
                    //this is in memory so not really representative
                    var existing = repo.EventSubscriptionStates.FirstOrDefault(s => s.EventSubscriptionId == state.EventSubscriptionId);
                    var index    = repo.EventSubscriptionStates.IndexOf(existing);
                    repo.EventSubscriptionStates[index] = state;
                }
            })
            .Returns(Task.CompletedTask);

            EventContractQueryConfigurationRepository
            .Setup(d => d.GetAsync(It.IsAny <long>(), It.IsAny <long>()))
            .Returns <long, long>((subscriberId, eventHandlerId) =>
            {
                var contractQuery = repo.ContractQueries.FirstOrDefault(c => c.EventHandlerId == eventHandlerId);
                if (contractQuery == null)
                {
                    throw new ArgumentException($"Could not find Contract Query Configuration for Event Handler Id: {eventHandlerId}");
                }
                var contract = repo.Contracts.FirstOrDefault(c => c.SubscriberId == subscriberId && c.Id == contractQuery.ContractId);
                if (contract == null)
                {
                    throw new ArgumentException($"Could not find Contract Query Id: {contractQuery.Id}, Contract Id: {contractQuery.ContractId}");
                }
                var parameters = repo.ContractQueryParameters.Where(p => p.ContractQueryId == contractQuery.Id);

                ContractQueryConfiguration config = Map(contractQuery, contract, parameters);

                return(Task.FromResult(config));
            });

            EventAggregatorRepository
            .Setup(d => d.GetAsync(It.IsAny <long>()))
            .Returns <long>((eventHandlerId) =>
            {
                var dto = repo.EventAggregators.FirstOrDefault(c => c.EventHandlerId == eventHandlerId);
                if (dto == null)
                {
                    throw new ArgumentException($"Could not find Event Aggregator Configuration for Event Handler Id: {eventHandlerId}");
                }
                return(Task.FromResult(dto as IEventAggregatorDto));
            });

            subscriberQueueRepository
            .Setup(d => d.GetAsync(It.IsAny <long>(), It.IsAny <long>()))
            .Returns <long, long>((subscriberId, subscriberQueueId) =>
            {
                var dto = repo.SubscriberQueues.FirstOrDefault(q => q.SubscriberId == subscriberId && q.Id == subscriberQueueId);
                if (dto == null)
                {
                    throw new ArgumentException($"Could not find Subscriber Queue Id: {subscriberQueueId}");
                }
                return(Task.FromResult(dto as ISubscriberQueueDto));
            });

            subscriberSearchIndexRepository
            .Setup(d => d.GetAsync(It.IsAny <long>(), It.IsAny <long>()))
            .Returns <long, long>((subscriberId, subscriberSearchIndexId) => {
                var dto = repo.SubscriberSearchIndexes.FirstOrDefault(q => q.SubscriberId == subscriberId && q.Id == subscriberSearchIndexId);
                if (dto == null)
                {
                    throw new ArgumentException($"Could not find Subscriber Search Index Id: {subscriberSearchIndexId}");
                }
                return(Task.FromResult(dto as ISubscriberSearchIndexDto));
            });

            subscriberStorageRepository
            .Setup(d => d.GetAsync(It.IsAny <long>(), It.IsAny <long>()))
            .Returns <long, long>((subscriberId, subscriberRepositoryId) => {
                var dto = repo.SubscriberRepositories.FirstOrDefault(q => q.SubscriberId == subscriberId && q.Id == subscriberRepositoryId);
                if (dto == null)
                {
                    throw new ArgumentException($"Could not find Subscriber Repository Id: {subscriberRepositoryId}");
                }
                return(Task.FromResult(dto as ISubscriberStorageDto));
            });

            EventRuleRepository
            .Setup(d => d.GetAsync(It.IsAny <long>()))
            .Returns <long>((eventHandlerId) =>
            {
                var dto = repo.EventRuleConfigurations.FirstOrDefault(c => c.EventHandlerId == eventHandlerId);
                if (dto == null)
                {
                    throw new ArgumentException($"Could not find EventRuleConfiguration for Event Handler Id: {eventHandlerId}");
                }
                return(Task.FromResult(Map(dto)));
            });


            return(configDb.Object);
        }