mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 09:35:43 -05:00
* Make nullable warnings a per file opt-in * Remove unneeded compiler directives * Remove compiler directive for User Data
209 lines
8.4 KiB
C#
209 lines
8.4 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;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using Microsoft.Data.SqlClient;
|
|
using Microsoft.SqlTools.Credentials.Contracts;
|
|
using Microsoft.SqlTools.ServiceLayer.Connection.Contracts;
|
|
using NUnit.Framework;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.Test.Common
|
|
{
|
|
/// <summary>
|
|
/// Service to get connection profiles from the configured settings
|
|
/// credential service will be used to get the credentials
|
|
/// </summary>
|
|
public class TestConnectionProfileService
|
|
{
|
|
private static Dictionary<string, InstanceInfo> connectionProfilesCache = new Dictionary<string, InstanceInfo>();
|
|
private static TestConnectionProfileService instance = new TestConnectionProfileService();
|
|
|
|
public const string SqlAzureInstanceKey = "sqlAzure";
|
|
public const string SqlOnPremInstanceKey = "sqlOnPrem";
|
|
|
|
private TestConnectionProfileService()
|
|
{
|
|
LoadInstanceSettings();
|
|
}
|
|
|
|
public static TestConnectionProfileService Instance
|
|
{
|
|
get
|
|
{
|
|
return instance;
|
|
}
|
|
}
|
|
|
|
public static InstanceInfo? SqlAzure
|
|
{
|
|
get { return GetInstance(SqlAzureInstanceKey); }
|
|
}
|
|
|
|
public static InstanceInfo? SqlOnPrem
|
|
{
|
|
get { return GetInstance(SqlOnPremInstanceKey); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the SQL connection info for given version key
|
|
/// </summary>
|
|
public static InstanceInfo? GetInstance(string key)
|
|
{
|
|
connectionProfilesCache.TryGetValue(key, out InstanceInfo? instanceInfo);
|
|
Assert.True(instanceInfo != null, string.Format(CultureInfo.InvariantCulture, "Cannot find any instance for version key: {0}", key));
|
|
return instanceInfo;
|
|
}
|
|
|
|
public ConnectParams? GetConnectionParameters(string key = SqlOnPremInstanceKey, string databaseName = null)
|
|
{
|
|
InstanceInfo? instanceInfo = GetInstance(key);
|
|
return instanceInfo != null ? CreateConnectParams(instanceInfo, key, databaseName) : null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns database connection parameters for given server type
|
|
/// </summary>
|
|
public ConnectParams? GetConnectionParameters(TestServerType serverType = TestServerType.OnPrem, string databaseName = null)
|
|
{
|
|
string key = ConvertServerTypeToVersionKey(serverType);
|
|
return GetConnectionParameters(key, databaseName);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Forces the InstanceManager to load/reload it's instance list
|
|
/// </summary>
|
|
internal void LoadInstanceSettings()
|
|
{
|
|
try
|
|
{
|
|
connectionProfilesCache = new Dictionary<string, InstanceInfo>();
|
|
IEnumerable<TestServerIdentity> testServers = TestConfigPersistenceHelper.InitTestServerNames();
|
|
ConnectionSetting settings = TestConfigPersistenceHelper.InitSetting();
|
|
if (settings == null)
|
|
{
|
|
Console.WriteLine("DBTestInstance not configured. Run 'dotnet run Microsoft.SqlTools.ServiceLayer.TestEnvConfig' from the command line to configure");
|
|
}
|
|
|
|
if (testServers != null)
|
|
{
|
|
foreach (var serverIdentity in testServers)
|
|
{
|
|
var instance = settings?.GetConnectionProfile(serverIdentity.ProfileName, serverIdentity.ServerName);
|
|
if (instance?.ServerType == TestServerType.None)
|
|
{
|
|
instance.ServerType = serverIdentity.ServerType;
|
|
AddInstance(instance);
|
|
}
|
|
}
|
|
}
|
|
if (settings?.Connections != null)
|
|
{
|
|
foreach (var instance in settings.Connections)
|
|
{
|
|
AddInstance(instance);
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Assert.True(false, "Fail to load the SQL connection instances. error: " + ex.Message);
|
|
}
|
|
}
|
|
|
|
private static void AddInstance(InstanceInfo instance)
|
|
{
|
|
Console.WriteLine($"Checking whether instance should be added to connections cache, server type: {instance.ServerType.ToString()}, version key: {instance.VersionKey}");
|
|
if (instance != null && (instance.ServerType != TestServerType.None || !string.IsNullOrEmpty(instance.VersionKey)))
|
|
{
|
|
TestServerType serverType = instance.ServerType == TestServerType.None ? TestServerType.OnPrem : instance.ServerType; //Default to onPrem
|
|
string versionKey = string.IsNullOrEmpty(instance.VersionKey) ? ConvertServerTypeToVersionKey(serverType) : instance.VersionKey;
|
|
if (!connectionProfilesCache.ContainsKey(versionKey))
|
|
{
|
|
//If the password is empty, get the credential using the service
|
|
if (instance.AuthenticationType == AuthenticationType.SqlLogin && string.IsNullOrEmpty(instance.Password))
|
|
{
|
|
Credential credential = TestCredentialService.Instance.ReadCredential(instance);
|
|
instance.Password = credential.Password;
|
|
}
|
|
connectionProfilesCache.Add(versionKey, instance);
|
|
Console.WriteLine("Instance added.");
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Instance already in the cache.");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Instance skipped.");
|
|
}
|
|
}
|
|
|
|
private static string ConvertServerTypeToVersionKey(TestServerType serverType)
|
|
{
|
|
return serverType == TestServerType.OnPrem ? SqlOnPremInstanceKey : SqlAzureInstanceKey;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a connection parameters object
|
|
/// </summary>
|
|
private ConnectParams CreateConnectParams(InstanceInfo connectionProfile, string key, string databaseName)
|
|
{
|
|
ConnectParams connectParams = new ConnectParams();
|
|
connectParams.Connection = new ConnectionDetails();
|
|
connectParams.Connection.ServerName = connectionProfile.ServerName;
|
|
|
|
if (!string.IsNullOrEmpty(connectionProfile.Database))
|
|
{
|
|
connectParams.Connection.DatabaseName = connectionProfile.Database;
|
|
connectParams.Connection.DatabaseDisplayName = connectionProfile.Database;
|
|
}
|
|
if (!string.IsNullOrEmpty(connectionProfile.User))
|
|
{
|
|
connectParams.Connection.UserName = connectionProfile.User;
|
|
}
|
|
if (!string.IsNullOrEmpty(connectionProfile.Password))
|
|
{
|
|
connectParams.Connection.Password = connectionProfile.Password;
|
|
}
|
|
|
|
connectParams.Connection.AuthenticationType = connectionProfile.AuthenticationType.ToString();
|
|
connectParams.Connection.MaxPoolSize = 200;
|
|
|
|
if (!string.IsNullOrEmpty(connectionProfile.Encrypt))
|
|
{
|
|
connectParams.Connection.Encrypt = connectionProfile.Encrypt;
|
|
}
|
|
else
|
|
{
|
|
connectParams.Connection.Encrypt = SqlConnectionEncryptOption.Optional.ToString();
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(connectionProfile.HostNameInCertificate))
|
|
{
|
|
connectParams.Connection.HostNameInCertificate = connectionProfile.HostNameInCertificate;
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(databaseName))
|
|
{
|
|
connectParams.Connection.DatabaseName = databaseName;
|
|
connectParams.Connection.DatabaseDisplayName = databaseName;
|
|
}
|
|
if (key == SqlAzureInstanceKey || key == SqlAzureInstanceKey)
|
|
{
|
|
connectParams.Connection.ConnectTimeout = 30;
|
|
connectParams.Connection.Encrypt = SqlConnectionEncryptOption.Mandatory.ToString();
|
|
connectParams.Connection.TrustServerCertificate = false;
|
|
}
|
|
|
|
return connectParams;
|
|
}
|
|
}
|
|
}
|