Files
tiku-backend.net/Tiku.IntegrationTests/Api/DirectContentEndpointTests.cs

251 lines
11 KiB
C#

using System.Net;
using System.Net.Http.Json;
using System.Text.Json;
using Microsoft.Extensions.DependencyInjection;
using Tiku.Api.Contracts;
using Tiku.Domain.Common;
using Tiku.Domain.Content;
using Tiku.Domain.Identity;
using Tiku.Domain.QuestionBanks;
using Tiku.Domain.Tenancy;
using Tiku.Infrastructure.Auth;
using Tiku.Infrastructure.Persistence;
namespace Tiku.IntegrationTests.Api;
public sealed class DirectContentEndpointTests
{
[Fact]
public async Task Tenant_admin_can_create_question_and_sync_primary_collection()
{
await using var factory = new ApiTestFactory();
var seed = await SeedAdminAsync(factory);
var collectionId = Guid.NewGuid();
await factory.SeedAsync(new QuestionCollection
{
Id = collectionId,
TenantId = seed.TenantId,
Name = "直接迁移题集",
CollectionType = QuestionCollectionType.Manual,
SourceType = QuestionCollectionSourceType.ManualQuestions
});
using var client = factory.CreateClient();
await LoginAsync(client, seed);
using var response = await client.PostAsJsonAsync(
"/api/tenant-content/questions",
new DirectQuestionWriteDto
{
PrimaryCollectionId = collectionId,
Type = "choice",
Content = "1 + 1 = ?",
Options = JsonSerializer.SerializeToElement(new[] { "1", "2" }),
CorrectOptionIndex = 1,
Tags = JsonSerializer.SerializeToElement(new[] { "math" })
});
var json = await ReadJsonAsync(response);
var questionId = json.RootElement.GetProperty("item").GetProperty("id").GetGuid();
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
Assert.Equal(collectionId, json.RootElement.GetProperty("item").GetProperty("primaryCollectionId").GetGuid());
using var scope = factory.Services.CreateScope();
var dbContext = scope.ServiceProvider.GetRequiredService<TikuDbContext>();
Assert.Contains(dbContext.QuestionCollectionItems, item => item.CollectionId == collectionId && item.QuestionId == questionId);
Assert.Equal(1, dbContext.QuestionCollections.Single(item => item.Id == collectionId).QuestionCount);
}
[Fact]
public async Task Tenant_admin_can_upsert_vocabulary_handbook_video_and_operations_content()
{
await using var factory = new ApiTestFactory();
var seed = await SeedAdminAsync(factory);
using var client = factory.CreateClient();
await LoginAsync(client, seed);
var unitResponse = await client.PutAsJsonAsync(
"/api/tenant-content/vocabulary-units",
new DirectVocabularyUnitDto { Name = "Unit 1", WordCount = 1 });
var unitJson = await ReadJsonAsync(unitResponse);
var unitId = unitJson.RootElement.GetProperty("item").GetProperty("id").GetGuid();
var wordResponse = await client.PutAsJsonAsync(
"/api/tenant-content/vocabulary-words",
new DirectVocabularyWordDto { UnitId = unitId, Word = "scale", Meaning = "规模" });
var subjectResponse = await client.PutAsJsonAsync(
"/api/tenant-content/handbook-subjects",
new DirectHandbookSubjectDto { Name = "文化常识", Type = "Common" });
var subjectJson = await ReadJsonAsync(subjectResponse);
var subjectId = subjectJson.RootElement.GetProperty("item").GetProperty("id").GetGuid();
var chapterResponse = await client.PutAsJsonAsync(
"/api/tenant-content/handbook-chapters",
new DirectHandbookChapterDto { SubjectId = subjectId, Name = "第一章" });
var chapterJson = await ReadJsonAsync(chapterResponse);
var chapterId = chapterJson.RootElement.GetProperty("item").GetProperty("id").GetGuid();
var entryResponse = await client.PutAsJsonAsync(
"/api/tenant-content/handbook-entries",
new DirectHandbookEntryDto { ChapterId = chapterId, Title = "知识点", Content = "正文" });
var videoResponse = await client.PutAsJsonAsync(
"/api/tenant-content/videos",
new DirectVideoDto { Title = "解析视频", VideoUrl = "https://example.test/video.mp4" });
var bannerResponse = await client.PutAsJsonAsync(
"/api/tenant-content/operations/banners",
new DirectOperationContentDto { Title = "开屏", Content = "欢迎", IsActive = true });
using var bannerListResponse = await client.GetAsync("/api/tenant-content/operations/banners");
var bannerListJson = await ReadJsonAsync(bannerListResponse);
Assert.Equal(HttpStatusCode.OK, unitResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, wordResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, subjectResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, chapterResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, entryResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, videoResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, bannerResponse.StatusCode);
Assert.Single(bannerListJson.RootElement.GetProperty("items").EnumerateArray());
}
[Fact]
public async Task Tenant_admin_can_bind_question_video_and_run_import_skeleton()
{
await using var factory = new ApiTestFactory();
var seed = await SeedAdminAsync(factory);
using var client = factory.CreateClient();
await LoginAsync(client, seed);
var questionResponse = await client.PostAsJsonAsync(
"/api/tenant-content/questions",
new DirectQuestionWriteDto { Type = "choice", Content = "题目" });
var questionJson = await ReadJsonAsync(questionResponse);
var questionId = questionJson.RootElement.GetProperty("item").GetProperty("id").GetGuid();
var videoResponse = await client.PutAsJsonAsync(
"/api/tenant-content/videos",
new DirectVideoDto { Title = "视频" });
var videoJson = await ReadJsonAsync(videoResponse);
var videoId = videoJson.RootElement.GetProperty("item").GetProperty("id").GetGuid();
var bindResponse = await client.PostAsJsonAsync(
"/api/tenant-content/question-videos",
new DirectQuestionVideoDto { QuestionId = questionId, VideoId = videoId });
var previewResponse = await client.PostAsJsonAsync(
"/api/tenant-content/imports/preview/questions",
new DirectImportDto
{
Items =
[
JsonSerializer.SerializeToElement(new { type = "choice", content = "导入预览题" })
]
});
var previewJson = await ReadJsonAsync(previewResponse);
var previewJobId = previewJson.RootElement.GetProperty("job").GetProperty("id").GetGuid();
var executeResponse = await client.PostAsJsonAsync(
"/api/tenant-content/imports/questions",
new DirectImportDto
{
Items =
[
JsonSerializer.SerializeToElement(new { type = "choice", content = "导入执行题" })
]
});
var executeJson = await ReadJsonAsync(executeResponse);
var executeJobId = executeJson.RootElement.GetProperty("job").GetProperty("id").GetGuid();
var postCheckResponse = await client.PostAsJsonAsync(
"/api/tenant-content/imports/post-check",
new DirectImportJobDto { JobId = executeJobId });
Assert.Equal(HttpStatusCode.OK, bindResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, previewResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, executeResponse.StatusCode);
Assert.Equal(HttpStatusCode.OK, postCheckResponse.StatusCode);
Assert.NotEqual(Guid.Empty, previewJobId);
using var scope = factory.Services.CreateScope();
var dbContext = scope.ServiceProvider.GetRequiredService<TikuDbContext>();
Assert.True(dbContext.ContentImportJobs.Any(item => item.Id == executeJobId && item.InsertedCount == 1));
Assert.True(dbContext.Questions.Count(item => item.TenantId == seed.TenantId) >= 2);
Assert.True(dbContext.Questions.Single(item => item.Id == questionId).HasVideoExplanation);
}
private static async Task<(Guid TenantId, Guid UserId, string Phone)> SeedAdminAsync(ApiTestFactory factory)
{
var tenantId = Guid.NewGuid();
var userId = Guid.NewGuid();
var phone = $"137{Random.Shared.Next(10000000, 99999999)}";
var passwordHash = new PasswordHasher().Hash("passw0rd!");
await factory.SeedAsync(
new Tenant
{
Id = tenantId,
Slug = tenantId.ToString("N"),
Name = "Test Tenant",
Status = TenantStatus.Active,
Metadata = JsonDefaults.Object()
},
new User
{
Id = userId,
Phone = phone,
Name = "Tenant Admin"
},
new TenantMembership
{
TenantId = tenantId,
UserId = userId,
Role = TenantRole.TenantAdmin,
Status = MembershipStatus.Active
},
new UserIdentity
{
UserId = userId,
Provider = "password",
ProviderSubject = phone,
Phone = phone,
SecretPayload = CreateSecretPayload(passwordHash)
});
return (tenantId, userId, phone);
}
private static async Task LoginAsync(
HttpClient client,
(Guid TenantId, Guid UserId, string Phone) seed)
{
var loginResponse = await client.PostAsJsonAsync(
"/api/auth/login/password",
new PasswordLoginDto
{
TenantId = seed.TenantId,
Phone = seed.Phone,
Password = "passw0rd!"
});
var loginJson = await ReadJsonAsync(loginResponse);
var accessToken = loginJson.RootElement
.GetProperty("tokens")
.GetProperty("accessToken")
.GetString();
client.DefaultRequestHeaders.Authorization = new("Bearer", accessToken);
}
private static async Task<JsonDocument> ReadJsonAsync(HttpResponseMessage response)
{
var stream = await response.Content.ReadAsStreamAsync();
return await JsonDocument.ParseAsync(stream);
}
private static JsonElement CreateSecretPayload(string passwordHash)
{
using var document = JsonDocument.Parse(
$$"""{"passwordHash":{{JsonSerializer.Serialize(passwordHash)}}}""");
return document.RootElement.Clone();
}
}