public async Task Should_Success_GetLocalPurchasingBookReport_Pdf_ForeignCurrency() { var mockFacade = new Mock <ILocalPurchasingBookReportFacade>(); //mockFacade.Setup(facade => facade.GetReport(It.IsAny<string>(), It.IsAny<int>(), It.IsAny<int>(), It.IsAny<DateTime>(), It.IsAny<DateTime>(), It.IsAny<bool>(), It.IsAny<int>())).ReturnsAsync(new LocalPurchasingBookReportViewModel() //{ // CategorySummaries = new List<Summary>() { new Summary() }, // CategorySummaryTotal = 1, // CurrencySummaries = new List<Summary>() { new Summary() }, // GrandTotal = 1, // Reports = new List<PurchasingReport>() { new PurchasingReport() } //}); mockFacade.Setup(facade => facade.GetReportV2(It.IsAny <string>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <DateTime>(), It.IsAny <DateTime>(), It.IsAny <bool>(), It.IsAny <int>())).ReturnsAsync(new LocalPurchasingBookReportViewModel() { CategorySummaries = new List <Summary>() { new Summary { AccountingLayoutIndex = 0, Category = "test", CurrencyCode = "test", SubTotal = 10, SubTotalCurrency = 10 } }, CategorySummaryTotal = 1, CurrencySummaries = new List <Summary>() { new Summary { AccountingLayoutIndex = 0, Category = "test", CurrencyCode = "test", SubTotal = 10, SubTotalCurrency = 10 } }, GrandTotal = 1, Reports = new List <PurchasingReport>() { new PurchasingReport { URNNo = "test", CategoryCode = "test", CategoryName = "test", CurrencyCode = "test" } } }); var controller = new LocalPurchasingBookReportController(mockFacade.Object) { ControllerContext = new ControllerContext() { HttpContext = new DefaultHttpContext() { } } }; controller.ControllerContext.HttpContext.Request.Headers["x-timezone-offset"] = "1"; var response = await controller.GetPdf(It.IsAny <string>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <DateTime>(), It.IsAny <DateTime>(), true, It.IsAny <int>()); Assert.NotNull(response); }
public async Task Should_Failed_GetLocalPurchasingBookReport_Pdf_WithException() { var mockFacade = new Mock <ILocalPurchasingBookReportFacade>(); mockFacade.Setup(facade => facade.GetReportV2(It.IsAny <string>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <DateTime>(), It.IsAny <DateTime>(), It.IsAny <bool>(), It.IsAny <int>())).ThrowsAsync(new Exception()); var controller = new LocalPurchasingBookReportController(mockFacade.Object) { ControllerContext = new ControllerContext() { HttpContext = new DefaultHttpContext() { } } }; controller.ControllerContext.HttpContext.Request.Headers["x-timezone-offset"] = "1"; var response = await controller.GetPdf(It.IsAny <string>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <DateTime>(), It.IsAny <DateTime>(), It.IsAny <bool>(), It.IsAny <int>()); Assert.Equal((int)HttpStatusCode.InternalServerError, GetStatusCode(response)); }
public async Task Should_Success_GetLocalPurchasingBookReport_Pdf() { var mockFacade = new Mock <ILocalPurchasingBookReportFacade>(); mockFacade.Setup(facade => facade.GetReport(It.IsAny <string>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <DateTime>(), It.IsAny <DateTime>(), It.IsAny <bool>(), It.IsAny <int>())).ReturnsAsync(new LocalPurchasingBookReportViewModel() { CategorySummaries = new List <Summary>() { new Summary() }, CategorySummaryTotal = 1, CurrencySummaries = new List <Summary>() { new Summary() }, GrandTotal = 1, Reports = new List <PurchasingReport>() { new PurchasingReport() } }); var controller = new LocalPurchasingBookReportController(mockFacade.Object) { ControllerContext = new ControllerContext() { HttpContext = new DefaultHttpContext() { } } }; controller.ControllerContext.HttpContext.Request.Headers["x-timezone-offset"] = "1"; var response = await controller.GetPdf(It.IsAny <string>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <DateTime>(), It.IsAny <DateTime>(), false, It.IsAny <int>()); Assert.NotNull(response); }