mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Add Delete Job Step implementation * Update create\update agent alert handlers to use execution handler * Cleanup create/update/delete operator request handlers
86 lines
3.5 KiB
C#
86 lines
3.5 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
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 Moq;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.Agent
|
|
{
|
|
public class AgentOperatorTests
|
|
{
|
|
/// <summary>
|
|
/// Verify the default "create agent alert" request handler with valid parameters
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task TestHandleCreateAgentOperatorRequest()
|
|
{
|
|
using (SelfCleaningTempFile queryTempFile = new SelfCleaningTempFile())
|
|
{
|
|
// setup
|
|
var service = new AgentService();
|
|
var operatorInfo = AgentTestUtils.GetTestOperatorInfo();
|
|
var connectionResult = await LiveConnectionHelper.InitLiveConnectionInfoAsync("master", queryTempFile.FilePath);
|
|
await AgentTestUtils.DeleteAgentOperator(service, connectionResult, operatorInfo);
|
|
|
|
// test
|
|
await AgentTestUtils.CreateAgentOperator(service, connectionResult, operatorInfo);
|
|
|
|
// cleanup
|
|
await AgentTestUtils.DeleteAgentOperator(service, connectionResult, operatorInfo);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// TestHandleUpdateAgentOperatorRequest
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task TestHandleUpdateAgentOperatorRequest()
|
|
{
|
|
using (SelfCleaningTempFile queryTempFile = new SelfCleaningTempFile())
|
|
{
|
|
// setup
|
|
var service = new AgentService();
|
|
var operatorInfo = AgentTestUtils.GetTestOperatorInfo();
|
|
var connectionResult = await LiveConnectionHelper.InitLiveConnectionInfoAsync("master", queryTempFile.FilePath);
|
|
await AgentTestUtils.DeleteAgentOperator(service, connectionResult, operatorInfo);
|
|
await AgentTestUtils.CreateAgentOperator(service, connectionResult, operatorInfo);
|
|
|
|
// test
|
|
operatorInfo.EmailAddress = "updated@email.com";
|
|
await AgentTestUtils.UpdateAgentOperator(service, connectionResult, operatorInfo);
|
|
|
|
// cleanup
|
|
await AgentTestUtils.DeleteAgentOperator(service, connectionResult, operatorInfo);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// TestHandleDeleteAgentOperatorRequest
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task TestHandleDeleteAgentOperatorRequest()
|
|
{
|
|
using (SelfCleaningTempFile queryTempFile = new SelfCleaningTempFile())
|
|
{
|
|
// setup
|
|
var service = new AgentService();
|
|
var operatorInfo = AgentTestUtils.GetTestOperatorInfo();
|
|
var connectionResult = await LiveConnectionHelper.InitLiveConnectionInfoAsync("master", queryTempFile.FilePath);
|
|
await AgentTestUtils.DeleteAgentOperator(service, connectionResult, operatorInfo);
|
|
await AgentTestUtils.CreateAgentOperator(service, connectionResult, operatorInfo);
|
|
|
|
// test
|
|
await AgentTestUtils.DeleteAgentOperator(service, connectionResult, operatorInfo);
|
|
}
|
|
}
|
|
}
|
|
}
|