// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using System; using System.Collections.Concurrent; using System.Linq; using Microsoft.SqlTools.Hosting.Contracts.Internal; using Microsoft.SqlTools.Hosting.Protocol; using Xunit; namespace Microsoft.SqlTools.Hosting.UnitTests.ProtocolTests { public class RequestContextTests { #region Send Tests [Fact] public void SendResult() { // Setup: Create a blocking collection to collect the output var bc = new BlockingCollection(new ConcurrentQueue()); // If: I write a response with the request context var rc = new RequestContext(CommonObjects.RequestMessage, bc); rc.SendResult(CommonObjects.TestMessageContents.DefaultInstance); // Then: The message writer should have sent a response Assert.Single(bc); Assert.Equal(MessageType.Response, bc.First().MessageType); } [Fact] public void SendEvent() { // Setup: Create a blocking collection to collect the output var bc = new BlockingCollection(new ConcurrentQueue()); // If: I write an event with the request context var rc = new RequestContext(CommonObjects.RequestMessage, bc); rc.SendEvent(CommonObjects.EventType, CommonObjects.TestMessageContents.DefaultInstance); // Then: The message writer should have sent an event Assert.Single(bc); Assert.Equal(MessageType.Event, bc.First().MessageType); } [Fact] public void SendError() { // Setup: Create a blocking collection to collect the output const string errorMessage = "error"; const int errorCode = 123; var bc = new BlockingCollection(new ConcurrentQueue()); // If: I write an error with the request context var rc = new RequestContext(CommonObjects.RequestMessage, bc); rc.SendError(errorMessage, errorCode); // Then: // ... The message writer should have sent an error Assert.Single(bc); Assert.Equal(MessageType.ResponseError, bc.First().MessageType); // ... The error object it built should have the reuired fields set var contents = bc.ToArray()[0].GetTypedContents(); Assert.Equal(errorCode, contents.Code); Assert.Equal(errorMessage, contents.Message); } [Fact] public void SendException() { // Setup: Create a blocking collection to collect the output var bc = new BlockingCollection(new ConcurrentQueue()); // If: I write an error as an exception with the request context const string errorMessage = "error"; var e = new Exception(errorMessage); var rc = new RequestContext(CommonObjects.RequestMessage, bc); rc.SendError(e); // Then: // ... The message writer should have sent an error Assert.Single(bc); var firstMessage = bc.First(); Assert.Equal(MessageType.ResponseError, firstMessage.MessageType); // ... The error object it built should have the reuired fields set var contents = firstMessage.GetTypedContents(); Assert.Equal(e.HResult, contents.Code); Assert.Equal(errorMessage, contents.Message); } #endregion } }