summaryrefslogtreecommitdiff
path: root/Tests/UnitTest1.cs
diff options
context:
space:
mode:
authorLuca Matei Pintilie <luca@lucamatei.com>2024-10-30 20:59:53 +0000
committerLuca Matei Pintilie <luca@lucamatei.com>2024-10-30 20:59:53 +0000
commitdc1938dbb98dc9edf16558e505b2961246c83e6e (patch)
tree7953186976085ceca6c03a208d1ffd9596f745be /Tests/UnitTest1.cs
parentfc3c7e3b3c955cc274d4668768466fecb8fb727b (diff)
downloadwikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar
wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.gz
wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.bz2
wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.lz
wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.xz
wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.zst
wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.zip
Add API and TestHEADmaster
Diffstat (limited to '')
-rw-r--r--Tests/UnitTest1.cs52
1 files changed, 52 insertions, 0 deletions
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<DbWikiWakaContext>()
+ .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<Content> contents = controller.GetContents();
+ Content newGetContent = contents.ToBlockingEnumerable().Single();
+
+ Assert.AreEqual(parameter.Text, newContent.Properties.Single().Text);
+ Assert.AreEqual(parameter.Text, newGetContent.Properties.Single().Text);
+ }
+}