mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Add check OE node tests (#4273)
* Added verify OE child nodes tests for sandalone and BDC instance * msg changes * Added standalone OE node test * Resolved PR comments * Change env name * Added scripts to set env for integration test
This commit is contained in:
5
scripts/setbackendvariables.cmd
Normal file
5
scripts/setbackendvariables.cmd
Normal file
@@ -0,0 +1,5 @@
|
||||
@echo off pass in username password hostname of big data cluster
|
||||
set BDC_BACKEND_USERNAME=%~1
|
||||
set BDC_BACKEND_PWD=%~2
|
||||
set BDC_BACKEND_HOSTNAME=%~3
|
||||
@echo No problem reading %BDC_BACKEND_HOSTNAME%, password and %BDC_BACKEND_HOSTNAME%
|
||||
6
scripts/setbackendvariables.sh
Normal file
6
scripts/setbackendvariables.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
# echo pass in username password hostname of big data cluster
|
||||
export BDC_BACKEND_USERNAME=$1
|
||||
export BDC_BACKEND_PWD=$2
|
||||
export BDC_BACKEND_HOSTNAME=$3
|
||||
echo No problem reading $BDC_BACKEND_USERNAME, password and $BDC_BACKEND_HOSTNAME
|
||||
set
|
||||
@@ -8,7 +8,7 @@ echo %VSCODEUSERDATADIR%
|
||||
echo %VSCODEEXTENSIONSDIR%
|
||||
@echo OFF
|
||||
|
||||
call .\scripts\code.bat --extensionDevelopmentPath=%~dp0\..\extensions\integration-tests --extensionTestsPath=%~dp0\..\extensions\integration-tests\out --user-data-dir=%VSCODEUSERDATADIR% --extensions-dir=%VSCODEEXTENSIONSDIR%
|
||||
call .\scripts\code.bat --extensionDevelopmentPath=%~dp0\..\extensions\integration-tests --extensionTestsPath=%~dp0\..\extensions\integration-tests\out --user-data-dir=%VSCODEUSERDATADIR% --extensions-dir=%VSCODEEXTENSIONSDIR% --remote-debugging-port=9222
|
||||
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ cd $ROOT
|
||||
echo $VSCODEUSERDATADIR
|
||||
echo $VSCODEEXTDIR
|
||||
|
||||
./scripts/code.sh --extensionDevelopmentPath=$ROOT/extensions/integration-tests --extensionTestsPath=$ROOT/extensions/integration-tests/out --user-data-dir=$VSCODEUSERDATADIR --extensions-dir=$VSCODEEXTDIR
|
||||
./scripts/code.sh --extensionDevelopmentPath=$ROOT/extensions/integration-tests --extensionTestsPath=$ROOT/extensions/integration-tests/out --user-data-dir=$VSCODEUSERDATADIR --extensions-dir=$VSCODEEXTDIR --remote-debugging-port=9222
|
||||
|
||||
|
||||
rm -r $VSCODEUSERDATADIR
|
||||
|
||||
Reference in New Issue
Block a user