本文整理汇总了C#中SportsStore.WebUI.Controllers.ProductController.GetImage方法的典型用法代码示例。如果您正苦于以下问题:C# ProductController.GetImage方法的具体用法?C# ProductController.GetImage怎么用?C# ProductController.GetImage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SportsStore.WebUI.Controllers.ProductController
的用法示例。
在下文中一共展示了ProductController.GetImage方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Cannot_Retrieve_Image_Data_For_Invalid_Id
public void Cannot_Retrieve_Image_Data_For_Invalid_Id()
{
// Arrange
Product prod = new Product
{
ProductId = 2,
Name = "Test",
ImageData = new byte[] { },
ImageMimeType = "image/png"
};
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[] {
new Product { ProductId = 1, Name = "P1" },
new Product { ProductId = 2, Name = "P2" }
}.AsQueryable());
ProductController target = new ProductController(mock.Object);
// Act
ActionResult result = target.GetImage(100);
// Assert
Assert.IsNull(result);
}
示例2: Can_Retrieve_Image_Data
public void Can_Retrieve_Image_Data()
{
// Arrange - create a Product with image data
Product prod = new Product
{
ProductID = 2,
Name = "Test",
ImageData = new byte[] { },
ImageMimeType = "image/png"
};
// Arrange - create the mock repository
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[] {
new Product {ProductID = 1, Name = "P1"},
prod,
new Product {ProductID = 3, Name = "P3"}
}.AsQueryable());
// Arrange - create the controller
ProductController target = new ProductController(mock.Object);
// Act - call the GetImage action method
ActionResult result = target.GetImage(2);
// Assert
Assert.IsNotNull(result);
Assert.IsInstanceOfType(result, typeof(FileResult));
Assert.AreEqual(prod.ImageMimeType, ((FileResult)result).ContentType);
}
示例3: Can_Retrieve_Image_Data
public void Can_Retrieve_Image_Data()
{
Product product = new Product
{
ProductID = 2,
Name = "Test",
ImageData = new byte[] {},
ImageMimeType = "image/png"
};
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[]
{
new Product {ProductID = 1, Name = "P1"},
product,
new Product {ProductID = 1, Name = "P3"}
}.AsQueryable());
ProductController target = new ProductController(mock.Object);
ActionResult result = target.GetImage(2);
Assert.IsNotNull(result);
Assert.IsInstanceOfType(result, typeof(FileResult));
Assert.AreEqual(product.ImageMimeType,((FileResult)result).ContentType);
}
示例4: Cant_Retrieve_NonExistint_Image_Data
public void Cant_Retrieve_NonExistint_Image_Data()
{
// Arrange - create a Product with image data
Product prod = new Product
{
ProductID = 2,
Name = "Test",
ImageData = new byte[] { },
ImageMimeType = "image/png"
};
// Arrange - create the mock repository
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[] {
new Product {ProductID = 1, Name = "P1"},
prod,
new Product {ProductID = 3, Name = "P3"}
}.AsQueryable());
// Arrange - create the controller
ProductController target = new ProductController(mock.Object);
// Act - call the GetImage action method
ActionResult result = target.GetImage(3);
// Assert
Assert.IsNull(result);
}
示例5: ProductController_GetImage_CanRetrieveImageData
public void ProductController_GetImage_CanRetrieveImageData()
{
// Arrange
var prod = new Product
{
ProductID = 2,
Name = "Test",
ImageData = new byte[] { },
ImageMimeType = "image/png"
};
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[] {
new Product {ProductID = 1, Name = "P1", Category = "Cat1" },
prod,
new Product {ProductID = 3, Name = "P3", Category = "Cat1" },
}.AsQueryable());
var target = new ProductController(mock.Object);
// Act
var result = target.GetImage(2);
// Assert
Assert.IsNotNull(result);
Assert.IsInstanceOfType(result, typeof(FileResult));
Assert.AreEqual(prod.ImageMimeType, ((FileResult)result).ContentType);
}
示例6: Can_Retreive_Image_Data
public void Can_Retreive_Image_Data()
{
//Arrange - create a product with image data
Product prod = new Product
{
ProductID = 2,
Name = "test",
ImageData = new Byte[] { },
ImageMimeType = "image/png"
};
//Arrange -create a mock repository
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(p => p.Products).Returns(new Product[] {
new Product{ProductID=1,Name="P1"},
prod,
new Product{ProductID=3,Name="P3"}
}.AsQueryable());
ProductController controller = new ProductController(mock.Object);
ActionResult result = controller.GetImage(2);
//Assert
Assert.IsNotNull(result);
Assert.IsInstanceOfType(result, typeof(FileResult));
Assert.AreEqual(prod.ImageMimeType, ((FileResult)result).ContentType);
}
示例7: Cannot_Retrieve_Image_Data_For_Invalid_ID
public void Cannot_Retrieve_Image_Data_For_Invalid_ID()
{
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[] {
new Product { ProductID = 1, Name = "P1"},
new Product { ProductID=2, Name = "P2"}
}.AsQueryable());
ProductController target = new ProductController(mock.Object);
ActionResult result = target.GetImage(100);
Assert.IsNull(result);
}
示例8: Cannot_Retrieve_Image_Data_For_Invalid_ID
public void Cannot_Retrieve_Image_Data_For_Invalid_ID()
{
// Arrange - create the mock repository
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[] {
new Product {ProductID = 1, Name = "P1"},
new Product {ProductID = 2, Name = "P2"}
}.AsQueryable());
// Arrange - create the controller
ProductController target = new ProductController(mock.Object);
// Act - call the GetImage action method
ActionResult result = target.GetImage(100);
// Assert
Assert.IsNull(result);
}
示例9: ProductController_GetImage_CannotRetrieveImageDataForInvalidID
public void ProductController_GetImage_CannotRetrieveImageDataForInvalidID()
{
// Arrange
Mock<IProductRepository> mock = new Mock<IProductRepository>();
mock.Setup(m => m.Products).Returns(new Product[] {
new Product {ProductID = 1, Name = "P1", Category = "Cat1" },
new Product {ProductID = 3, Name = "P3", Category = "Cat1" },
}.AsQueryable());
var target = new ProductController(mock.Object);
// Act
var result = target.GetImage(100);
// Assert
Assert.IsNull(result);
}
示例10: Cannot_Retrieve_Image_Data_For_Invalid_ID
public void Cannot_Retrieve_Image_Data_For_Invalid_ID()
{
// arrange, create mock repo
Mock<IProductRepository> mock = new Mock<IProductRepository>();
// create products
mock.Setup(m => m.Products).Returns(new Product[]
{
new Product() {ProductID = 1, Name = "P1"},
new Product() {ProductID = 2, Name = "P2"}
}.AsQueryable);
// create controller
ProductController controller = new ProductController(mock.Object);
var result = controller.GetImage(3);
Assert.IsNull(result);
}
示例11: Can_Retrieve_Image_Data
public void Can_Retrieve_Image_Data()
{
Mock<IProductRepository> mock = new Mock<IProductRepository>();
Product prod = new Product() {ProductID = 3, Name = "P3", ImageData = new byte[]{}, ImageMimeType = "image/png"};
mock.Setup(m => m.Products).Returns(new Product[]
{
new Product() {ProductID = 1, Name = "P1"},
prod,
new Product() {ProductID = 2, Name = "P2"}
}.AsQueryable());
// create controller
ProductController controller = new ProductController(mock.Object);
var result = controller.GetImage(3);
// assert
Assert.IsNotNull(result);
Assert.IsInstanceOfType(result, typeof(FileResult));
Assert.AreEqual("image/png", ((FileResult)result).ContentType);
}