2018-11-06 23:25:35 +00:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using PKHeX.Core;
|
2018-11-14 00:03:18 +00:00
|
|
|
|
using System.IO;
|
2018-11-06 23:25:35 +00:00
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Tests.Saves
|
|
|
|
|
{
|
|
|
|
|
public class SMTests
|
|
|
|
|
{
|
|
|
|
|
private SAV7 GetSave()
|
|
|
|
|
{
|
2018-11-20 00:14:49 +00:00
|
|
|
|
var folder = GetRepoPath();
|
|
|
|
|
var path = Path.Combine(folder, "TestData", "SM Project 802.main");
|
|
|
|
|
return new SAV7(File.ReadAllBytes(path));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetRepoPath()
|
|
|
|
|
{
|
|
|
|
|
var folder = Directory.GetCurrentDirectory();
|
|
|
|
|
while (!folder.EndsWith(nameof(Tests)))
|
|
|
|
|
folder = Directory.GetParent(folder).FullName;
|
|
|
|
|
return folder;
|
2018-11-06 23:25:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void ChecksumsValid()
|
|
|
|
|
{
|
|
|
|
|
GetSave().ChecksumsValid.Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void ChecksumsUpdate()
|
|
|
|
|
{
|
|
|
|
|
var save = GetSave();
|
|
|
|
|
var originalChecksumInfo = save.ChecksumInfo;
|
2019-02-19 05:59:57 +00:00
|
|
|
|
var newSave = new SAV7(save.Write());
|
2018-11-06 23:25:35 +00:00
|
|
|
|
|
|
|
|
|
save.ChecksumInfo.Should().BeEquivalentTo(originalChecksumInfo, "because the checksum should have been modified");
|
|
|
|
|
save.ChecksumsValid.Should().BeTrue("because the checksum should be valid after write");
|
|
|
|
|
newSave.ChecksumsValid.Should().BeTrue("because the checksums should be valid after reopening the save");
|
|
|
|
|
newSave.ChecksumInfo.Should().BeEquivalentTo(save.ChecksumInfo, "because the checksums should be the same since write and open");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|