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.
69 lines
2.4 KiB
C#
69 lines
2.4 KiB
C#
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Data.Common;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Diagnostics;
|
|
using Microsoft.EntityFrameworkCore.Storage;
|
|
|
|
namespace EntityFrameworkCore.Jet.FunctionalTests.TestUtilities
|
|
{
|
|
public class TestRelationalTransactionFactory : IRelationalTransactionFactory
|
|
{
|
|
public TestRelationalTransactionFactory(RelationalTransactionFactoryDependencies dependencies)
|
|
{
|
|
Dependencies = dependencies;
|
|
}
|
|
|
|
protected virtual RelationalTransactionFactoryDependencies Dependencies { get; }
|
|
|
|
public RelationalTransaction Create(
|
|
IRelationalConnection connection,
|
|
DbTransaction transaction,
|
|
Guid transactionId,
|
|
IDiagnosticsLogger<DbLoggerCategory.Database.Transaction> logger,
|
|
bool transactionOwned)
|
|
=> new TestRelationalTransaction(connection, transaction, logger, transactionOwned, Dependencies.SqlGenerationHelper);
|
|
}
|
|
|
|
public class TestRelationalTransaction : RelationalTransaction
|
|
{
|
|
private readonly TestJetConnection _testConnection;
|
|
|
|
public TestRelationalTransaction(
|
|
IRelationalConnection connection,
|
|
DbTransaction transaction,
|
|
IDiagnosticsLogger<DbLoggerCategory.Database.Transaction> logger,
|
|
bool transactionOwned,
|
|
ISqlGenerationHelper sqlGenerationHelper)
|
|
: base(connection, transaction, new Guid(), logger, transactionOwned, sqlGenerationHelper)
|
|
{
|
|
_testConnection = (TestJetConnection)connection;
|
|
}
|
|
|
|
public override void Commit()
|
|
{
|
|
if (_testConnection.CommitFailures.Count > 0)
|
|
{
|
|
var fail = _testConnection.CommitFailures.Dequeue();
|
|
if (fail.HasValue)
|
|
{
|
|
if (fail.Value)
|
|
{
|
|
this.GetDbTransaction().Rollback();
|
|
}
|
|
else
|
|
{
|
|
this.GetDbTransaction().Commit();
|
|
}
|
|
|
|
_testConnection.DbConnection.Close();
|
|
throw OleDbExceptionFactory.CreateOleDbException(_testConnection.ErrorNumber, _testConnection.ConnectionId);
|
|
}
|
|
}
|
|
|
|
base.Commit();
|
|
}
|
|
}
|
|
}
|