55 lines
1.8 KiB
C#
55 lines
1.8 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.IO;
|
|
using System.IO.Pipelines;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Threading.Tasks.Channels;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Sockets.Transports;
|
|
using Microsoft.Extensions.Logging;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Sockets.Tests
|
|
{
|
|
public class LongPollingTests
|
|
{
|
|
[Fact]
|
|
public async Task Set204StatusCodeWhenChannelComplete()
|
|
{
|
|
var channel = Channel.CreateUnbounded<Message>();
|
|
var context = new DefaultHttpContext();
|
|
var poll = new LongPollingTransport(channel, new LoggerFactory());
|
|
|
|
Assert.True(channel.Out.TryComplete());
|
|
|
|
await poll.ProcessRequestAsync(context, context.RequestAborted);
|
|
|
|
Assert.Equal(204, context.Response.StatusCode);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task FrameSentAsSingleResponse()
|
|
{
|
|
var channel = Channel.CreateUnbounded<Message>();
|
|
var context = new DefaultHttpContext();
|
|
var poll = new LongPollingTransport(channel, new LoggerFactory());
|
|
var ms = new MemoryStream();
|
|
context.Response.Body = ms;
|
|
|
|
await channel.Out.WriteAsync(new Message(
|
|
ReadableBuffer.Create(Encoding.UTF8.GetBytes("Hello World")).Preserve(),
|
|
Format.Text,
|
|
endOfMessage: true));
|
|
|
|
Assert.True(channel.Out.TryComplete());
|
|
|
|
await poll.ProcessRequestAsync(context, context.RequestAborted);
|
|
|
|
Assert.Equal(200, context.Response.StatusCode);
|
|
Assert.Equal("Hello World", Encoding.UTF8.GetString(ms.ToArray()));
|
|
}
|
|
}
|
|
}
|