123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- using System;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.EntityFrameworkCore;
- using Abp;
- using Abp.Authorization.Users;
- using Abp.Events.Bus;
- using Abp.Events.Bus.Entities;
- using Abp.MultiTenancy;
- using Abp.Runtime.Session;
- using Abp.TestBase;
- using YGNT.Exam.Authorization.Users;
- using YGNT.Exam.EntityFrameworkCore;
- using YGNT.Exam.EntityFrameworkCore.Seed.Host;
- using YGNT.Exam.EntityFrameworkCore.Seed.Tenants;
- using YGNT.Exam.MultiTenancy;
- namespace YGNT.Exam.Tests
- {
- public abstract class ExamTestBase : AbpIntegratedTestBase<ExamTestModule>
- {
- protected ExamTestBase()
- {
- void NormalizeDbContext(ExamDbContext context)
- {
- context.EntityChangeEventHelper = NullEntityChangeEventHelper.Instance;
- context.EventBus = NullEventBus.Instance;
- context.SuppressAutoSetTenantId = true;
- }
- // Seed initial data for host
- AbpSession.TenantId = null;
- UsingDbContext(context =>
- {
- NormalizeDbContext(context);
- new InitialHostDbBuilder(context).Create();
- new DefaultTenantBuilder(context).Create();
- });
- // Seed initial data for default tenant
- AbpSession.TenantId = 1;
- UsingDbContext(context =>
- {
- NormalizeDbContext(context);
- new TenantRoleAndUserBuilder(context, 1).Create();
- });
- LoginAsDefaultTenantAdmin();
- }
- #region UsingDbContext
- protected IDisposable UsingTenantId(int? tenantId)
- {
- var previousTenantId = AbpSession.TenantId;
- AbpSession.TenantId = tenantId;
- return new DisposeAction(() => AbpSession.TenantId = previousTenantId);
- }
- protected void UsingDbContext(Action<ExamDbContext> action)
- {
- UsingDbContext(AbpSession.TenantId, action);
- }
- protected Task UsingDbContextAsync(Func<ExamDbContext, Task> action)
- {
- return UsingDbContextAsync(AbpSession.TenantId, action);
- }
- protected T UsingDbContext<T>(Func<ExamDbContext, T> func)
- {
- return UsingDbContext(AbpSession.TenantId, func);
- }
- protected Task<T> UsingDbContextAsync<T>(Func<ExamDbContext, Task<T>> func)
- {
- return UsingDbContextAsync(AbpSession.TenantId, func);
- }
- protected void UsingDbContext(int? tenantId, Action<ExamDbContext> action)
- {
- using (UsingTenantId(tenantId))
- {
- using (var context = LocalIocManager.Resolve<ExamDbContext>())
- {
- action(context);
- context.SaveChanges();
- }
- }
- }
- protected async Task UsingDbContextAsync(int? tenantId, Func<ExamDbContext, Task> action)
- {
- using (UsingTenantId(tenantId))
- {
- using (var context = LocalIocManager.Resolve<ExamDbContext>())
- {
- await action(context);
- await context.SaveChangesAsync();
- }
- }
- }
- protected T UsingDbContext<T>(int? tenantId, Func<ExamDbContext, T> func)
- {
- T result;
- using (UsingTenantId(tenantId))
- {
- using (var context = LocalIocManager.Resolve<ExamDbContext>())
- {
- result = func(context);
- context.SaveChanges();
- }
- }
- return result;
- }
- protected async Task<T> UsingDbContextAsync<T>(int? tenantId, Func<ExamDbContext, Task<T>> func)
- {
- T result;
- using (UsingTenantId(tenantId))
- {
- using (var context = LocalIocManager.Resolve<ExamDbContext>())
- {
- result = await func(context);
- await context.SaveChangesAsync();
- }
- }
- return result;
- }
- #endregion
- #region Login
- protected void LoginAsHostAdmin()
- {
- LoginAsHost(AbpUserBase.AdminUserName);
- }
- protected void LoginAsDefaultTenantAdmin()
- {
- LoginAsTenant(AbpTenantBase.DefaultTenantName, AbpUserBase.AdminUserName);
- }
- protected void LoginAsHost(string userName)
- {
- AbpSession.TenantId = null;
- var user =
- UsingDbContext(
- context =>
- context.Users.FirstOrDefault(u => u.TenantId == AbpSession.TenantId && u.UserName == userName));
- if (user == null)
- {
- throw new Exception("There is no user: " + userName + " for host.");
- }
- AbpSession.UserId = user.Id;
- }
- protected void LoginAsTenant(string tenancyName, string userName)
- {
- var tenant = UsingDbContext(context => context.Tenants.FirstOrDefault(t => t.TenancyName == tenancyName));
- if (tenant == null)
- {
- throw new Exception("There is no tenant: " + tenancyName);
- }
- AbpSession.TenantId = tenant.Id;
- var user =
- UsingDbContext(
- context =>
- context.Users.FirstOrDefault(u => u.TenantId == AbpSession.TenantId && u.UserName == userName));
- if (user == null)
- {
- throw new Exception("There is no user: " + userName + " for tenant: " + tenancyName);
- }
- AbpSession.UserId = user.Id;
- }
- #endregion
- /// <summary>
- /// Gets current user if <see cref="IAbpSession.UserId"/> is not null.
- /// Throws exception if it's null.
- /// </summary>
- protected async Task<User> GetCurrentUserAsync()
- {
- var userId = AbpSession.GetUserId();
- return await UsingDbContext(context => context.Users.SingleAsync(u => u.Id == userId));
- }
- /// <summary>
- /// Gets current tenant if <see cref="IAbpSession.TenantId"/> is not null.
- /// Throws exception if there is no current tenant.
- /// </summary>
- protected async Task<Tenant> GetCurrentTenantAsync()
- {
- var tenantId = AbpSession.GetTenantId();
- return await UsingDbContext(context => context.Tenants.SingleAsync(t => t.Id == tenantId));
- }
- }
- }
|