Ejemplo 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);
        }
Ejemplo n.º 2
0
 public void SetUp()
 {
     _loader    = TestInitializer.ServiceProvider.GetService <IMnchLabLoader>();
     _extractor = TestInitializer.ServiceProvider.GetService <IMnchLabSourceExtractor>();
     _extract   = _extracts.First(x => x.Name.IsSameAs(nameof(MnchLabExtract)));
     _count     = _extractor.Extract(_extract, _protocol).Result;
 }
        public void should_Extract(string name)
        {
            Assert.False(_extractsContext.TempMnchLabExtracts.Any());
            var extract = _extracts.First(x => x.Name.IsSameAs(name));

            var count = _extractor.Extract(extract, _protocol).Result;

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