mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
The goal of this make sure that test code is correctly organized to ensure that test suites aren't dependent on each other.
* UnitTests get their own project now (renaming Microsoft.SqlTools.ServiceLayer.Test to Microsoft.SqlTools.ServiceLayer.UnitTests) which is about 90% of the changes to the files.
* IntegrationTests no longer depends on UnitTests, only Test.Common
* Any shared components from TestObjects that spins up a "live" connection has been moved to IntegrationTests Utility/LiveConnectionHelper.cs
* The dictionary-based mock file stream factory has been moved to Test.Common since it is used by UnitTests and IntegrationTests
* Added a overload that doesn't take a dictionary for when we don't care about monitoring the storage (about 90% of the time)
* The RunIf* wrapper methods have been moved to Test.Common
* OwnerUri and StandardQuery constants have been moved to Test.Common Constants file
* Updating to latest SDK version available at https://www.microsoft.com/net/core#windowscmd
* Moving unit tests to unit test folder
* Changing namespaces to UnitTests
* Moving some constants and shared functionality into common project, making the UnitTests reference it
* Unit tests are working!
* Integration tests are working
* Updating automated test runs
* Fixing one last broken unit test
* Exposing internals for other projects
* Moving edit data tests to UnitTest project
* Applying refactor fixes to unit tests
* Fixing flaky test that wasn't awaiting completion
107 lines
4.0 KiB
C#
107 lines
4.0 KiB
C#
using System.Data.SqlClient;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using Microsoft.SqlServer.Management.Common;
|
|
using Microsoft.SqlTools.ServiceLayer.Connection;
|
|
using Microsoft.SqlTools.ServiceLayer.Connection.Contracts;
|
|
using Microsoft.SqlTools.ServiceLayer.Test.Common;
|
|
using Microsoft.SqlTools.ServiceLayer.Workspace.Contracts;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.Utility
|
|
{
|
|
public class LiveConnectionHelper
|
|
{
|
|
public static string GetTestSqlFile()
|
|
{
|
|
string filePath = Path.Combine(
|
|
Path.GetDirectoryName(Assembly.GetEntryAssembly().Location),
|
|
"sqltest.sql");
|
|
if (File.Exists(filePath))
|
|
{
|
|
File.Delete(filePath);
|
|
}
|
|
File.WriteAllText(filePath, "SELECT * FROM sys.objects\n");
|
|
return filePath;
|
|
|
|
}
|
|
|
|
public static TestConnectionResult InitLiveConnectionInfo()
|
|
{
|
|
string sqlFilePath = GetTestSqlFile();
|
|
ScriptFile scriptFile = TestServiceProvider.Instance.WorkspaceService.Workspace.GetFile(sqlFilePath);
|
|
ConnectParams connectParams = TestServiceProvider.Instance.ConnectionProfileService.GetConnectionParameters(TestServerType.OnPrem);
|
|
|
|
string ownerUri = scriptFile.ClientFilePath;
|
|
var connectionService = GetLiveTestConnectionService();
|
|
var connectionResult =
|
|
connectionService
|
|
.Connect(new ConnectParams
|
|
{
|
|
OwnerUri = ownerUri,
|
|
Connection = connectParams.Connection
|
|
});
|
|
|
|
connectionResult.Wait();
|
|
|
|
ConnectionInfo connInfo = null;
|
|
connectionService.TryFindConnection(ownerUri, out connInfo);
|
|
return new TestConnectionResult() { ConnectionInfo = connInfo, ScriptFile = scriptFile };
|
|
}
|
|
|
|
public static ConnectionInfo InitLiveConnectionInfoForDefinition(string databaseName = null)
|
|
{
|
|
ConnectParams connectParams = TestServiceProvider.Instance.ConnectionProfileService.GetConnectionParameters(TestServerType.OnPrem, databaseName);
|
|
const string ScriptUriTemplate = "file://some/{0}.sql";
|
|
string ownerUri = string.Format(CultureInfo.InvariantCulture, ScriptUriTemplate, string.IsNullOrEmpty(databaseName) ? "file" : databaseName);
|
|
var connectionService = GetLiveTestConnectionService();
|
|
var connectionResult =
|
|
connectionService
|
|
.Connect(new ConnectParams
|
|
{
|
|
OwnerUri = ownerUri,
|
|
Connection = connectParams.Connection
|
|
});
|
|
|
|
connectionResult.Wait();
|
|
|
|
ConnectionInfo connInfo = null;
|
|
connectionService.TryFindConnection(ownerUri, out connInfo);
|
|
|
|
Assert.NotNull(connInfo);
|
|
return connInfo;
|
|
}
|
|
|
|
public static ServerConnection InitLiveServerConnectionForDefinition(ConnectionInfo connInfo)
|
|
{
|
|
SqlConnection sqlConn = new SqlConnection(ConnectionService.BuildConnectionString(connInfo.ConnectionDetails));
|
|
return new ServerConnection(sqlConn);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a test sql connection factory instance
|
|
/// </summary>
|
|
public static ISqlConnectionFactory GetLiveTestSqlConnectionFactory()
|
|
{
|
|
// connect to a real server instance
|
|
return ConnectionService.Instance.ConnectionFactory;
|
|
}
|
|
|
|
public static ConnectionService GetLiveTestConnectionService()
|
|
{
|
|
// connect to a real server instance
|
|
return ConnectionService.Instance;
|
|
}
|
|
|
|
public class TestConnectionResult
|
|
{
|
|
public ConnectionInfo ConnectionInfo { get; set; }
|
|
|
|
public ScriptFile ScriptFile { get; set; }
|
|
|
|
public TextDocumentPosition TextDocumentPosition { get; set; }
|
|
}
|
|
}
|
|
}
|