-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
913 changed files
with
207,048 additions
and
18,122 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
@echo off | ||
REM -------------------------------------------------------------------------------- | ||
REM environment variable guide | ||
REM -------------------------------------------------------------------------------- | ||
REM JAVA_HOME - home directory of a valid JDK installation (1.6 or above) | ||
REM PROJECT_HOME - home directory of your project. | ||
REM NEXIAL_OUT - the output directory | ||
REM FIREFOX_BIN - the full path of firefox.exe | ||
REM NEXIAL_RUNMODE - determine screen capture image strategy (local or server) | ||
REM -------------------------------------------------------------------------------- | ||
|
||
setlocal enableextensions enabledelayedexpansion | ||
|
||
set NEXIAL_BIN=%~dp0 | ||
|
||
call :init | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :title "nexial artifact repair" | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :checkJava | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :resolveEnv | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
REM run nexial now | ||
REM echo Runtime Option: %JAVA_OPT% | ||
echo. | ||
|
||
REM run now | ||
%JAVA% -classpath %NEXIAL_CLASSES%;%NEXIAL_LIB%\nexial*.jar;%NEXIAL_LIB%\* %JAVA_OPT% org.nexial.core.tools.repair.RepairArtifact %* | ||
|
||
endlocal | ||
exit /b 0 | ||
goto :eof | ||
|
||
:init | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:checkJava | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:title | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:resolveEnv | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:exit | ||
endlocal | ||
exit /b 1 | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
NEXIAL_HOME=$(cd `dirname $0`/..; pwd -P) | ||
. ${NEXIAL_HOME}/bin/.commons.sh | ||
title "nexial artifact repair" | ||
checkJava | ||
resolveEnv | ||
|
||
# run now | ||
${JAVA} -classpath "${NEXIAL_CLASSES}:${NEXIAL_LIB}/nexial*.jar:${NEXIAL_LIB}/*" ${JAVA_OPT} \ | ||
org.nexial.core.tools.repair.RepairArtifact $* | ||
|
||
exit $? |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@echo off | ||
|
||
setlocal enableextensions | ||
|
||
set NEXIAL_BIN=%~dp0 | ||
|
||
call :init | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :title "nexial macro updater" | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :checkJava | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :resolveEnv | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
echo. | ||
|
||
%JAVA% -classpath %NEXIAL_LIB%\nexial*.jar;%NEXIAL_LIB%\* %JAVA_OPT% org.nexial.core.tools.MacroUpdater %* | ||
endlocal | ||
exit /b 0 | ||
goto :eof | ||
|
||
:init | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:checkJava | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:title | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:resolveEnv | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:exit | ||
endlocal | ||
exit /b 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
NEXIAL_HOME=$(cd `dirname $0`/..; pwd -P) | ||
. ${NEXIAL_HOME}/bin/.commons.sh | ||
title "nexial macro updater" | ||
checkJava | ||
resolveEnv | ||
|
||
args="" | ||
for var in "$@"; do args="$args \"$var\""; done | ||
|
||
# run now | ||
echo | ||
echo | ||
|
||
eval ${JAVA} -classpath "${NEXIAL_CLASSES}:${NEXIAL_LIB}/nexial*.jar:${NEXIAL_LIB}/*" ${JAVA_OPT} org.nexial.core.tools.MacroUpdater ${args} | ||
ret=$? | ||
|
||
echo | ||
echo | ||
|
||
exit ${ret} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
@echo off | ||
|
||
setlocal enableextensions enabledelayedexpansion | ||
|
||
set NEXIAL_BIN=%~dp0 | ||
|
||
call :init | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :title "nexial project inspector" | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :checkJava | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
call :resolveEnv | ||
if NOT ERRORLEVEL 0 goto :exit | ||
|
||
REM run now | ||
echo. | ||
%JAVA% -classpath %NEXIAL_CLASSES%;%NEXIAL_LIB%\nexial*.jar;%NEXIAL_LIB%\* %JAVA_OPT% org.nexial.core.tools.inspector.ProjectInspector %* | ||
|
||
endlocal | ||
exit /b 0 | ||
goto :eof | ||
|
||
:init | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:checkJava | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:title | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:resolveEnv | ||
%NEXIAL_BIN%.commons.cmd %* | ||
|
||
:exit | ||
endlocal | ||
exit /b 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
NEXIAL_HOME=$(cd `dirname $0`/..; pwd -P) | ||
. ${NEXIAL_HOME}/bin/.commons.sh | ||
title "nexial project inspector" | ||
checkJava | ||
resolveEnv | ||
|
||
# run now | ||
${JAVA} -classpath "${NEXIAL_CLASSES}:${NEXIAL_LIB}/nexial*.jar:${NEXIAL_LIB}/*" ${JAVA_OPT} \ | ||
org.nexial.core.tools.inspector.ProjectInspector $* | ||
|
||
exit $? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.