mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
68 lines
2.6 KiB
C#
68 lines
2.6 KiB
C#
using LibHac.Common;
|
|
using LibHac.Fs;
|
|
using LibHac.Fs.Shim;
|
|
using LibHac.Ncm;
|
|
using Xunit;
|
|
|
|
namespace LibHac.Tests.Fs.FileSystemClientTests.ShimTests
|
|
{
|
|
public class SaveData
|
|
{
|
|
[Fact]
|
|
public void MountCacheStorage_CanMountCreatedCacheStorage()
|
|
{
|
|
var applicationId = new TitleId(1);
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
fs.CreateCacheStorage(applicationId, SaveDataSpaceId.User, applicationId, 0, 0, SaveDataFlags.None);
|
|
|
|
Assert.Success(fs.MountCacheStorage("cache".ToU8Span(), applicationId));
|
|
}
|
|
|
|
[Fact]
|
|
public void MountCacheStorage_WrittenDataPersists()
|
|
{
|
|
var applicationId = new TitleId(1);
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
fs.CreateCacheStorage(applicationId, SaveDataSpaceId.SdCache, applicationId, 0, 0, SaveDataFlags.None);
|
|
fs.MountCacheStorage("cache".ToU8Span(), applicationId);
|
|
|
|
fs.CreateFile("cache:/file".ToU8Span(), 0);
|
|
fs.Commit("cache".ToU8Span());
|
|
fs.Unmount("cache".ToU8Span());
|
|
|
|
Assert.Success(fs.MountCacheStorage("cache".ToU8Span(), applicationId));
|
|
Assert.Success(fs.GetEntryType(out DirectoryEntryType type, "cache:/file".ToU8Span()));
|
|
Assert.Equal(DirectoryEntryType.File, type);
|
|
}
|
|
|
|
[Fact]
|
|
public void MountCacheStorage_SdCardIsPreferredOverBis()
|
|
{
|
|
var applicationId = new TitleId(1);
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
fs.CreateCacheStorage(applicationId, SaveDataSpaceId.SdCache, applicationId, 0, 0, SaveDataFlags.None);
|
|
fs.MountCacheStorage("cache".ToU8Span(), applicationId);
|
|
fs.CreateFile("cache:/sd".ToU8Span(), 0);
|
|
fs.Commit("cache".ToU8Span());
|
|
fs.Unmount("cache".ToU8Span());
|
|
|
|
// Turn off the SD card so the User save is mounted
|
|
fs.SetSdCardAccessibility(false);
|
|
|
|
fs.CreateCacheStorage(applicationId, SaveDataSpaceId.User, applicationId, 0, 0, SaveDataFlags.None);
|
|
fs.MountCacheStorage("cache".ToU8Span(), applicationId);
|
|
fs.CreateFile("cache:/bis".ToU8Span(), 0);
|
|
fs.Commit("cache".ToU8Span());
|
|
fs.Unmount("cache".ToU8Span());
|
|
|
|
fs.SetSdCardAccessibility(true);
|
|
|
|
Assert.Success(fs.MountCacheStorage("cache".ToU8String(), applicationId));
|
|
Assert.Success(fs.GetEntryType(out _, "cache:/sd".ToU8Span()));
|
|
Assert.Failure(fs.GetEntryType(out _, "cache:/bis".ToU8Span()));
|
|
}
|
|
}
|
|
}
|