mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
102 lines
3.0 KiB
C#
102 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Windows.Documents;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Lib;
|
|
using Wabbajack.Lib.Downloaders;
|
|
using Wabbajack.Lib.ModListRegistry;
|
|
using Wabbajack.Lib.NexusApi;
|
|
|
|
namespace Wabbajack.Test.ListValidation
|
|
{
|
|
[TestClass]
|
|
public class ListValidation
|
|
{
|
|
[ClassInitialize]
|
|
public static void SetupNexus(TestContext context)
|
|
{
|
|
Utils.LogMessages.Subscribe(context.WriteLine);
|
|
var api = new NexusApiClient();
|
|
api.ClearUpdatedModsInCache();
|
|
}
|
|
|
|
private WorkQueue Queue { get; set; }
|
|
[TestInitialize]
|
|
public void Setup()
|
|
{
|
|
Directory.CreateDirectory(Consts.ModListDownloadFolder);
|
|
Utils.LogMessages.Subscribe(s => TestContext.WriteLine(s));
|
|
Queue = new WorkQueue();
|
|
}
|
|
|
|
[TestCleanup]
|
|
public void Cleanup()
|
|
{
|
|
Queue.Shutdown();
|
|
Queue = null;
|
|
}
|
|
|
|
|
|
public TestContext TestContext { get; set; }
|
|
|
|
[TestCategory("ListValidation")]
|
|
[DataTestMethod]
|
|
[DynamicData(nameof(GetModLists), DynamicDataSourceType.Method)]
|
|
public void ValidateModLists(string name, ModlistMetadata list)
|
|
{
|
|
Log($"Testing {list.Links.MachineURL} - {list.Title}");
|
|
var modlist_path = Path.Combine(Consts.ModListDownloadFolder, list.Links.MachineURL + ".wabbajack");
|
|
|
|
if (list.NeedsDownload(modlist_path))
|
|
{
|
|
var state = DownloadDispatcher.ResolveArchive(list.Links.Download);
|
|
Log($"Downloading {list.Links.MachineURL} - {list.Title}");
|
|
state.Download(modlist_path);
|
|
}
|
|
else
|
|
{
|
|
Log($"No changes detected from downloaded modlist");
|
|
}
|
|
|
|
|
|
Log($"Loading {modlist_path}");
|
|
|
|
var installer = MO2Installer.LoadFromFile(modlist_path);
|
|
|
|
Log($"{installer.Archives.Count} archives to validate");
|
|
|
|
var invalids = installer.Archives
|
|
.PMap(Queue,archive =>
|
|
{
|
|
Log($"Validating: {archive.Name}");
|
|
return new {archive, is_valid = archive.State.Verify()};
|
|
})
|
|
.Where(a => !a.is_valid)
|
|
.ToList();
|
|
|
|
DownloadDispatcher.PrepareAll(installer.Archives.Select(a => a.State));
|
|
|
|
Log("Invalid Archives");
|
|
foreach (var invalid in invalids)
|
|
{
|
|
Log(invalid.archive.State.GetReportEntry(invalid.archive));
|
|
}
|
|
|
|
Assert.AreEqual(invalids.Count, 0, "There were invalid archives");
|
|
}
|
|
|
|
void Log(string msg)
|
|
{
|
|
TestContext.WriteLine(msg);
|
|
}
|
|
|
|
public static IEnumerable<object[]> GetModLists()
|
|
{
|
|
return ModlistMetadata.LoadFromGithub().Select(l => new object[] {l.Title, l});
|
|
}
|
|
}
|
|
}
|