Exemplo n.º 1
0
        public async Task <bool> Handle(ExtractMnchLab request, CancellationToken cancellationToken)
        {
            //Extract
            int found = await _mnchLabSourceExtractor.Extract(request.Extract, request.DatabaseProtocol);

            //Validate
            await _extractValidator.Validate(request.Extract.Id, found, nameof(MnchLabExtract), $"{nameof(TempMnchLabExtract)}s");

            //Load
            int loaded = await _mnchLabLoader.Load(request.Extract.Id, found, request.DatabaseProtocol.SupportsDifferential);

            int rejected =
                _extractHistoryRepository.ProcessRejected(request.Extract.Id, found - loaded, request.Extract);


            _extractHistoryRepository.ProcessExcluded(request.Extract.Id, rejected, request.Extract);

            //notify loaded
            DomainEvents.Dispatch(
                new MnchExtractActivityNotification(request.Extract.Id, new DwhProgress(
                                                        nameof(MnchLabExtract),
                                                        nameof(ExtractStatus.Loaded),
                                                        found, loaded, rejected, loaded, 0)));

            return(true);
        }
Exemplo n.º 2
0
        public void should_Load()
        {
            Assert.True(_count > 0);
            Assert.False(_extractsContext.MnchLabExtracts.Any());

            var count = _loader.Load(_extract.Id, _count, false).Result;

            Assert.True(count > 0);
            _extractsContext = TestInitializer.ServiceProvider.GetService <ExtractsContext>();
            Assert.AreEqual(count, _extractsContext.MnchLabExtracts.Count());
            Log.Debug($"Temp {_count} Main {_extractsContext.MnchLabExtracts.Count()}");
        }