21 lines
No EOL
746 B
C#
21 lines
No EOL
746 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using FrostFS.SDK.Client;
|
|
|
|
namespace FrostFS.SDK.Tests.Smoke;
|
|
|
|
[SuppressMessage("Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "Default Value is correct for tests")]
|
|
[SuppressMessage("Security", "CA5394:Do not use insecure randomness", Justification = "No secure purpose")]
|
|
public class SessionTests : SmokeTestsBase
|
|
{
|
|
[Fact]
|
|
public async void GetSessionTest()
|
|
{
|
|
var client = FrostFSClient.GetInstance(ClientOptions, GrpcChannel);
|
|
|
|
var token = await client.CreateSessionAsync(new(100), default);
|
|
|
|
Assert.NotNull(token);
|
|
Assert.NotEqual(Guid.Empty, token.Id);
|
|
Assert.Equal(33, token.SessionKey.Length);
|
|
}
|
|
} |