// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // #nullable disable using System.Threading.Tasks; using Microsoft.SqlTools.Hosting.Protocol; using Microsoft.SqlTools.ServiceLayer.Agent; using Microsoft.SqlTools.ServiceLayer.Agent.Contracts; using Microsoft.SqlTools.ServiceLayer.IntegrationTests.Utility; using Microsoft.SqlTools.ServiceLayer.Test.Common; using Microsoft.SqlTools.ServiceLayer.Utility; using Moq; using NUnit.Framework; namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.Agent { public class AgentServiceTests { /// /// Verify that a start profiling request starts a profiling session /// [Test] public async Task TestHandleAgentJobsRequest() { using (SelfCleaningTempFile queryTempFile = new SelfCleaningTempFile()) { var connectionResult = await LiveConnectionHelper.InitLiveConnectionInfoAsync("master", queryTempFile.FilePath); var requestParams = new AgentJobsParams() { OwnerUri = connectionResult.ConnectionInfo.OwnerUri }; var requestContext = new Mock>(); AgentService service = new AgentService(); await service.HandleAgentJobsRequest(requestParams, requestContext.Object); requestContext.VerifyAll(); } } /// /// Verify that a job history request returns the job history /// [Test] [Ignore("Skipping test since it doesn't work - there's no jobs so it just immediately throws.")] public async Task TestHandleJobHistoryRequests() { using (SelfCleaningTempFile queryTempFile = new SelfCleaningTempFile()) { var connectionResult = await LiveConnectionHelper.InitLiveConnectionInfoAsync("master", queryTempFile.FilePath); var requestParams = new AgentJobHistoryParams() { OwnerUri = connectionResult.ConnectionInfo.OwnerUri, JobId = "e9420919-b8c2-4a3d-a26c-b7ffde5342cf" }; var requestContext = new Mock>(); AgentService service = new AgentService(); await service.HandleJobHistoryRequest(requestParams, requestContext.Object); requestContext.VerifyAll(); } } [Test] public async Task TestHandleAgentJobActionRequest() { using (SelfCleaningTempFile queryTempFile = new SelfCleaningTempFile()) { var connectionResult = await LiveConnectionHelper.InitLiveConnectionInfoAsync("master", queryTempFile.FilePath); var requestParams = new AgentJobActionParams() { OwnerUri = connectionResult.ConnectionInfo.OwnerUri, JobName = "Agent history clean up: distribution" }; var requestContext = new Mock>(); AgentService service = new AgentService(); await service.HandleJobActionRequest(requestParams, requestContext.Object); requestContext.VerifyAll(); } } } }