mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
211 lines
No EOL
7.2 KiB
C#
211 lines
No EOL
7.2 KiB
C#
using LibHac.Account;
|
|
using LibHac.Common;
|
|
using LibHac.Fs;
|
|
using LibHac.Fs.Shim;
|
|
using LibHac.Ns;
|
|
using Xunit;
|
|
|
|
using static LibHac.Fs.ApplicationSaveDataManagement;
|
|
|
|
namespace LibHac.Tests.Fs.FileSystemClientTests;
|
|
|
|
public class ApplicationSaveDataManagementTests
|
|
{
|
|
[Fact]
|
|
public static void EnsureApplicationSaveData_CreatesAccountSaveData()
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
var applicationId = new Ncm.ApplicationId(11);
|
|
var userId = new Uid(2, 3);
|
|
|
|
var nacp = new ApplicationControlProperty
|
|
{
|
|
UserAccountSaveDataSize = 0x1000,
|
|
UserAccountSaveDataJournalSize = 0x1000
|
|
};
|
|
|
|
Assert.Success(EnsureApplicationSaveData(fs, out _, applicationId, ref nacp, ref userId));
|
|
|
|
using var iterator = new UniqueRef<SaveDataIterator>();
|
|
fs.OpenSaveDataIterator(ref iterator.Ref(), SaveDataSpaceId.User);
|
|
|
|
var info = new SaveDataInfo[2];
|
|
Assert.Success(iterator.Get.ReadSaveDataInfo(out long entriesRead, info));
|
|
|
|
Assert.Equal(1, entriesRead);
|
|
Assert.Equal(applicationId, info[0].ProgramId);
|
|
Assert.Equal(ConvertAccountUidToFsUserId(userId), info[0].UserId);
|
|
Assert.Equal(SaveDataType.Account, info[0].Type);
|
|
}
|
|
|
|
[Fact]
|
|
public static void EnsureApplicationSaveData_CreatesDeviceSaveData()
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
var applicationId = new Ncm.ApplicationId(11);
|
|
var userId = new Uid(2, 3);
|
|
|
|
var nacp = new ApplicationControlProperty
|
|
{
|
|
DeviceSaveDataSize = 0x1000,
|
|
DeviceSaveDataJournalSize = 0x1000
|
|
};
|
|
|
|
Assert.Success(EnsureApplicationSaveData(fs, out _, applicationId, ref nacp, ref userId));
|
|
|
|
using var iterator = new UniqueRef<SaveDataIterator>();
|
|
fs.OpenSaveDataIterator(ref iterator.Ref(), SaveDataSpaceId.User);
|
|
|
|
var info = new SaveDataInfo[2];
|
|
Assert.Success(iterator.Get.ReadSaveDataInfo(out long entriesRead, info));
|
|
|
|
Assert.Equal(1, entriesRead);
|
|
Assert.Equal(applicationId, info[0].ProgramId);
|
|
Assert.Equal(UserId.InvalidId, info[0].UserId);
|
|
Assert.Equal(SaveDataType.Device, info[0].Type);
|
|
}
|
|
|
|
[Fact]
|
|
public static void EnsureApplicationSaveData_CreatesBcatCacheStorage()
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
var applicationId = new Ncm.ApplicationId(11);
|
|
var userId = new Uid(2, 3);
|
|
|
|
var nacp = new ApplicationControlProperty
|
|
{
|
|
BcatDeliveryCacheStorageSize = 0x1000
|
|
};
|
|
|
|
Assert.Success(EnsureApplicationSaveData(fs, out _, applicationId, ref nacp, ref userId));
|
|
|
|
using var iterator = new UniqueRef<SaveDataIterator>();
|
|
fs.OpenSaveDataIterator(ref iterator.Ref(), SaveDataSpaceId.User);
|
|
|
|
var info = new SaveDataInfo[2];
|
|
Assert.Success(iterator.Get.ReadSaveDataInfo(out long entriesRead, info));
|
|
|
|
Assert.Equal(1, entriesRead);
|
|
Assert.Equal(applicationId, info[0].ProgramId);
|
|
Assert.Equal(UserId.InvalidId, info[0].UserId);
|
|
Assert.Equal(SaveDataType.Bcat, info[0].Type);
|
|
}
|
|
|
|
[Fact]
|
|
public static void EnsureApplicationSaveData_CreatesTemporaryStorage()
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
var applicationId = new Ncm.ApplicationId(11);
|
|
var userId = new Uid(2, 3);
|
|
|
|
var nacp = new ApplicationControlProperty
|
|
{
|
|
TemporaryStorageSize = 0x1000
|
|
};
|
|
|
|
Assert.Success(EnsureApplicationSaveData(fs, out _, applicationId, ref nacp, ref userId));
|
|
|
|
using var iterator = new UniqueRef<SaveDataIterator>();
|
|
fs.OpenSaveDataIterator(ref iterator.Ref(), SaveDataSpaceId.Temporary);
|
|
|
|
var info = new SaveDataInfo[2];
|
|
Assert.Success(iterator.Get.ReadSaveDataInfo(out long entriesRead, info));
|
|
|
|
Assert.Equal(1, entriesRead);
|
|
Assert.Equal(applicationId, info[0].ProgramId);
|
|
Assert.Equal(UserId.InvalidId, info[0].UserId);
|
|
Assert.Equal(SaveDataType.Temporary, info[0].Type);
|
|
}
|
|
|
|
[Fact]
|
|
public static void EnsureApplicationCacheStorage_SdCardAvailable_CreatesCacheStorageOnSd()
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
var applicationId = new Ncm.ApplicationId(11);
|
|
|
|
var nacp = new ApplicationControlProperty
|
|
{
|
|
CacheStorageSize = 0x1000,
|
|
CacheStorageJournalSize = 0x1000
|
|
};
|
|
|
|
Assert.Success(fs.EnsureApplicationCacheStorage(out _, out CacheStorageTargetMedia target, applicationId,
|
|
ref nacp));
|
|
|
|
Assert.Equal(CacheStorageTargetMedia.SdCard, target);
|
|
|
|
using var iterator = new UniqueRef<SaveDataIterator>();
|
|
fs.OpenSaveDataIterator(ref iterator.Ref(), SaveDataSpaceId.SdUser);
|
|
|
|
var info = new SaveDataInfo[2];
|
|
Assert.Success(iterator.Get.ReadSaveDataInfo(out long entriesRead, info));
|
|
|
|
Assert.Equal(1, entriesRead);
|
|
Assert.Equal(applicationId, info[0].ProgramId);
|
|
Assert.Equal(SaveDataType.Cache, info[0].Type);
|
|
}
|
|
|
|
[Fact]
|
|
public static void EnsureApplicationCacheStorage_SdCardNotAvailable_CreatesCacheStorageOnBis()
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(false);
|
|
|
|
var applicationId = new Ncm.ApplicationId(11);
|
|
|
|
var nacp = new ApplicationControlProperty
|
|
{
|
|
CacheStorageSize = 0x1000,
|
|
CacheStorageJournalSize = 0x1000
|
|
};
|
|
|
|
Assert.Success(fs.EnsureApplicationCacheStorage(out _, out CacheStorageTargetMedia target, applicationId,
|
|
ref nacp));
|
|
|
|
Assert.Equal(CacheStorageTargetMedia.Nand, target);
|
|
|
|
using var iterator = new UniqueRef<SaveDataIterator>();
|
|
fs.OpenSaveDataIterator(ref iterator.Ref(), SaveDataSpaceId.User);
|
|
|
|
var info = new SaveDataInfo[2];
|
|
Assert.Success(iterator.Get.ReadSaveDataInfo(out long entriesRead, info));
|
|
|
|
Assert.Equal(1, entriesRead);
|
|
Assert.Equal(applicationId, info[0].ProgramId);
|
|
Assert.Equal(SaveDataType.Cache, info[0].Type);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true)]
|
|
[InlineData(false)]
|
|
public static void GetCacheStorageTargetMedia_ReturnsTargetOfNewCacheStorage(bool isSdCardInserted)
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(isSdCardInserted);
|
|
|
|
var applicationId = new Ncm.ApplicationId(11);
|
|
|
|
var nacp = new ApplicationControlProperty
|
|
{
|
|
CacheStorageSize = 0x1000,
|
|
CacheStorageJournalSize = 0x1000
|
|
};
|
|
|
|
fs.EnsureApplicationCacheStorage(out _, out CacheStorageTargetMedia targetFromCreation, applicationId, ref nacp);
|
|
|
|
Assert.Success(fs.GetCacheStorageTargetMedia(out CacheStorageTargetMedia target, applicationId));
|
|
Assert.Equal(targetFromCreation, target);
|
|
}
|
|
|
|
[Fact]
|
|
public static void GetCacheStorageTargetMedia_CacheStorageDoesNotExist_ReturnsNone()
|
|
{
|
|
FileSystemClient fs = FileSystemServerFactory.CreateClient(true);
|
|
|
|
Assert.Success(fs.GetCacheStorageTargetMedia(out CacheStorageTargetMedia target, new Ncm.ApplicationId(11)));
|
|
Assert.Equal(CacheStorageTargetMedia.None, target);
|
|
}
|
|
} |