mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
109 lines
4.3 KiB
C#
109 lines
4.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Common.Exceptions;
|
|
using Wabbajack.Lib;
|
|
using Wabbajack.Lib.AuthorApi;
|
|
using Wabbajack.Lib.Downloaders;
|
|
using Wabbajack.Server.DataLayer;
|
|
using Wabbajack.Server.Services;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Wabbajack.BuildServer.Test
|
|
{
|
|
public class AuthoredFilesTests : ABuildServerSystemTest
|
|
{
|
|
public AuthoredFilesTests(ITestOutputHelper output, SingletonAdaptor<BuildServerFixture> fixture) : base(output, fixture)
|
|
{
|
|
}
|
|
|
|
[Fact]
|
|
public async Task CanUploadDownloadAndDeleteAuthoredFiles()
|
|
{
|
|
var cleanup = Fixture.GetService<AuthoredFilesCleanup>();
|
|
var sql = Fixture.GetService<SqlService>();
|
|
|
|
var toDelete = await cleanup.FindFilesToDelete();
|
|
|
|
await using var file = new TempFile();
|
|
await file.Path.WriteAllBytesAsync(RandomData(Consts.UPLOADED_FILE_BLOCK_SIZE * 4 + Consts.UPLOADED_FILE_BLOCK_SIZE / 3));
|
|
var originalHash = await file.Path.FileHashAsync();
|
|
|
|
var client = await Client.Create(Fixture.APIKey);
|
|
using var queue = new WorkQueue(2);
|
|
var uri = await client.UploadFile(queue, file.Path, (s, percent) => Utils.Log($"({percent}) {s}"));
|
|
|
|
var data = (await Fixture.GetService<SqlService>().AllAuthoredFiles()).ToArray();
|
|
Assert.Contains((string)file.Path.FileName, data.Select(f => f.OriginalFileName));
|
|
|
|
var listing = await cleanup.GetCDNMungedNames();
|
|
foreach (var d in data)
|
|
{
|
|
Assert.Contains(d.MungedName, listing);
|
|
}
|
|
|
|
// Just uploaded it, so it shouldn't be marked for deletion
|
|
toDelete = await cleanup.FindFilesToDelete();
|
|
foreach (var d in data)
|
|
{
|
|
Assert.DoesNotContain(d.MungedName, toDelete.CDNDelete);
|
|
Assert.DoesNotContain(d.ServerAssignedUniqueId, toDelete.SQLDelete);
|
|
}
|
|
|
|
var result = await _client.GetStringAsync(MakeURL("authored_files"));
|
|
Assert.Contains((string)file.Path.FileName, result);
|
|
|
|
var state = await DownloadDispatcher.Infer(uri);
|
|
Assert.IsType<WabbajackCDNDownloader.State>(state);
|
|
|
|
await state.Download(new Archive(state) {Name = (string)file.Path.FileName}, file.Path);
|
|
Assert.Equal(originalHash, await file.Path.FileHashAsync());
|
|
|
|
// Mark it as old
|
|
foreach (var d in data)
|
|
{
|
|
await sql.TouchAuthoredFile(await sql.GetCDNFileDefinition(d.ServerAssignedUniqueId), DateTime.Now - TimeSpan.FromDays(8));
|
|
}
|
|
|
|
// Now it should be marked for deletion
|
|
toDelete = await cleanup.FindFilesToDelete();
|
|
foreach (var d in data)
|
|
{
|
|
Assert.Contains(d.MungedName, toDelete.CDNDelete);
|
|
Assert.Contains(d.ServerAssignedUniqueId, toDelete.SQLDelete);
|
|
}
|
|
|
|
await cleanup.Execute();
|
|
|
|
toDelete = await cleanup.FindFilesToDelete();
|
|
|
|
Assert.Empty(toDelete.CDNDelete);
|
|
Assert.Empty(toDelete.SQLDelete);
|
|
|
|
}
|
|
|
|
[Fact]
|
|
public async Task ServerGetsEdgeServerInfo()
|
|
{
|
|
var service = Fixture.GetService<CDNMirrorList>();
|
|
Assert.True(await service.Execute() > 0);
|
|
Assert.NotEmpty(service.Mirrors);
|
|
Assert.True(DateTime.UtcNow - service.LastUpdate < TimeSpan.FromMinutes(1));
|
|
|
|
var servers = await ClientAPI.GetCDNMirrorList();
|
|
Assert.Equal(service.Mirrors, servers);
|
|
|
|
var state = new WabbajackCDNDownloader.State(new Uri("https://wabbajack.b-cdn.net/this_file_doesn_t_exist"));
|
|
await DownloadDispatcher.PrepareAll(new[] {state});
|
|
await using var tmp = new TempFile();
|
|
|
|
await Assert.ThrowsAsync<HttpException>(async () => await state.Download(new Archive(state) {Name = "test"}, tmp.Path));
|
|
var downloader = DownloadDispatcher.GetInstance<WabbajackCDNDownloader>();
|
|
Assert.Null(downloader.Mirrors); // Now works through a host remap
|
|
}
|
|
|
|
}
|
|
}
|