45 lines
1.7 KiB
C#
45 lines
1.7 KiB
C#
using Microsoft.eShopWeb.Infrastructure.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.Linq;
|
|
using Microsoft.eShopWeb.UnitTests.Builders;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopWeb.IntegrationTests.Repositories.OrderRepositoryTests
|
|
{
|
|
public class GetById
|
|
{
|
|
private readonly CatalogContext _catalogContext;
|
|
private readonly OrderRepository _orderRepository;
|
|
private OrderBuilder OrderBuilder { get; } = new OrderBuilder();
|
|
private readonly ITestOutputHelper _output;
|
|
public GetById(ITestOutputHelper output)
|
|
{
|
|
_output = output;
|
|
var dbOptions = new DbContextOptionsBuilder<CatalogContext>()
|
|
.UseInMemoryDatabase(databaseName: "TestCatalog")
|
|
.Options;
|
|
_catalogContext = new CatalogContext(dbOptions);
|
|
_orderRepository = new OrderRepository(_catalogContext);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GetsExistingOrder()
|
|
{
|
|
var existingOrder = OrderBuilder.WithDefaultValues();
|
|
_catalogContext.Orders.Add(existingOrder);
|
|
_catalogContext.SaveChanges();
|
|
int orderId = existingOrder.Id;
|
|
_output.WriteLine($"OrderId: {orderId}");
|
|
|
|
var orderFromRepo = await _orderRepository.GetByIdAsync(orderId);
|
|
Assert.Equal(OrderBuilder.TestBuyerId, orderFromRepo.BuyerId);
|
|
|
|
// Note: Using InMemoryDatabase OrderItems is available. Will be null if using SQL DB.
|
|
var firstItem = orderFromRepo.OrderItems.FirstOrDefault();
|
|
Assert.Equal(OrderBuilder.TestUnits, firstItem.Units);
|
|
}
|
|
}
|
|
}
|