You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.1 KiB
C#
125 lines
4.1 KiB
C#
|
6 years ago
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||
|
|
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using EntityFrameworkCore.Jet.FunctionalTests.TestUtilities;
|
||
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
using Microsoft.EntityFrameworkCore.TestUtilities;
|
||
|
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
using Xunit;
|
||
|
|
|
||
|
|
// ReSharper disable InconsistentNaming
|
||
|
|
namespace EntityFrameworkCore.Jet.FunctionalTests
|
||
|
|
{
|
||
|
|
public class SequentialGuidEndToEndTest : IDisposable
|
||
|
|
{
|
||
|
|
[ConditionalFact]
|
||
|
|
public async Task Can_use_sequential_GUID_end_to_end_async()
|
||
|
|
{
|
||
|
|
var serviceProvider = new ServiceCollection()
|
||
|
|
.AddEntityFrameworkJet()
|
||
|
|
.BuildServiceProvider();
|
||
|
|
|
||
|
|
using (var context = new BronieContext(serviceProvider, TestStore.Name))
|
||
|
|
{
|
||
|
|
context.Database.EnsureCreatedResiliently();
|
||
|
|
|
||
|
|
for (var i = 0; i < 50; i++)
|
||
|
|
{
|
||
|
|
context.Add(
|
||
|
|
new Pegasus { Name = "Rainbow Dash " + i });
|
||
|
|
}
|
||
|
|
|
||
|
|
await context.SaveChangesAsync();
|
||
|
|
}
|
||
|
|
|
||
|
|
using (var context = new BronieContext(serviceProvider, TestStore.Name))
|
||
|
|
{
|
||
|
|
var pegasuses = await context.Pegasuses.OrderBy(e => e.Id).ToListAsync();
|
||
|
|
|
||
|
|
for (var i = 0; i < 50; i++)
|
||
|
|
{
|
||
|
|
Assert.Equal("Rainbow Dash " + i, pegasuses[i].Name);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
[ConditionalFact]
|
||
|
|
public async Task Can_use_explicit_values()
|
||
|
|
{
|
||
|
|
var serviceProvider = new ServiceCollection()
|
||
|
|
.AddEntityFrameworkJet()
|
||
|
|
.BuildServiceProvider();
|
||
|
|
|
||
|
|
var guids = new List<Guid>();
|
||
|
|
|
||
|
|
using (var context = new BronieContext(serviceProvider, TestStore.Name))
|
||
|
|
{
|
||
|
|
context.Database.EnsureCreatedResiliently();
|
||
|
|
|
||
|
|
for (var i = 0; i < 50; i++)
|
||
|
|
{
|
||
|
|
guids.Add(
|
||
|
|
context.Add(
|
||
|
|
new Pegasus
|
||
|
|
{
|
||
|
|
Name = "Rainbow Dash " + i,
|
||
|
|
Index = i,
|
||
|
|
Id = Guid.NewGuid()
|
||
|
|
}).Entity.Id);
|
||
|
|
}
|
||
|
|
|
||
|
|
await context.SaveChangesAsync();
|
||
|
|
}
|
||
|
|
|
||
|
|
using (var context = new BronieContext(serviceProvider, TestStore.Name))
|
||
|
|
{
|
||
|
|
var pegasuses = await context.Pegasuses.OrderBy(e => e.Index).ToListAsync();
|
||
|
|
|
||
|
|
for (var i = 0; i < 50; i++)
|
||
|
|
{
|
||
|
|
Assert.Equal("Rainbow Dash " + i, pegasuses[i].Name);
|
||
|
|
Assert.Equal(guids[i], pegasuses[i].Id);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private class BronieContext : DbContext
|
||
|
|
{
|
||
|
|
private readonly IServiceProvider _serviceProvider;
|
||
|
|
private readonly string _databaseName;
|
||
|
|
|
||
|
|
public BronieContext(IServiceProvider serviceProvider, string databaseName)
|
||
|
|
{
|
||
|
|
_serviceProvider = serviceProvider;
|
||
|
|
_databaseName = databaseName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public DbSet<Pegasus> Pegasuses { get; set; }
|
||
|
|
|
||
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
||
|
|
=> optionsBuilder
|
||
|
|
.UseJet(JetTestStore.CreateConnectionString(_databaseName), b => b.ApplyConfiguration())
|
||
|
|
.UseInternalServiceProvider(_serviceProvider);
|
||
|
|
}
|
||
|
|
|
||
|
|
private class Pegasus
|
||
|
|
{
|
||
|
|
public Guid Id { get; set; }
|
||
|
|
public string Name { get; set; }
|
||
|
|
public int Index { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
public SequentialGuidEndToEndTest()
|
||
|
|
{
|
||
|
|
TestStore = JetTestStore.CreateInitialized("SequentialGuidEndToEndTest");
|
||
|
|
}
|
||
|
|
|
||
|
|
protected JetTestStore TestStore { get; }
|
||
|
|
|
||
|
|
public virtual void Dispose() => TestStore.Dispose();
|
||
|
|
}
|
||
|
|
}
|