Facepunch.Steamworks/Facepunch.Steamworks.Test/UserTest.cs

120 lines
3.0 KiB
C#
Raw Normal View History

2019-04-15 13:06:32 +03:00
using System;
using System.Diagnostics;
using System.IO;
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 UserTest
{
[TestMethod]
public void GetVoice()
{
using ( var stream = new MemoryStream() )
{
int compressed = 0;
2019-04-16 16:21:48 +03:00
SteamUser.VoiceRecord = true;
2019-04-15 13:06:32 +03:00
var sw = Stopwatch.StartNew();
while ( sw.Elapsed.TotalSeconds < 3 )
{
System.Threading.Thread.Sleep( 10 );
2019-04-16 16:21:48 +03:00
compressed += SteamUser.ReadVoiceData( stream );
2019-04-15 13:06:32 +03:00
}
Assert.AreEqual( compressed, stream.Length );
Console.WriteLine( $"compressed: {compressed}", compressed );
Console.WriteLine( $"stream.Length: {stream.Length}", stream.Length );
}
}
[TestMethod]
public void OptimalSampleRate()
{
2019-04-16 16:21:48 +03:00
var rate = SteamUser.OptimalSampleRate;
2019-04-15 13:06:32 +03:00
Assert.AreNotEqual( rate, 0 );
2019-04-16 16:21:48 +03:00
Console.WriteLine( $"User.OptimalSampleRate: {SteamUser.OptimalSampleRate}" );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public void IsLoggedOn()
{
2019-04-16 16:26:42 +03:00
Assert.AreNotEqual( false, SteamClient.IsLoggedOn );
Console.WriteLine( $"User.IsLoggedOn: {SteamClient.IsLoggedOn}" );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public void SteamID()
{
2019-04-16 16:26:42 +03:00
Assert.AreNotEqual( 0, SteamClient.SteamId.Value );
Console.WriteLine( $"User.SteamID: {SteamClient.SteamId.Value}" );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public void AuthSession()
{
2019-04-16 16:21:48 +03:00
var ticket = SteamUser.GetAuthSessionTicket();
2019-04-15 13:06:32 +03:00
Assert.AreNotEqual( 0, ticket.Handle );
Assert.AreNotEqual( 0, ticket.Data.Length );
Console.WriteLine( $"ticket.Handle: {ticket.Handle}" );
Console.WriteLine( $"ticket.Data: { string.Join( "", ticket.Data.Select( x => x.ToString( "x" ) ) ) }" );
2019-04-16 16:26:42 +03:00
var result = SteamUser.BeginAuthSession( ticket.Data, SteamClient.SteamId );
2019-04-15 13:06:32 +03:00
Console.WriteLine( $"result: { result }" );
2019-04-16 14:17:24 +03:00
Assert.AreEqual( result, BeginAuthResult.OK );
2019-04-15 13:06:32 +03:00
2019-04-16 16:26:42 +03:00
SteamUser.EndAuthSession( SteamClient.SteamId );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public void SteamLevel()
{
2019-04-16 16:21:48 +03:00
Assert.AreNotEqual( 0, SteamUser.SteamLevel );
Console.WriteLine( $"User.SteamLevel: {SteamUser.SteamLevel}" );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public async Task GetStoreAuthUrlAsync()
{
2019-04-16 16:21:48 +03:00
var rustskins = await SteamUser.GetStoreAuthUrlAsync( "https://store.steampowered.com/itemstore/252490/" );
2019-04-15 13:06:32 +03:00
Assert.IsNotNull( rustskins );
Console.WriteLine( $"rustskins: {rustskins}" );
}
[TestMethod]
public void IsPhoneVerified()
{
2019-04-16 16:21:48 +03:00
Console.WriteLine( $"User.IsPhoneVerified: {SteamUser.IsPhoneVerified}" );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public void IsTwoFactorEnabled()
{
2019-04-16 16:21:48 +03:00
Console.WriteLine( $"User.IsTwoFactorEnabled: {SteamUser.IsTwoFactorEnabled}" );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public void IsPhoneIdentifying()
{
2019-04-16 16:21:48 +03:00
Console.WriteLine( $"User.IsPhoneIdentifying: {SteamUser.IsPhoneIdentifying}" );
2019-04-15 13:06:32 +03:00
}
[TestMethod]
public void IsPhoneRequiringVerification()
{
2019-04-16 16:21:48 +03:00
Console.WriteLine( $"User.IsPhoneRequiringVerification: {SteamUser.IsPhoneRequiringVerification}" );
2019-04-15 13:06:32 +03:00
}
}
}