mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-26 06:35:49 +03:00
107 lines
2.1 KiB
C#
107 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;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[TestClass]
|
|
[DeploymentItem( "steam_api64.dll" )]
|
|
public class AppTest
|
|
{
|
|
[AssemblyInitialize]
|
|
public static void AssemblyInit( TestContext context )
|
|
{
|
|
//
|
|
// Init Client
|
|
//
|
|
Steamworks.SteamClient.Init( 4000 );
|
|
|
|
//
|
|
// Init Server
|
|
//
|
|
var serverInit = new SteamServerInit( "gmod", "Garry Mode" )
|
|
{
|
|
GamePort = 28015,
|
|
Secure = true,
|
|
QueryPort = 28016
|
|
};
|
|
|
|
Steamworks.SteamServer.Init( 4000, serverInit );
|
|
|
|
SteamServer.LogOnAnonymous();
|
|
|
|
}
|
|
|
|
static void OnNewUrlLaunchParameters()
|
|
{
|
|
// Wow!
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GameLangauge()
|
|
{
|
|
var gl = SteamApps.GameLanguage;
|
|
Assert.IsNotNull( gl );
|
|
Assert.IsTrue( gl.Length > 3 );
|
|
|
|
Console.WriteLine( $"{gl}" );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void AppInstallDir()
|
|
{
|
|
var str = SteamApps.AppInstallDir( 4000 );
|
|
Assert.IsNotNull( str );
|
|
Assert.IsTrue( str.Length > 3 );
|
|
|
|
Console.WriteLine( $"{str}" );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void AppOwner()
|
|
{
|
|
var steamid = SteamApps.AppOwner;
|
|
Assert.IsTrue( steamid.Value > 70561197960279927 );
|
|
Assert.IsTrue( steamid.Value < 80561197960279927 );
|
|
|
|
Console.WriteLine( $"{steamid.Value}" );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void InstalledDepots()
|
|
{
|
|
var depots = SteamApps.InstalledDepots( 4000 ).ToArray();
|
|
|
|
Assert.IsNotNull( depots );
|
|
Assert.IsTrue( depots.Length > 0 );
|
|
|
|
foreach ( var depot in depots )
|
|
{
|
|
Console.WriteLine( $"{depot.Value}" );
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public async Task GetFileDetails()
|
|
{
|
|
var fileinfo = await SteamApps.GetFileDetailsAsync( "hl2.exe" );
|
|
|
|
Console.WriteLine( $"fileinfo.SizeInBytes: {fileinfo?.SizeInBytes}" );
|
|
Console.WriteLine( $"fileinfo.Sha1: {fileinfo?.Sha1}" );
|
|
Console.WriteLine( $"fileinfo.Flags: {fileinfo?.Flags}" );
|
|
}
|
|
|
|
[TestMethod]
|
|
public void CommandLine()
|
|
{
|
|
var cl = SteamApps.CommandLine;
|
|
|
|
Console.WriteLine( $"CommandLine: {cl}" );
|
|
}
|
|
}
|
|
|
|
}
|