mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
86 lines
2.3 KiB
C#
86 lines
2.3 KiB
C#
![]() |
using System;
|
|||
|
using NUnit.Framework;
|
|||
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
using OpenAuth.Repository.Domain;
|
|||
|
using OpenAuth.Repository.Interface;
|
|||
|
|
|||
|
namespace OpenAuth.Repository.Test
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 测试事务
|
|||
|
/// </summary>
|
|||
|
class TestTransaction : TestBase
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 测试事务正常提交
|
|||
|
/// </summary>
|
|||
|
[Test]
|
|||
|
public void NormalSubmit()
|
|||
|
{
|
|||
|
var unitWork = _autofacServiceProvider.GetService<IUnitWork>();
|
|||
|
unitWork.ExecuteWithTransaction(() =>
|
|||
|
{
|
|||
|
var account = "user_" + DateTime.Now.ToString("yyyy_MM_dd HH:mm:ss");
|
|||
|
|
|||
|
AddAndUpdate(account, unitWork);
|
|||
|
});
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 测试事务回滚
|
|||
|
/// </summary>
|
|||
|
[Test]
|
|||
|
public void SubmitWithRollback()
|
|||
|
{
|
|||
|
var unitWork = _autofacServiceProvider.GetService<IUnitWork>();
|
|||
|
var account = "user_" + DateTime.Now.ToString("yyyy_MM_dd HH:mm:ss");
|
|||
|
try
|
|||
|
{
|
|||
|
unitWork.ExecuteWithTransaction(() =>
|
|||
|
{
|
|||
|
AddAndUpdate(account, unitWork);
|
|||
|
|
|||
|
throw new Exception("模拟异常");
|
|||
|
});
|
|||
|
}
|
|||
|
catch (Exception e)
|
|||
|
{
|
|||
|
Console.WriteLine(e);
|
|||
|
}
|
|||
|
|
|||
|
//如果没有插入成功,表示事务发生了回滚
|
|||
|
Assert.IsFalse(unitWork.Any<User>( u=>u.Id == account));
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 测试添加,单个修改,Z.EntityFramework.Plus条件修改
|
|||
|
/// </summary>
|
|||
|
private void AddAndUpdate(string account, IUnitWork unitWork)
|
|||
|
{
|
|||
|
var user = new User
|
|||
|
{
|
|||
|
Id = account,
|
|||
|
Account = account,
|
|||
|
Name = account,
|
|||
|
};
|
|||
|
|
|||
|
unitWork.Add(user);
|
|||
|
|
|||
|
unitWork.Save();
|
|||
|
|
|||
|
|
|||
|
user.Account = "Trans_" + user.Account;
|
|||
|
user.Name = "Trans_" + user.Name;
|
|||
|
unitWork.Update(user);
|
|||
|
|
|||
|
unitWork.Save();
|
|||
|
|
|||
|
unitWork.Update<User>(u => u.Id == account, u => new User
|
|||
|
{
|
|||
|
Account = "Trans2_" + user.Account
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|