示例#1
0
        public void Should_Success_Get_Xls_Data()
        {
            var mockFacade = new Mock <IGarmentFlowDetailMaterialReport>();

            mockFacade.Setup(x => x.GenerateExcel(It.IsAny <string>(), It.IsAny <DateTimeOffset>(), It.IsAny <DateTimeOffset>(), It.IsAny <int>()))
            .Returns(new MemoryStream());

            var mockMapper = new Mock <IMapper>();


            var user   = new Mock <ClaimsPrincipal>();
            var claims = new Claim[]
            {
                new Claim("username", "unittestusername")
            };

            user.Setup(u => u.Claims).Returns(claims);
            GarmentFlowDetailMaterialController controller = GetController(mockFacade, null, mockMapper);

            controller.ControllerContext = new ControllerContext()
            {
                HttpContext = new DefaultHttpContext()
                {
                    User = user.Object
                }
            };

            controller.ControllerContext.HttpContext.Request.Headers["x-timezone-offset"] = "0";

            var response = controller.GetXls(It.IsAny <string>(), It.IsAny <DateTimeOffset>(), It.IsAny <DateTimeOffset>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <string>());

            Assert.Equal("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", response.GetType().GetProperty("ContentType").GetValue(response, null));
        }
示例#2
0
        public void Should_Fail_Get_Xls_Data()
        {
            var mockFacade = new Mock <IGarmentFlowDetailMaterialReport>();

            var mockMapper = new Mock <IMapper>();


            GarmentFlowDetailMaterialController controller = GetController(mockFacade, null, null);

            var response = controller.GetXls(It.IsAny <string>(), It.IsAny <DateTimeOffset>(), It.IsAny <DateTimeOffset>(), It.IsAny <int>(), It.IsAny <int>(), It.IsAny <string>());

            Assert.Equal((int)HttpStatusCode.InternalServerError, GetStatusCode(response));
        }