2019-11-11 06:15:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Alphaleonis.Win32.Filesystem;
|
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using Wabbajack.Common;
|
|
|
|
|
using Wabbajack.Lib.Downloaders;
|
|
|
|
|
using Wabbajack.Lib.NexusApi;
|
|
|
|
|
using Directory = Alphaleonis.Win32.Filesystem.Directory;
|
|
|
|
|
using File = Alphaleonis.Win32.Filesystem.File;
|
|
|
|
|
using FileInfo = Alphaleonis.Win32.Filesystem.FileInfo;
|
|
|
|
|
using Path = Alphaleonis.Win32.Filesystem.Path;
|
|
|
|
|
|
|
|
|
|
namespace Compression.BSA.Test
|
|
|
|
|
{
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class BSATests
|
|
|
|
|
{
|
|
|
|
|
private static string StagingFolder = "NexusDownloads";
|
|
|
|
|
private static string BSAFolder = "BSAs";
|
|
|
|
|
private static string TestDir = "BSA Test Dir";
|
|
|
|
|
private static string TempDir = "BSA Temp Dir";
|
|
|
|
|
|
|
|
|
|
public TestContext TestContext { get; set; }
|
|
|
|
|
|
2019-11-17 04:16:42 +00:00
|
|
|
|
private static WorkQueue Queue { get; set; }
|
|
|
|
|
|
2019-11-11 06:15:52 +00:00
|
|
|
|
[ClassInitialize]
|
2019-11-16 00:01:37 +00:00
|
|
|
|
public static void Setup(TestContext TestContext)
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
2019-11-17 04:16:42 +00:00
|
|
|
|
Queue = new WorkQueue();
|
2019-11-11 06:15:52 +00:00
|
|
|
|
Utils.LogMessages.Subscribe(f => TestContext.WriteLine(f));
|
|
|
|
|
if (!Directory.Exists(StagingFolder))
|
|
|
|
|
Directory.CreateDirectory(StagingFolder);
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(BSAFolder))
|
|
|
|
|
Directory.CreateDirectory(BSAFolder);
|
|
|
|
|
|
|
|
|
|
var mod_ids = new[]
|
|
|
|
|
{
|
|
|
|
|
(Game.SkyrimSpecialEdition, 12604), // SkyUI
|
|
|
|
|
(Game.Skyrim, 3863), // SkyUI
|
|
|
|
|
(Game.Skyrim, 51473), // iNeed
|
|
|
|
|
(Game.Fallout4, 22223) // 10mm SMG
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-12 05:33:32 +00:00
|
|
|
|
foreach (var info in mod_ids)
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
|
|
|
|
var filename = DownloadMod(info);
|
|
|
|
|
var folder = Path.Combine(BSAFolder, info.Item1.ToString(), info.Item2.ToString());
|
|
|
|
|
if (!Directory.Exists(folder))
|
|
|
|
|
Directory.CreateDirectory(folder);
|
2019-11-17 04:16:42 +00:00
|
|
|
|
FileExtractor.ExtractAll(Queue, filename, folder);
|
2019-11-12 05:33:32 +00:00
|
|
|
|
}
|
2019-11-11 06:15:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-17 04:16:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-11 06:15:52 +00:00
|
|
|
|
private static string DownloadMod((Game, int) info)
|
|
|
|
|
{
|
2019-11-12 04:35:07 +00:00
|
|
|
|
using (var client = new NexusApiClient())
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
2019-11-12 04:35:07 +00:00
|
|
|
|
var results = client.GetModFiles(info.Item1, info.Item2);
|
|
|
|
|
var file = results.FirstOrDefault(f => f.is_primary) ??
|
|
|
|
|
results.OrderByDescending(f => f.uploaded_timestamp).First();
|
|
|
|
|
var src = Path.Combine(StagingFolder, file.file_name);
|
|
|
|
|
|
|
|
|
|
if (File.Exists(src)) return src;
|
|
|
|
|
|
|
|
|
|
var state = new NexusDownloader.State
|
|
|
|
|
{
|
|
|
|
|
ModID = info.Item2.ToString(),
|
|
|
|
|
GameName = GameRegistry.Games[info.Item1].NexusName,
|
|
|
|
|
FileID = file.file_id.ToString()
|
|
|
|
|
};
|
|
|
|
|
state.Download(src);
|
|
|
|
|
return src;
|
|
|
|
|
}
|
2019-11-11 06:15:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static IEnumerable<object[]> BSAs()
|
|
|
|
|
{
|
|
|
|
|
return Directory.EnumerateFiles(BSAFolder, "*", DirectoryEnumerationOptions.Recursive)
|
|
|
|
|
.Where(f => Consts.SupportedBSAs.Contains(Path.GetExtension(f)))
|
|
|
|
|
.Select(nm => new object[] {nm});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
[DataTestMethod]
|
|
|
|
|
[DynamicData(nameof(BSAs), DynamicDataSourceType.Method)]
|
2019-11-16 00:01:37 +00:00
|
|
|
|
public void BSACompressionRecompression(string bsa)
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
|
|
|
|
TestContext.WriteLine($"From {bsa}");
|
|
|
|
|
TestContext.WriteLine("Cleaning Output Dir");
|
|
|
|
|
if (Directory.Exists(TempDir)) Directory.Delete(TempDir, true);
|
|
|
|
|
//if (Directory.Exists(ArchiveTempDir)) Directory.Delete(ArchiveTempDir, true);
|
|
|
|
|
Directory.CreateDirectory(TempDir);
|
|
|
|
|
|
|
|
|
|
TestContext.WriteLine($"Reading {bsa}");
|
2019-11-16 00:01:37 +00:00
|
|
|
|
string TempFile = Path.Combine("tmp.bsa");
|
|
|
|
|
using (var a = BSADispatch.OpenRead(bsa))
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
2019-11-17 04:16:42 +00:00
|
|
|
|
a.Files.PMap(Queue, file =>
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
|
|
|
|
var abs_name = Path.Combine(TempDir, file.Path);
|
|
|
|
|
ViaJson(file.State);
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(Path.GetDirectoryName(abs_name)))
|
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(abs_name));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using (var fs = File.OpenWrite(abs_name))
|
|
|
|
|
{
|
2019-11-16 00:01:37 +00:00
|
|
|
|
file.CopyDataTo(fs);
|
2019-11-11 06:15:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(file.Size, new FileInfo(abs_name).Length);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Console.WriteLine($"Building {bsa}");
|
|
|
|
|
|
|
|
|
|
using (var w = ViaJson(a.State).MakeBuilder())
|
|
|
|
|
{
|
2019-11-17 04:16:42 +00:00
|
|
|
|
a.Files.PMap(Queue, file =>
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
|
|
|
|
var abs_path = Path.Combine(TempDir, file.Path);
|
|
|
|
|
using (var str = File.OpenRead(abs_path))
|
|
|
|
|
{
|
2019-11-16 00:01:37 +00:00
|
|
|
|
w.AddFile(ViaJson(file.State), str);
|
2019-11-11 06:15:52 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2019-11-16 00:01:37 +00:00
|
|
|
|
w.Build(TempFile);
|
2019-11-11 06:15:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Console.WriteLine($"Verifying {bsa}");
|
2019-11-16 00:01:37 +00:00
|
|
|
|
using (var b = BSADispatch.OpenRead(TempFile))
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
Console.WriteLine($"Performing A/B tests on {bsa}");
|
|
|
|
|
Assert.AreEqual(JsonConvert.SerializeObject(a.State), JsonConvert.SerializeObject(b.State));
|
|
|
|
|
|
|
|
|
|
// Check same number of files
|
|
|
|
|
Assert.AreEqual(a.Files.Count(), b.Files.Count());
|
|
|
|
|
var idx = 0;
|
2019-11-12 04:35:07 +00:00
|
|
|
|
|
2019-11-16 00:01:37 +00:00
|
|
|
|
a.Files.Zip(b.Files, (ai, bi) => (ai, bi))
|
2019-11-17 04:16:42 +00:00
|
|
|
|
.PMap(Queue, pair =>
|
2019-11-12 04:35:07 +00:00
|
|
|
|
{
|
|
|
|
|
idx++;
|
|
|
|
|
Assert.AreEqual(JsonConvert.SerializeObject(pair.ai.State),
|
|
|
|
|
JsonConvert.SerializeObject(pair.bi.State));
|
|
|
|
|
//Console.WriteLine($" - {pair.ai.Path}");
|
|
|
|
|
Assert.AreEqual(pair.ai.Path, pair.bi.Path);
|
|
|
|
|
//Equal(pair.ai.Compressed, pair.bi.Compressed);
|
|
|
|
|
Assert.AreEqual(pair.ai.Size, pair.bi.Size);
|
2019-11-16 00:01:37 +00:00
|
|
|
|
CollectionAssert.AreEqual(GetData(pair.ai), GetData(pair.bi));
|
2019-11-12 04:35:07 +00:00
|
|
|
|
});
|
2019-11-11 06:15:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-16 00:01:37 +00:00
|
|
|
|
private static byte[] GetData(IFile pairAi)
|
2019-11-11 06:15:52 +00:00
|
|
|
|
{
|
|
|
|
|
using (var ms = new MemoryStream())
|
|
|
|
|
{
|
2019-11-16 00:01:37 +00:00
|
|
|
|
pairAi.CopyDataTo(ms);
|
2019-11-11 06:15:52 +00:00
|
|
|
|
return ms.ToArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static T ViaJson<T>(T i)
|
|
|
|
|
{
|
|
|
|
|
var settings = new JsonSerializerSettings
|
|
|
|
|
{
|
|
|
|
|
TypeNameHandling = TypeNameHandling.All
|
|
|
|
|
};
|
|
|
|
|
return JsonConvert.DeserializeObject<T>(JsonConvert.SerializeObject(i, settings), settings);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|