mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Revert "Added new test framework (test) (#2247)"
This reverts commit b2120269a7.
* Added assert Fail as a test
80 lines
2.9 KiB
C#
80 lines
2.9 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 System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.SqlTools.ServiceLayer.Test.Common;
|
|
using Microsoft.SqlTools.SqlCore.Scripting;
|
|
using Microsoft.SqlTools.SqlCore.Scripting.Contracts;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.PerfTests
|
|
{
|
|
public class ScriptingTests
|
|
{
|
|
[Fact]
|
|
[CreateTestDb(TestServerType.Azure)]
|
|
public async Task ScripTableAzure()
|
|
{
|
|
TestServerType serverType = TestServerType.Azure;
|
|
await VerifyScriptTable(serverType);
|
|
}
|
|
|
|
[Fact]
|
|
[CreateTestDb(TestServerType.OnPrem)]
|
|
public async Task ScripTableOnPrem()
|
|
{
|
|
TestServerType serverType = TestServerType.OnPrem;
|
|
await VerifyScriptTable(serverType);
|
|
}
|
|
|
|
|
|
private async Task VerifyScriptTable(TestServerType serverType, [CallerMemberName] string testName = "")
|
|
{
|
|
await TestServiceDriverProvider.RunTestIterations(async (timer) =>
|
|
{
|
|
using (TestServiceDriverProvider testService = new TestServiceDriverProvider())
|
|
using (SelfCleaningTempFile queryTempFile = new SelfCleaningTempFile())
|
|
{
|
|
await testService.ConnectForQuery(serverType, string.Empty, queryTempFile.FilePath, Common.PerfTestDatabaseName);
|
|
List<ScriptingObject> scriptingObjects = new List<ScriptingObject>()
|
|
{
|
|
new ScriptingObject
|
|
{
|
|
Schema = "Person",
|
|
Name = "Address",
|
|
Type = "Table"
|
|
}
|
|
};
|
|
ScriptingParams scriptingParams = new ScriptingParams
|
|
{
|
|
OwnerUri = queryTempFile.FilePath,
|
|
Operation = ScriptingOperationType.Create,
|
|
FilePath = queryTempFile.FilePath,
|
|
ScriptOptions = new ScriptOptions
|
|
{
|
|
ScriptCreateDrop = "ScriptCreate",
|
|
},
|
|
ScriptDestination = "ToEditor",
|
|
ScriptingObjects = scriptingObjects
|
|
|
|
};
|
|
var result = await testService.CalculateRunTime(() => testService.RequestScript(scriptingParams), timer);
|
|
|
|
Assert.NotNull(result);
|
|
Assert.NotNull(result.Script);
|
|
|
|
Assert.False(string.IsNullOrEmpty(result.Script), "Script result is invalid");
|
|
|
|
await testService.Disconnect(queryTempFile.FilePath);
|
|
}
|
|
}, testName);
|
|
}
|
|
}
|
|
}
|