mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
using System;
|
|
using System.Linq;
|
|
using Volo.Abp.Domain.Entities;
|
|
using Volo.Abp.Identity.EntityFrameworkCore;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Volo.Abp.Identity
|
|
{
|
|
public abstract class AbpIdentityExtendedTestBase<TStartupModule> : AbpIdentityTestBase<TStartupModule>
|
|
where TStartupModule : IAbpModule
|
|
{
|
|
protected virtual IdentityUser GetUser(string userName)
|
|
{
|
|
var user = UsingDbContext(context => context.Users.FirstOrDefault(u => u.UserName == userName));
|
|
if (user == null)
|
|
{
|
|
throw new EntityNotFoundException();
|
|
}
|
|
|
|
return user;
|
|
}
|
|
|
|
protected virtual IdentityUser FindUser(string userName)
|
|
{
|
|
return UsingDbContext(context => context.Users.FirstOrDefault(u => u.UserName == userName));
|
|
}
|
|
|
|
protected virtual void UsingDbContext(Action<IIdentityDbContext> action)
|
|
{
|
|
using (var dbContext = GetRequiredService<IIdentityDbContext>())
|
|
{
|
|
action.Invoke(dbContext);
|
|
}
|
|
}
|
|
|
|
protected virtual T UsingDbContext<T>(Func<IIdentityDbContext, T> action)
|
|
{
|
|
using (var dbContext = GetRequiredService<IIdentityDbContext>())
|
|
{
|
|
return action.Invoke(dbContext);
|
|
}
|
|
}
|
|
}
|
|
} |