Add SQL Binding Tests (#18687)

* add tests
This commit is contained in:
Vasu Bhog
2022-03-09 16:35:51 -08:00
committed by GitHub
parent 65b4847874
commit 0c54c12772
9 changed files with 1335 additions and 9 deletions

View File

@@ -37,6 +37,7 @@ if "%INTEGRATION_TEST_ELECTRON_PATH%"=="" (
compile-extension:mssql^
compile-extension:notebook^
compile-extension:resource-deployment^
compile-extension:sql-bindings^
compile-extension:sql-database-projects
:: Configuration for more verbose output
@@ -121,6 +122,11 @@ REM echo *** starting mssql tests ***
REM echo ******************************************
REM call "%INTEGRATION_TEST_ELECTRON_PATH%" --extensionDevelopmentPath=%~dp0\..\extensions\mssql --extensionTestsPath=%~dp0\..\extensions\mssql\out\test %ALL_PLATFORMS_API_TESTS_EXTRA_ARGS%
echo ********************************************
echo *** starting sql-bindings tests ***
echo ********************************************
call "%INTEGRATION_TEST_ELECTRON_PATH%" --extensionDevelopmentPath=%~dp0\..\extensions\sql-bindings --extensionTestsPath=%~dp0\..\extensions\sql-bindings\out\test %ALL_PLATFORMS_API_TESTS_EXTRA_ARGS%
echo ********************************************
echo *** starting sql-database-projects tests ***
echo ********************************************

View File

@@ -24,7 +24,8 @@ const extensionList = [
'machine-learning',
'resource-deployment',
'schema-compare',
'sql-database-projects',
'sql-bindings',
'sql-database-projects'
];
let argv = require('yargs')

View File

@@ -59,6 +59,7 @@ else
compile-extension:mssql \
compile-extension:notebook \
compile-extension:resource-deployment \
compile-extension:sql-bindings \
compile-extension:sql-database-projects
# Configuration for more verbose output
@@ -154,6 +155,12 @@ echo ************************************************
# echo ******************************************
# "$INTEGRATION_TEST_ELECTRON_PATH" $LINUX_EXTRA_ARGS --extensionDevelopmentPath=$ROOT/extensions/mssql --extensionTestsPath=$ROOT/extensions/mssql/out/test $ALL_PLATFORMS_API_TESTS_EXTRA_ARGS
echo ********************************************
echo *** starting sql-bindings tests ***
echo ********************************************
"$INTEGRATION_TEST_ELECTRON_PATH" $LINUX_EXTRA_ARGS --extensionDevelopmentPath=$ROOT/extensions/sql-bindings --extensionTestsPath=$ROOT/extensions/sql-bindings/out/test $ALL_PLATFORMS_API_TESTS_EXTRA_ARGS
echo ********************************************
echo *** starting sql-database-projects tests ***
echo ********************************************