mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-26 22:55:55 +03:00
79 lines
2.1 KiB
C#
79 lines
2.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Steamworks.Data;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[TestClass]
|
|
[DeploymentItem( "steam_api64.dll" )]
|
|
public class RemoteStorageTest
|
|
{
|
|
[TestMethod]
|
|
public void Quotas()
|
|
{
|
|
Console.WriteLine( $"SteamRemoteStorage.QuotaBytes: {SteamRemoteStorage.QuotaBytes}" );
|
|
Console.WriteLine( $"SteamRemoteStorage.QuotaRemainingBytes: {SteamRemoteStorage.QuotaRemainingBytes}" );
|
|
Console.WriteLine( $"SteamRemoteStorage.QuotaUsedBytes: {SteamRemoteStorage.QuotaUsedBytes}" );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void IsCloudEnabled()
|
|
{
|
|
Console.WriteLine( $"SteamRemoteStorage.IsCloudEnabled: {SteamRemoteStorage.IsCloudEnabled}" );
|
|
Console.WriteLine( $"SteamRemoteStorage.IsCloudEnabledForAccount: {SteamRemoteStorage.IsCloudEnabledForAccount}" );
|
|
Console.WriteLine( $"SteamRemoteStorage.IsCloudEnabledForApp: {SteamRemoteStorage.IsCloudEnabledForApp}" );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void FileWrite()
|
|
{
|
|
var rand = new Random();
|
|
var testFile = new byte[1024 * 1024 * 100];
|
|
|
|
for( int i=0; i< testFile.Length; i++ )
|
|
{
|
|
testFile[i] = (byte) i;
|
|
}
|
|
|
|
var written = SteamRemoteStorage.FileWrite( "testfile", testFile );
|
|
|
|
Assert.IsTrue( written );
|
|
Assert.IsTrue( SteamRemoteStorage.FileExists( "testfile" ) );
|
|
Assert.AreEqual( SteamRemoteStorage.FileSize( "testfile" ), testFile.Length );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void FileRead()
|
|
{
|
|
FileWrite();
|
|
|
|
var data = SteamRemoteStorage.FileRead( "testfile" );
|
|
|
|
Assert.IsNotNull( data );
|
|
|
|
for ( int i = 0; i < data.Length; i++ )
|
|
{
|
|
Assert.AreEqual( data[i], (byte)i );
|
|
}
|
|
|
|
Assert.AreEqual( SteamRemoteStorage.FileSize( "testfile" ), data.Length );
|
|
Assert.AreEqual( SteamRemoteStorage.FileSize( "testfile" ), 1024 * 1024 * 100 );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Files()
|
|
{
|
|
foreach ( var file in SteamRemoteStorage.Files )
|
|
{
|
|
Console.WriteLine( $"{file} ({SteamRemoteStorage.FileSize(file)} {SteamRemoteStorage.FileTime( file )})" );
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|