Added UI for user to accept EULA when deploying sql proj to docker container (#17762)

This commit is contained in:
Leila Lali
2021-11-30 15:08:23 -08:00
committed by GitHub
parent ce7935e7d2
commit 7e17bfb6ec
8 changed files with 163 additions and 17 deletions

View File

@@ -76,7 +76,8 @@ describe('deploy service', function (): void {
serverName: 'localhost',
userName: 'sa',
dockerBaseImage: 'image',
connectionRetryTimeout: 1
connectionRetryTimeout: 1,
dockerBaseImageEula: ''
}
};
const projFilePath = await testUtils.createTestSqlProjFile(baselines.newProjectFileBaseline);
@@ -105,7 +106,8 @@ describe('deploy service', function (): void {
serverName: 'localhost',
userName: 'sa',
dockerBaseImage: 'image',
connectionRetryTimeout: 1
connectionRetryTimeout: 1,
dockerBaseImageEula: ''
}
};
const projFilePath = await testUtils.createTestSqlProjFile(baselines.newProjectFileBaseline);
@@ -128,7 +130,8 @@ describe('deploy service', function (): void {
serverName: 'localhost',
userName: 'sa',
dockerBaseImage: 'image',
connectionRetryTimeout: 1
connectionRetryTimeout: 1,
dockerBaseImageEula: ''
};
const shellExecutionHelper = TypeMoq.Mock.ofType(ShellExecutionHelper);
@@ -177,7 +180,8 @@ describe('deploy service', function (): void {
port: 1433,
serverName: 'localhost',
userName: 'sa',
dockerBaseImage: 'image'
dockerBaseImage: 'image',
dockerBaseImageEula: ''
}
};