mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 17:23:27 -05:00
* Make nullable warnings a per file opt-in * Remove unneeded compiler directives * Remove compiler directive for User Data
85 lines
2.2 KiB
C#
85 lines
2.2 KiB
C#
//
|
|
// 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 Microsoft.SqlTools.ServiceLayer.DisasterRecovery;
|
|
using Microsoft.SqlTools.ServiceLayer.DisasterRecovery.Contracts;
|
|
using Microsoft.SqlTools.ServiceLayer.Management;
|
|
using Microsoft.SqlTools.ServiceLayer.TaskServices;
|
|
using System;
|
|
using Microsoft.Data.SqlClient;
|
|
using System.Threading;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.UnitTests.DisasterRecovery
|
|
{
|
|
/// <summary>
|
|
/// Stub class that implements IBackupOperation
|
|
/// </summary>
|
|
public class BackupOperationStub : IBackupOperation
|
|
{
|
|
public SemaphoreSlim BackupSemaphore { get; set; }
|
|
|
|
public BackupOperationStub()
|
|
{
|
|
this.BackupSemaphore = new SemaphoreSlim(0, 1);
|
|
}
|
|
|
|
public string ScriptContent { get; set; }
|
|
|
|
public string ErrorMessage
|
|
{
|
|
get
|
|
{
|
|
return string.Empty;
|
|
}
|
|
}
|
|
|
|
public SqlTask SqlTask { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initialize
|
|
/// </summary>
|
|
/// <param name="dataContainer"></param>
|
|
/// <param name="sqlConnection"></param>
|
|
public void Initialize(CDataContainer dataContainer, SqlConnection sqlConnection)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return database metadata for backup
|
|
/// </summary>
|
|
/// <param name="databaseName"></param>
|
|
/// <returns></returns>
|
|
public BackupConfigInfo CreateBackupConfigInfo(string databaseName)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Set backup input properties
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
public void SetBackupInput(BackupInfo input)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Execute backup
|
|
/// </summary>
|
|
public void Execute(TaskExecutionMode mode)
|
|
{
|
|
this.BackupSemaphore.Wait(TimeSpan.FromSeconds(5));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Cancel backup
|
|
/// </summary>
|
|
public void Cancel()
|
|
{
|
|
}
|
|
}
|
|
}
|