123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- using System;
- using System.Linq;
- using System.Net;
- using System.Net.Http;
- using System.Net.Http.Headers;
- using System.Text;
- using System.Threading.Tasks;
- using Abp.AspNetCore.TestBase;
- using Abp.Authorization.Users;
- using Abp.Extensions;
- using Abp.Json;
- using Abp.MultiTenancy;
- using Abp.Web.Models;
- using YGNT.Exam.EntityFrameworkCore;
- using YGNT.Exam.Models.TokenAuth;
- using YGNT.Exam.Web.Startup;
- using AngleSharp.Html.Dom;
- using AngleSharp.Html.Parser;
- using Microsoft.AspNetCore.Hosting;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Serialization;
- using Shouldly;
- namespace YGNT.Exam.Web.Tests
- {
- public abstract class ExamWebTestBase : AbpAspNetCoreIntegratedTestBase<Startup>
- {
- protected static readonly Lazy<string> ContentRootFolder;
- static ExamWebTestBase()
- {
- ContentRootFolder = new Lazy<string>(WebContentDirectoryFinder.CalculateContentRootFolder, true);
- }
-
- protected override IWebHostBuilder CreateWebHostBuilder()
- {
- return base
- .CreateWebHostBuilder()
- .UseContentRoot(ContentRootFolder.Value)
- .UseSetting(WebHostDefaults.ApplicationKey, typeof(ExamWebMvcModule).Assembly.FullName);
- }
- #region Get response
- protected async Task<T> GetResponseAsObjectAsync<T>(string url,
- HttpStatusCode expectedStatusCode = HttpStatusCode.OK)
- {
- var strResponse = await GetResponseAsStringAsync(url, expectedStatusCode);
- return JsonConvert.DeserializeObject<T>(strResponse, new JsonSerializerSettings
- {
- ContractResolver = new CamelCasePropertyNamesContractResolver()
- });
- }
- protected async Task<string> GetResponseAsStringAsync(string url,
- HttpStatusCode expectedStatusCode = HttpStatusCode.OK)
- {
- var response = await GetResponseAsync(url, expectedStatusCode);
- return await response.Content.ReadAsStringAsync();
- }
- protected async Task<HttpResponseMessage> GetResponseAsync(string url,
- HttpStatusCode expectedStatusCode = HttpStatusCode.OK)
- {
- var response = await Client.GetAsync(url);
- response.StatusCode.ShouldBe(expectedStatusCode);
- return response;
- }
- #endregion
-
- #region Authenticate
-
- /// <summary>
- /// /api/TokenAuth/Authenticate
- /// TokenAuthController
- /// </summary>
- /// <param name="tenancyName"></param>
- /// <param name="input"></param>
- /// <returns></returns>
- protected async Task AuthenticateAsync(string tenancyName, AuthenticateModel input)
- {
- if (tenancyName.IsNullOrWhiteSpace())
- {
- var tenant = UsingDbContext(context => context.Tenants.FirstOrDefault(t => t.TenancyName == tenancyName));
- if (tenant != null)
- {
- AbpSession.TenantId = tenant.Id;
- Client.DefaultRequestHeaders.Add("Abp.TenantId", tenant.Id.ToString()); //Set TenantId
- }
- }
- var response = await Client.PostAsync("/api/TokenAuth/Authenticate",
- new StringContent(input.ToJsonString(), Encoding.UTF8, "application/json"));
- response.StatusCode.ShouldBe(HttpStatusCode.OK);
- var result =
- JsonConvert.DeserializeObject<AjaxResponse<AuthenticateResultModel>>(
- await response.Content.ReadAsStringAsync());
- Client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", result.Result.AccessToken);
-
- AbpSession.UserId = result.Result.UserId;
- }
-
- #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
- #region UsingDbContext
- protected void UsingDbContext(Action<ExamDbContext> action)
- {
- using (var context = IocManager.Resolve<ExamDbContext>())
- {
- action(context);
- context.SaveChanges();
- }
- }
- protected T UsingDbContext<T>(Func<ExamDbContext, T> func)
- {
- T result;
- using (var context = IocManager.Resolve<ExamDbContext>())
- {
- result = func(context);
- context.SaveChanges();
- }
- return result;
- }
- protected async Task UsingDbContextAsync(Func<ExamDbContext, Task> action)
- {
- using (var context = IocManager.Resolve<ExamDbContext>())
- {
- await action(context);
- await context.SaveChangesAsync(true);
- }
- }
- protected async Task<T> UsingDbContextAsync<T>(Func<ExamDbContext, Task<T>> func)
- {
- T result;
- using (var context = IocManager.Resolve<ExamDbContext>())
- {
- result = await func(context);
- await context.SaveChangesAsync(true);
- }
- return result;
- }
- #endregion
- #region ParseHtml
- protected IHtmlDocument ParseHtml(string htmlString)
- {
- return new HtmlParser().ParseDocument(htmlString);
- }
- #endregion
- }
- }
|