From dc1938dbb98dc9edf16558e505b2961246c83e6e Mon Sep 17 00:00:00 2001 From: Luca Matei Pintilie Date: Wed, 30 Oct 2024 21:59:53 +0100 Subject: Add API and Test --- Tests/GlobalUsings.cs | 1 + Tests/Tests.csproj | 23 +++++++++++++++++++++++ Tests/UnitTest1.cs | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 Tests/GlobalUsings.cs create mode 100644 Tests/Tests.csproj create mode 100644 Tests/UnitTest1.cs (limited to 'Tests') diff --git a/Tests/GlobalUsings.cs b/Tests/GlobalUsings.cs new file mode 100644 index 0000000..ab67c7e --- /dev/null +++ b/Tests/GlobalUsings.cs @@ -0,0 +1 @@ +global using Microsoft.VisualStudio.TestTools.UnitTesting; \ No newline at end of file diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj new file mode 100644 index 0000000..5c37b71 --- /dev/null +++ b/Tests/Tests.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + diff --git a/Tests/UnitTest1.cs b/Tests/UnitTest1.cs new file mode 100644 index 0000000..3e4dc64 --- /dev/null +++ b/Tests/UnitTest1.cs @@ -0,0 +1,52 @@ +using Microsoft.Data.Sqlite; +using Microsoft.EntityFrameworkCore; +using WikiWaka.Api.Controllers; +using WikiWaka.Api.Models; + +namespace Tests; + +[TestClass] +public class UnitTest1 +{ + private ContentApiController controller; + private DbWikiWakaContext dbContext; + + [TestInitialize] + public async Task TestInit() + { + SqliteConnection connection = new SqliteConnection("Filename=:memory:"); + connection.Open(); + + var _contextOptions = new DbContextOptionsBuilder() + .UseSqlite(connection) + .Options; + + dbContext = new(_contextOptions); + await dbContext.Database.EnsureCreatedAsync(); + await DbInit.InitializeLanguages(dbContext); + controller = new(dbContext); + } + + [TestCleanup] + public async Task TestClean() + { + await dbContext.Database.EnsureDeletedAsync(); + await dbContext.DisposeAsync(); + } + + [TestMethod] + public async Task TestMethod1() + { + WikiWaka.Api.Contract.NewContent parameter = new() + { + Text = "Hello, world", + LanguageCode = "en-US", + }; + Content newContent = await controller.PostContents(parameter); + IAsyncEnumerable contents = controller.GetContents(); + Content newGetContent = contents.ToBlockingEnumerable().Single(); + + Assert.AreEqual(parameter.Text, newContent.Properties.Single().Text); + Assert.AreEqual(parameter.Text, newGetContent.Properties.Single().Text); + } +} -- cgit v1.2.3