Esempio n. 1
0
        public void TestOnAtmSendRequest()
        {
            var mockCoreComm = MockRepository.GenerateMock <IScsServiceClient <ICoreNodeRequestService> >();

            mockCoreComm.Expect(x => x.ServiceProxy.RequestTransaction(Arg <TranTritonNodeRequestDto> .Is.Anything)).Return(new TranCoreNodeResponseDto {
                ResponseCode = "00", Stan = 1
            });

            IAtmCoreService atmSvc = new AtmCoreService(new CoreCommunicationService(mockCoreComm));
            const string    str    = "<STX>00000000td2W0       <FS>S9111111       <FS>11<FS>4892<FS>4089670000392726=17112011000017980000<FS>00008900<FS>00000200<FS>76728398F76ED27D<FS><FS><FS>VA6.00.12WV02.70.10 V06.01.12 0  0T  00 100     00000302K0288000000002K028800000000000000000000000000000000000000<FS><FS><FS><ETX>"; // transaction

            byte[] bytes = _atmRequestHelper.BuildMessageBytesForAtmRequest(str);                                                                                                                                                                                                                                                     // Bulid byte

            atmSvc.Connect(DateTime.Now, "", "");
            Assert.IsFalse(!atmSvc.IsConnected);
            Assert.IsFalse(atmSvc.RetryResponse);
            var res = atmSvc.GetAtmResponse();

            Assert.AreEqual(res.RawBytes, new byte[] { _atmRequestHelper.Enq });
            atmSvc.ResponseSent();
            Assert.IsFalse(!atmSvc.IsConnected);
            atmSvc.HandleIncomingMessage(new AtmRawMessage(bytes));
            res = atmSvc.GetAtmResponse();
            Assert.IsNotNull(res.RawBytes);
            atmSvc.ResponseSent();
            Assert.IsFalse(!atmSvc.IsConnected);
            atmSvc.HandleIncomingMessage(new AtmRawMessage(new byte[] { _atmRequestHelper.Ack }));
            res = atmSvc.GetAtmResponse();
            Assert.IsNotNull(res.RawBytes);
            Assert.AreEqual(res.RawBytes, new byte[] { _atmRequestHelper.Eot });
            atmSvc.ResponseSent();
            Assert.IsFalse(atmSvc.IsConnected);
        }
Esempio n. 2
0
        public void TestOnAtmConnect()
        {
            var mockCoreComm = MockRepository.GenerateMock <IScsServiceClient <ICoreNodeRequestService> >();

            mockCoreComm.Expect(x => x.ServiceProxy.RequestTransaction(null)).Return(new TranCoreNodeResponseDto());

            IAtmCoreService atmSvc = new AtmCoreService(new CoreCommunicationService(mockCoreComm));

            Assert.IsFalse(atmSvc.IsConnected);
            atmSvc.Connect(DateTime.Now, "", "");
            Assert.IsFalse(!atmSvc.IsConnected);
            Assert.IsFalse(atmSvc.RetryResponse);
            var res = atmSvc.GetAtmResponse();

            Assert.AreEqual(res.RawBytes, new byte[] { _atmRequestHelper.Enq });
            atmSvc.ResponseSent();
            Assert.IsFalse(!atmSvc.IsConnected);
        }