public void GetTrxAsyncReturnsTransactionFromBlockInCache_IX() { var trans = new Transaction(); trans.Version = 15121; uint256 blockId = new uint256(2389704); Block block = new Block(); block.Header.Version = 1451; block.Transactions.Add(trans); var dict = new Dictionary <object, object>(); dict.Add(trans.GetHash(), blockId); dict.Add(blockId, block); var memoryCacheStub = new MemoryCacheStub(dict); this.indexStoreCache = new IndexStoreCache(this.indexRepository.Object, memoryCacheStub, DateTimeProvider.Default, this.loggerFactory); var result = this.indexStoreCache.GetTrxAsync(trans.GetHash()); result.Wait(); Assert.Equal(trans.GetHash(), result.Result.GetHash()); }
public void GetBlockByTrxAsyncBlockNotInCacheLookupNotInRepositoryReturnsNull_IX() { uint256 txId = new uint256(3252); var memoryCacheStub = new MemoryCacheStub(); this.indexStoreCache = new IndexStoreCache(this.indexRepository.Object, memoryCacheStub, DateTimeProvider.Default, this.loggerFactory); this.indexRepository.Setup(b => b.GetTrxBlockIdAsync(txId)) .Returns(Task.FromResult((uint256)null)); var result = this.indexStoreCache.GetBlockByTrxAsync(txId); result.Wait(); Assert.Null(result.Result); }
public void GetTrxAsyncReturnsNullWhenNotInCache_IX() { var trans = new Transaction(); trans.Version = 15121; this.indexRepository.Setup(b => b.GetTrxBlockIdAsync(trans.GetHash())) .Returns(Task.FromResult((uint256)null)); var memoryCacheStub = new MemoryCacheStub(); this.indexStoreCache = new IndexStoreCache(this.indexRepository.Object, memoryCacheStub, DateTimeProvider.Default, this.loggerFactory); var result = this.indexStoreCache.GetTrxAsync(trans.GetHash()); result.Wait(); Assert.Null(result.Result); }
public void GetBlockAsyncBlockNotInCacheQueriesRepositoryStoresBlockInCacheAndReturnsBlock_IX() { uint256 blockId = new uint256(2389704); Block repositoryBlock = new Block(); repositoryBlock.Header.Version = 1451; this.indexRepository.Setup(b => b.GetAsync(blockId)) .Returns(Task.FromResult(repositoryBlock)); var memoryCacheStub = new MemoryCacheStub(); this.indexStoreCache = new IndexStoreCache(this.indexRepository.Object, memoryCacheStub, DateTimeProvider.Default, this.loggerFactory); var result = this.indexStoreCache.GetBlockAsync(blockId); result.Wait(); Assert.Equal(blockId, memoryCacheStub.GetLastCreateCalled()); Assert.Equal(1451, result.Result.Header.Version); }
public void GetBlockByTrxAsyncBlockInCacheReturnsBlock_IX() { uint256 txId = new uint256(3252); uint256 blockId = new uint256(2389704); Block block = new Block(); block.Header.Version = 1451; var dict = new Dictionary <object, object>(); dict.Add(txId, blockId); dict.Add(blockId, block); var memoryCacheStub = new MemoryCacheStub(dict); this.indexStoreCache = new IndexStoreCache(this.indexRepository.Object, memoryCacheStub, DateTimeProvider.Default, this.loggerFactory); var result = this.indexStoreCache.GetBlockByTrxAsync(txId); result.Wait(); Assert.Equal(1451, result.Result.Header.Version); }
public void GetBlockByTrxAsyncBlockNotInCacheLookupInRepository_IX() { uint256 txId = new uint256(3252); uint256 blockId = new uint256(2389704); Block block = new Block(); block.Header.Version = 1451; var dict = new Dictionary <object, object>(); dict.Add(blockId, block); var memoryCacheStub = new MemoryCacheStub(dict); this.indexStoreCache = new IndexStoreCache(this.indexRepository.Object, memoryCacheStub, DateTimeProvider.Default, this.loggerFactory); this.indexRepository.Setup(b => b.GetTrxBlockIdAsync(txId)) .Returns(Task.FromResult(blockId)); var result = this.indexStoreCache.GetBlockByTrxAsync(txId); result.Wait(); Assert.Equal(1451, result.Result.Header.Version); Assert.Equal(txId, memoryCacheStub.GetLastCreateCalled()); }