Make testing name scheme consistent (#395)
* Updating CahceHelperTests names * Updating OrdersTests names * Removing tests for "Include" functionality as it lives in a NuGet Package now * Updating Integration Test anems
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
|
||||
using Microsoft.eShopWeb.Infrastructure.Data;
|
||||
using Microsoft.eShopWeb.UnitTests.Builders;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.eShopWeb.IntegrationTests.Repositories.OrderRepositoryTests
|
||||
{
|
||||
public class GetByIdWithItemsAsync
|
||||
{
|
||||
private readonly CatalogContext _catalogContext;
|
||||
private readonly OrderRepository _orderRepository;
|
||||
private OrderBuilder OrderBuilder { get; } = new OrderBuilder();
|
||||
|
||||
public GetByIdWithItemsAsync()
|
||||
{
|
||||
var dbOptions = new DbContextOptionsBuilder<CatalogContext>()
|
||||
.UseInMemoryDatabase(databaseName: "TestCatalog")
|
||||
.Options;
|
||||
_catalogContext = new CatalogContext(dbOptions);
|
||||
_orderRepository = new OrderRepository(_catalogContext);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task GetOrderAndItemsByOrderIdWhenMultipleOrdersPresent()
|
||||
{
|
||||
//Arrange
|
||||
var itemOneUnitPrice = 5.50m;
|
||||
var itemOneUnits = 2;
|
||||
var itemTwoUnitPrice = 7.50m;
|
||||
var itemTwoUnits = 5;
|
||||
|
||||
var firstOrder = OrderBuilder.WithDefaultValues();
|
||||
_catalogContext.Orders.Add(firstOrder);
|
||||
int firstOrderId = firstOrder.Id;
|
||||
|
||||
var secondOrderItems = new List<OrderItem>();
|
||||
secondOrderItems.Add(new OrderItem(OrderBuilder.TestCatalogItemOrdered, itemOneUnitPrice, itemOneUnits));
|
||||
secondOrderItems.Add(new OrderItem(OrderBuilder.TestCatalogItemOrdered, itemTwoUnitPrice, itemTwoUnits));
|
||||
var secondOrder = OrderBuilder.WithItems(secondOrderItems);
|
||||
_catalogContext.Orders.Add(secondOrder);
|
||||
int secondOrderId = secondOrder.Id;
|
||||
|
||||
_catalogContext.SaveChanges();
|
||||
|
||||
//Act
|
||||
var orderFromRepo = await _orderRepository.GetByIdWithItemsAsync(secondOrderId);
|
||||
|
||||
//Assert
|
||||
Assert.Equal(secondOrderId, orderFromRepo.Id);
|
||||
Assert.Equal(secondOrder.OrderItems.Count, orderFromRepo.OrderItems.Count);
|
||||
Assert.Equal(1, orderFromRepo.OrderItems.Count(x => x.UnitPrice == itemOneUnitPrice));
|
||||
Assert.Equal(1, orderFromRepo.OrderItems.Count(x => x.UnitPrice == itemTwoUnitPrice));
|
||||
Assert.Equal(itemOneUnits, orderFromRepo.OrderItems.SingleOrDefault(x => x.UnitPrice == itemOneUnitPrice).Units);
|
||||
Assert.Equal(itemTwoUnits, orderFromRepo.OrderItems.SingleOrDefault(x => x.UnitPrice == itemTwoUnitPrice).Units);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user