mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 01:25:36 -05:00
Add support for AAD interactive connection strings for project data sources (#11761)
* add support for AAD interactive for project data sources * fix whitespace * remove warning message * choose azureMFA if a connection string has both integrated security=true and authentication=active directory interactive
This commit is contained in:
@@ -16,6 +16,14 @@
|
||||
"data": {
|
||||
"connectionString": "Data Source=.;Initial Catalog=testDb2;Integrated Security=False"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "AAD Interactive Data Source",
|
||||
"type": "sql_connection_string",
|
||||
"version": "0.0.0",
|
||||
"data": {
|
||||
"connectionString": "Data Source=.;Initial Catalog=testDb3;Authentication='Active Directory Interactive'"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ describe.skip('Data Sources: DataSource operations', function (): void {
|
||||
const dataSourcePath = await testUtils.createTestDataSources(baselines.openDataSourcesBaseline);
|
||||
const dataSourceList = await dataSources.load(dataSourcePath);
|
||||
|
||||
should(dataSourceList.length).equal(2);
|
||||
should(dataSourceList.length).equal(3);
|
||||
|
||||
should(dataSourceList[0].name).equal('Test Data Source 1');
|
||||
should(dataSourceList[0].type).equal(sql.SqlConnectionDataSource.type);
|
||||
@@ -26,5 +26,9 @@ describe.skip('Data Sources: DataSource operations', function (): void {
|
||||
|
||||
should(dataSourceList[1].name).equal('My Other Data Source');
|
||||
should((dataSourceList[1] as sql.SqlConnectionDataSource).integratedSecurity).equal(false);
|
||||
|
||||
should(dataSourceList[2].name).equal('AAD Interactive Data Source');
|
||||
should((dataSourceList[2] as sql.SqlConnectionDataSource).integratedSecurity).equal(false);
|
||||
should((dataSourceList[2] as sql.SqlConnectionDataSource).azureMFA).equal(true);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -84,7 +84,7 @@ describe('ProjectsController', function (): void {
|
||||
const project = await projController.openProject(vscode.Uri.file(sqlProjPath));
|
||||
|
||||
should(project.files.length).equal(9); // detailed sqlproj tests in their own test file
|
||||
should(project.dataSources.length).equal(2); // detailed datasources tests in their own test file
|
||||
should(project.dataSources.length).equal(3); // detailed datasources tests in their own test file
|
||||
});
|
||||
|
||||
it('Should load both project and referenced project', async function (): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user