2020-03-26 04:25:48 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Alphaleonis.Win32.Filesystem;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Common.Test
|
|
|
|
|
{
|
|
|
|
|
public class MiscTests
|
|
|
|
|
{
|
|
|
|
|
[Fact]
|
|
|
|
|
public void TestDiskSpeed()
|
|
|
|
|
{
|
|
|
|
|
using (var queue = new WorkQueue())
|
|
|
|
|
{
|
2020-04-22 23:11:06 +00:00
|
|
|
|
var speed = Utils.TestDiskSpeed(queue, AbsolutePath.EntryPoint);
|
2020-03-26 04:25:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task TestHash()
|
|
|
|
|
{
|
|
|
|
|
var testFile = ((RelativePath)"text.data").RelativeToEntryPoint();
|
|
|
|
|
const string data = "Cheese for Everyone!";
|
|
|
|
|
await testFile.WriteAllTextAsync(data);
|
|
|
|
|
File.WriteAllText("test.data", data);
|
2020-05-12 21:28:09 +00:00
|
|
|
|
Assert.Equal(Hash.FromBase64("eSIyd+KOG3s="), await testFile.FileHashCachedAsync());
|
2020-03-26 04:25:48 +00:00
|
|
|
|
Assert.True(Utils.TryGetHashCache(testFile, out var fileHash));
|
|
|
|
|
Assert.Equal(Hash.FromBase64("eSIyd+KOG3s="), fileHash);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|