diff --git a/Content.IntegrationTests/Tests/Administration/Logs/LogWindowTest.cs b/Content.IntegrationTests/Tests/Administration/Logs/LogWindowTest.cs deleted file mode 100644 index 80236c7d90..0000000000 --- a/Content.IntegrationTests/Tests/Administration/Logs/LogWindowTest.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System.Linq; -using Content.Client.Administration.UI; -using Content.Client.Administration.UI.CustomControls; -using Content.Client.Administration.UI.Logs; -using Content.Client.UserInterface.Controls; -using Content.Client.UserInterface.Systems.MenuBar.Widgets; -using Content.IntegrationTests.Tests.Interaction; -using Content.Server.Administration.Commands; -using Content.Server.Administration.Logs; -using Content.Shared.Database; - -namespace Content.IntegrationTests.Tests.Administration.Logs; - -public sealed class LogWindowTest : InteractionTest -{ - protected override PoolSettings Settings => new() { Connected = true, Dirty = true, AdminLogsEnabled = true, DummyTicker = false }; - - [Test] - public async Task TestAdminLogsWindow() - { - // First, generate a new log - var log = Server.Resolve(); - var guid = Guid.NewGuid(); - await Server.WaitPost(() => log.Add(LogType.Unknown, $"{SPlayer} test log 1: {guid}")); - - // Click the admin button in the menu bar - await ClickWidgetControl(nameof(GameTopMenuBar.AdminButton)); - var adminWindow = GetWindow(); - - // Find and click the "open logs" button. - Assert.That(TryGetControlFromChildren(x => x.Command == OpenAdminLogsCommand.Cmd, adminWindow, out var btn)); - await ClickControl(btn!); - var logWindow = GetWindow(); - - // Find the log search field and refresh buttons - var search = logWindow.Logs.LogSearch; - var refresh = logWindow.Logs.RefreshButton; - var cont = logWindow.Logs.LogsContainer; - - // Search for the log we added earlier. - await Client.WaitPost(() => search.Text = guid.ToString()); - await ClickControl(refresh); - await RunTicks(5); - var searchResult = cont.Children.Where(x => x.Visible && x is AdminLogLabel).Cast().ToArray(); - Assert.That(searchResult.Length, Is.EqualTo(1)); - Assert.That(searchResult[0].Log.Message, Contains.Substring($" test log 1: {guid}")); - - // Add a new log - guid = Guid.NewGuid(); - await Server.WaitPost(() => log.Add(LogType.Unknown, $"{SPlayer} test log 2: {guid}")); - - // Update the search and refresh - await Client.WaitPost(() => search.Text = guid.ToString()); - await ClickControl(refresh); - await RunTicks(5); - searchResult = cont.Children.Where(x => x.Visible && x is AdminLogLabel).Cast().ToArray(); - Assert.That(searchResult.Length, Is.EqualTo(1)); - Assert.That(searchResult[0].Log.Message, Contains.Substring($" test log 2: {guid}")); - } -}