mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			948 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			948 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using Xunit;
 | 
						|
 | 
						|
namespace Jellyfin.Server.Integration.Tests
 | 
						|
{
 | 
						|
    public sealed class WebSocketTests : IClassFixture<JellyfinApplicationFactory>
 | 
						|
    {
 | 
						|
        private readonly JellyfinApplicationFactory _factory;
 | 
						|
 | 
						|
        public WebSocketTests(JellyfinApplicationFactory factory)
 | 
						|
        {
 | 
						|
            _factory = factory;
 | 
						|
        }
 | 
						|
 | 
						|
        [Fact]
 | 
						|
        public async Task WebSocket_Unauthenticated_ThrowsInvalidOperationException()
 | 
						|
        {
 | 
						|
            var server = _factory.Server;
 | 
						|
            var client = server.CreateWebSocketClient();
 | 
						|
 | 
						|
            await Assert.ThrowsAsync<InvalidOperationException>(
 | 
						|
                () => client.ConnectAsync(
 | 
						|
                    new UriBuilder(server.BaseAddress)
 | 
						|
                    {
 | 
						|
                        Scheme = "ws",
 | 
						|
                        Path = "websocket"
 | 
						|
                    }.Uri, CancellationToken.None));
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |