2023-10-30 07:11:51 +00:00
// testloader.js
2023-12-18 21:47:48 +00:00
// Namhyeon Go <abuse@catswords.net>
// https://github.com/gnh1201/welsonjs
2023-10-30 04:41:43 +00:00
2023-10-30 07:11:51 +00:00
// load libraries
2023-10-30 04:41:43 +00:00
var FILE = require ( "lib/file" ) ;
// implement the tests
2023-10-30 05:36:22 +00:00
var test _implements = {
2024-06-01 17:00:17 +00:00
// https://gist.github.com/CityRay/c56e4fa874af9370cc1a367bd43095b0
2023-10-30 10:51:48 +00:00
"es5_polyfills" : function ( ) {
2023-10-30 17:02:02 +00:00
var parseIntIgnoresLeadingZeros = ( function ( ) {
2023-12-18 21:47:48 +00:00
return parseInt ( '010' , 10 ) === 10 ;
2023-10-30 17:02:02 +00:00
} ( ) ) ;
console . log ( "parseIntIgnoresLeadingZeros: " + String ( parseIntIgnoresLeadingZeros ) + " (Default on the built-in engine: true)" ) ;
2023-10-30 10:51:48 +00:00
2023-10-30 17:02:02 +00:00
var DateISOString = ( function ( ) {
2023-12-18 21:47:48 +00:00
return ! ! ( Date && Date . prototype && Date . prototype . toISOString ) ;
2023-10-30 17:02:02 +00:00
} ( ) ) ;
console . log ( "DateISOString: " + String ( DateISOString ) + " (Default on the built-in engine: false)" ) ;
2023-10-30 10:51:48 +00:00
2023-10-30 17:02:02 +00:00
var result = ! ! ( parseIntIgnoresLeadingZeros && DateISOString ) ;
2023-10-30 10:51:48 +00:00
2023-10-30 17:02:02 +00:00
console . log ( result ?
"ECMAScript 5 수준의 런타임입니다. 필수 테스트를 모두 통과하였습니다." :
"ECMAScript 5 수준의 런타임이 아닙니다. 필수 테스트 중 하나를 실패하였습니다." ) ;
} ,
2023-10-30 10:51:48 +00:00
2024-06-01 17:00:17 +00:00
// https://learn.microsoft.com/en-us/previous-versions/windows/desktop/regprov/stdregprov
2023-10-30 10:51:48 +00:00
"registry_find_provider" : function ( ) {
2023-10-30 17:02:02 +00:00
var REG = require ( "lib/registry" ) ;
2023-10-30 10:51:48 +00:00
2023-10-30 17:02:02 +00:00
console . log ( "레지스트리 제공자(StdRegProv) 클래스에 접근을 시도합니다." ) ;
var provider = REG . getProvider ( ) ;
console . log ( typeof provider !== "undefined" ?
"레지스트리 제공자 클래스에 성공적으로 연결되었습니다." :
"레지스트리 제공자 클래스에 연결하는데 문제가 있습니다." ) ;
} ,
2023-10-30 10:51:48 +00:00
"registry_write" : function ( ) {
2023-10-30 17:02:02 +00:00
var REG = require ( "lib/registry" ) ;
var appName = "welsonjs" ;
console . log ( "레지스트리에 쓰기를 시도합니다." ) ;
REG . write ( REG . HKCU , appName + "\\WelsonJSTest" , "" , "here are in" , REG . STRING ) ;
console . log ( "레지스트리에 쓰기를 완료하였습니다." ) ;
} ,
2023-10-30 10:51:48 +00:00
"registry_read" : function ( ) {
2023-10-30 17:02:02 +00:00
var REG = require ( "lib/registry" ) ;
var appName = "welsonjs" ;
console . log ( "레지스트리 읽기를 시도합니다." ) ;
var response = REG . read ( REG . HKCU , appName + "\\WelsonJSTest" , "" , REG . STRING ) ;
console . log ( "읽음: " + response ) ;
console . log ( response === "here are in" ?
"레지스트리를 정상적으로 읽었습니다." :
"레지스트리를 읽는데 문제가 있습니다." ) ;
} ,
"wmi_create_object" : function ( ) {
var WMI = require ( "lib/wmi" ) ;
console . log ( typeof WMI . create ( ) . interface !== "undefined" ?
"WMI 객체를 정상적으로 생성하였습니다." :
"WMI 객체를 생성하는데 문제가 있습니다." ) ;
} ,
"wmi_execute_query" : function ( ) {
var WMI = require ( "lib/wmi" ) ;
var queryString = "SELECT Caption FROM Win32_OperatingSystem" ;
console . log ( "실행할 쿼리: " + queryString ) ;
var result = WMI . execQuery ( queryString ) . fetch ( ) . get ( "Caption" ) . trim ( ) ;
console . log ( "현재 윈도우즈 배포판 종류: " + result ) ;
} ,
"wmi_result_query" : function ( ) {
var WMI = require ( "lib/wmi" ) ;
var queryString = "SELECT Caption FROM Win32_OperatingSystem" ;
console . log ( "실행할 쿼리: " + queryString ) ;
var result = WMI . execQuery ( queryString ) . fetch ( ) . get ( "Caption" ) . trim ( ) ;
console . log ( "현재 윈도우즈 배포판 종류: " + result ) ;
} ,
"shell_create_object" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
console . log ( typeof SHELL . create ( ) . interface !== "undefined" ?
"윈도우즈 쉘(Shell) 객체를 정상적으로 생성하였습니다." :
"윈도우즈 쉘(Shell) 객체를 생성하는데 문제가 있습니다." ) ;
} ,
"shell_build_command_line" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
console . log ( "쉘 명령의 무결성을 훼손시킬 수 있는 경우(따옴표, 쌍따옴표, 띄어쓰기 등을 포함한 경우)를 테스트합니다." ) ;
// 모든 경우를 하나의 배열에 포함
var test _args = [
"ppap.exe" ,
"\"pen\"" ,
"'apple'" ,
"apple pen" ,
"pineapple pen"
] ;
// 입력과 출력 확인
console . log ( "입력 인자: " + test _args . join ( " / " ) ) ;
console . log ( "출력 문자열: " + SHELL . build ( test _args ) ) ;
console . log ( "정상적으로 명령행이 만들어졌는지 확인하세요." ) ;
} ,
"shell_set_charset" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
var ShellInstance = SHELL . create ( ) ;
console . log ( "현재 기준 문자셋: " + ShellInstance . charset ) ;
console . log ( "기준 문자셋을 유니코드(UTF-8)로 변경합니다." ) ;
ShellInstance . setCharset ( SHELL . CdoCharset . CdoUTF _8 ) ;
console . log ( "현재 기준 문자셋: " + ShellInstance . charset ) ;
} ,
"shell_working_directory" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
var ShellInstance = SHELL . create ( ) ;
console . log ( "현재 작업 폴더: " + ShellInstance . workingDirectory ) ;
console . log ( "작업 폴더를 변경합니다." ) ;
ShellInstance . setWorkingDirectory ( ShellInstance . workingDirectory + "\\data" ) ;
console . log ( "현재 작업 폴더: " + ShellInstance . workingDirectory ) ;
} ,
"shell_create_process" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
2023-11-06 03:07:10 +00:00
var shell = SHELL . create ( ) ;
var process = shell . createProcess ( "calc.exe" ) ;
sleep ( 1500 ) ;
var processId = process . ProcessId ;
console . log ( "프로세스 ID:" , processId ) ;
sleep ( 1500 ) ;
shell . release ( ) ;
console . log ( "계산기가 정상적으로 실행되었는지 확인하세요." ) ;
2023-10-30 17:02:02 +00:00
} ,
"shell_execute" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
var response = SHELL . exec ( "echo done" ) ;
console . log ( response == "done" ?
"쉘(Shell) 출력이 정상적으로 작동합니다." :
"쉘(Shell) 출력에 문제가 있습니다." ) ;
} ,
"shell_run" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
SHELL . run ( "calc" ) ;
console . log ( "잠시 후 계산기 프로그램이 열리는지 확인하여 주세요." ) ;
} ,
"shell_run_as" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
console . log ( "관리자 권한 요청을 확인하세요." ) ;
SHELL . runAs ( "calc" ) ;
console . log ( "잠시 후 계산기 프로그램이 열리는지 확인하여 주세요." ) ;
} ,
"shell_find_my_documents" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
console . log ( "내 문서 폴더 위치: " + SHELL . getPathOfMyDocuments ( ) ) ;
} ,
"shell_release" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
var ShellInstance = SHELL . create ( ) ;
ShellInstance . release ( ) ;
console . log ( ShellInstance . interface != null ?
"정상적으로 해제되지 않았습니다." :
"정상적으로 해제되었습니다." ) ;
} ,
"powershell_set_command" : function ( ) {
2023-10-30 20:41:52 +00:00
var PS = require ( "lib/powershell" ) ;
var PSInstance = PS . create ( ) ;
PSInstance . load ( "Write-Output \"hello world\"" ) ;
console . log ( "설정된 명령어: " + PSInstance . target ) ;
2023-10-30 17:02:02 +00:00
} ,
"powershell_set_file" : function ( ) {
2023-10-30 20:41:52 +00:00
var PS = require ( "lib/powershell" ) ;
var PSInstance = PS . create ( ) ;
PSInstance . loadFile ( "app\\assets\\ps1\\helloworld" ) ;
console . log ( "설정된 파일: " + PSInstance . target ) ;
2023-10-30 17:02:02 +00:00
} ,
"powershell_set_uri" : function ( ) {
2023-10-30 20:41:52 +00:00
var PS = require ( "lib/powershell" ) ;
var PSInstance = PS . create ( ) ;
PSInstance . loadURI ( "data:text/plain;base64,V3JpdGUtT3V0cHV0ICJoZWxsbyB3b3JsZCI=" ) ;
console . log ( "설정된 URI: " + PSInstance . target ) ;
2023-10-30 17:02:02 +00:00
} ,
"powershell_execute" : function ( ) {
2023-10-30 20:41:52 +00:00
var PS = require ( "lib/powershell" ) ;
var response = PS . execScript ( "app\\assets\\ps1\\helloworld" ) ;
console . log ( "실행 결과 값: " + response ) ;
2023-10-30 17:02:02 +00:00
} ,
"powershell_run_as" : function ( ) {
2023-10-30 20:41:52 +00:00
var PS = require ( "lib/powershell" ) ;
var response = PS . runAs ( "app\\assets\\ps1\\helloworld" ) ;
console . log ( "실행 결과 값: " + response ) ;
2023-10-30 17:02:02 +00:00
} ,
2023-10-30 20:41:52 +00:00
2023-10-30 17:02:02 +00:00
"system_resolve_env" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( "기본 프로그램 설치 폴더: " + SYS . getEnvString ( "PROGRAMFILES" ) ) ;
console . log ( "기본 프로그램 설치 폴더가 정상적인 위치를 가르키고 있는지 확인하세요." ) ;
} ,
"system_check_as" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( SYS . isElevated ( ) ?
"이 런타임은 관리자 모드에서 실행되고 있지 않습니다." :
"이 런타임은 관리자 모드에서 실행되고 있습니다." ) ;
} ,
"system_get_os_version" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( "현재 사용중인 운영체제: " + SYS . getOS ( ) ) ;
} ,
"system_get_architecture" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( "현재 사용중인 아키텍처: " + SYS . getArch ( ) ) ;
} ,
"system_get_uuid" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( "디바이스 고유 번호: " + SYS . getUUID ( ) ) ;
} ,
"system_get_working_directory" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( "현재 작업 폴더: " + SYS . getCurrentWorkingDirectory ( ) ) ;
} ,
"system_get_script_directory" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( "현재 스크립트 폴더: " + SYS . getCurrentScriptDirectory ( ) ) ;
} ,
"system_get_network_interfaces" : function ( ) {
var SYS = require ( "lib/system" ) ;
2023-11-06 02:23:09 +00:00
var netInterfaces = SYS . getNetworkInterfaces ( ) ;
netInterfaces . forEach ( function ( x ) {
console . log ( x . Caption ) ;
} ) ;
2023-10-30 17:02:02 +00:00
} ,
"system_get_process_list" : function ( ) {
var SYS = require ( "lib/system" ) ;
var processList = SYS . getProcessList ( ) ;
processList . forEach ( function ( x ) {
2023-11-06 02:23:09 +00:00
console . log ( x . Caption , x . ProcessId ) ;
2023-10-30 17:02:02 +00:00
} ) ;
} ,
"system_get_process_list_by_name" : function ( ) {
var SYS = require ( "lib/system" ) ;
var processList = SYS . getProcessListByName ( "explorer.exe" ) ;
processList . forEach ( function ( x ) {
2023-11-06 02:23:09 +00:00
console . log ( x . Caption , x . ProcessId ) ;
2023-10-30 17:02:02 +00:00
} ) ;
} ,
2023-10-30 04:41:43 +00:00
2023-10-30 17:02:02 +00:00
"system_register_uri" : function ( ) {
console . log ( "웹 브라우저를 열고 주소창에 아래 주소를 입력하세요." ) ;
console . log ( "welsonjs:///?application=mscalc" ) ;
} ,
2023-10-30 04:41:43 +00:00
2023-10-30 18:13:02 +00:00
"system_pipe_ipc" : function ( ) {
2023-10-30 20:41:52 +00:00
var SHELL = require ( "lib/shell" ) ;
for ( var i = 0 ; i < 3 ; i ++ ) {
SHELL . show ( [ "cscript" , "app.js" , "examples/ipctest" ] ) ;
}
} ,
2023-10-30 04:41:43 +00:00
2023-10-30 18:13:02 +00:00
"vhid_find_window" : function ( ) {
2023-10-30 20:41:52 +00:00
console . log ( "동일한 기능이 포함된 chromium_send_click 또는 chromium_send_keys 테스트를 수행하십시오" ) ;
} ,
2023-10-30 18:13:02 +00:00
"vhid_send_click" : function ( ) {
2023-10-30 20:41:52 +00:00
console . log ( "동일한 기능이 포함된 chromium_send_click 테스트를 수행하십시오" ) ;
} ,
2023-10-30 18:13:02 +00:00
"vhid_send_keys" : function ( ) {
2023-10-30 20:41:52 +00:00
console . log ( "동일한 기능이 포함된 chromium_send_keys 테스트를 수행하십시오" ) ;
} ,
2023-10-30 18:13:02 +00:00
"vhid_send_key_enter" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://en.key-test.ru/" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "참고: vhid_send_key_enter 테스트의 엔터 키 기능은 웹 브라우저가 키코드를 처리하도록 작성되었습니다." ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
wbInstance . focus ( ) ;
wbInstance . sendEnterKey ( ) ;
sleep ( 1000 ) ;
} ,
2023-10-30 18:13:02 +00:00
"vhid_send_key_functions" : function ( ) {
2023-10-30 20:41:52 +00:00
var Toolkit = require ( "lib/toolkit" ) ;
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "웹 브라우저를 열고 F1 키를 눌러 도움말 페이지를 열겠습니다." ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
wbInstance . focus ( ) ;
Toolkit . sendFnKey ( wbInstance . pageId . substring ( 0 , 6 ) , 1 ) ; // F1 키 누름
} ,
2023-10-30 18:13:02 +00:00
"vhid_alert" : function ( ) {
2023-10-30 20:41:52 +00:00
var Toolkit = require ( "lib/toolkit" ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
Toolkit . alert ( "잘 보이면 테스트에 성공한 것입니다." ) ;
} ,
2023-10-30 18:13:02 +00:00
"vhid_confirm" : function ( ) {
2023-10-30 20:41:52 +00:00
var Toolkit = require ( "lib/toolkit" ) ;
var answer = Toolkit . confirm ( "예 또는 아니오를 눌러주세요" ) ;
console . log ( String ( answer ) ) ;
} ,
2023-10-30 18:13:02 +00:00
"vhid_prompt" : function ( ) {
2023-10-30 20:41:52 +00:00
var Toolkit = require ( "lib/toolkit" ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
var answer = Toolkit . prompt ( "Enter your input:" ) ;
console . log ( String ( answer ) ) ;
} ,
2023-10-30 18:13:02 +00:00
"network_http_get" : function ( ) {
2023-10-30 20:41:52 +00:00
var HTTP = require ( "lib/http" ) ;
console . log ( "HTTP GET 요청으로 내 외부 IP를 확인합니다." ) ;
var response = HTTP . get ( "https://api.ipify.org/" , { } , { } ) ;
console . log ( "내 외부 IP: " + response ) ;
} ,
2023-10-30 18:13:02 +00:00
"network_http_post" : function ( ) {
2023-10-30 20:41:52 +00:00
var HTTP = require ( "lib/http" ) ;
var response = HTTP . get ( "https://httpbin.org/post" , { } , { } ) ;
console . log ( "응답: " + response ) ;
} ,
2023-10-30 18:13:02 +00:00
"network_http_extended" : function ( ) {
2023-10-30 20:41:52 +00:00
var HTTP = require ( "lib/http" ) ;
var response1 = HTTP . put ( "https://httpbin.org/put" , { } , { } ) ;
console . log ( "응답: " + response1 ) ;
2023-10-30 20:49:11 +00:00
var response2 = HTTP . patch ( "https://httpbin.org/patch" , { } , { } ) ;
2023-10-30 20:41:52 +00:00
console . log ( "응답: " + response2 ) ;
} ,
2023-10-30 18:13:02 +00:00
"network_attach_debugger" : function ( ) {
2023-10-30 20:41:52 +00:00
var HTTP = require ( "lib/http" ) ;
HTTP . create ( "CURL" )
. attachDebugger ( "FIDDLER" )
. get ( "https://api.ipify.org/" ) ;
} ,
2023-10-30 18:13:02 +00:00
"network_detect_charset" : function ( ) {
2023-10-30 20:41:52 +00:00
var HTTP = require ( "lib/http" ) ;
var response = HTTP . get ( "https://example.org/" , { } , { } ) ;
var charset = HTTP . create ( "CURL" ) . detectCharset ( response ) ;
console . log ( "감지된 문자셋: " + charset ) ;
} ,
2023-10-30 18:13:02 +00:00
"network_detect_http_ssl" : function ( ) {
2023-10-30 20:41:52 +00:00
var HTTP = require ( "lib/http" ) ;
var response = HTTP . create ( "CURL" ) . get ( "https://example.org/" ) ;
var charset = HTTP . create ( "CURL" ) . detectCharset ( response ) ;
} ,
2023-10-30 04:41:43 +00:00
2023-10-30 17:02:02 +00:00
"network_send_icmp" : function ( ) {
var SYS = require ( "lib/system" ) ;
console . log ( "1.1.1.1로 PING(ICMP) 전송" ) ;
console . log ( "응답 시간: " + SYS . ping ( "1.1.1.1" ) + "ms" ) ;
} ,
2024-07-10 10:54:18 +00:00
"network_bitsadmin_test" : function ( ) {
var HTTP = require ( "lib/http" ) ;
var bits = HTTP . create ( "BITS" ) ;
var response = bits . open ( "GET" , "https://httpbin.org/get" ) . send ( ) . responseText ;
console . log ( response ) ;
} ,
2023-10-30 17:02:02 +00:00
"extramath_dtm" : function ( ) {
var ExtraMath = require ( "lib/extramath" ) ;
var a = "this is an apple" ;
var b = "this is red apple" ;
var dtm = new ExtraMath . DTM ( ) ;
dtm . add ( a ) ;
dtm . add ( b ) ;
var mat = dtm . toArray ( ) ;
console . log ( "Original sentance" ) ;
console . log ( a ) ;
console . log ( b ) ;
console . log ( "Create a DTM(Document-Term Matrix)" ) ;
console . log ( mat [ 0 ] . join ( ' ' ) ) ;
console . log ( mat [ 1 ] . join ( ' ' ) ) ;
} ,
"extramath_cosine_similarity" : function ( ) {
var ExtraMath = require ( "lib/extramath" ) ;
var a = "this is an apple" ;
var b = "this is red apple" ;
var dtm = new ExtraMath . DTM ( ) ;
dtm . add ( a ) ;
dtm . add ( b ) ;
var mat = dtm . toArray ( ) ;
console . log ( "Original sentance" ) ;
console . log ( a ) ;
console . log ( b ) ;
console . log ( "Create a DTM(Document-Term Matrix)" ) ;
console . log ( mat [ 0 ] . join ( ' ' ) ) ;
console . log ( mat [ 1 ] . join ( ' ' ) ) ;
console . log ( "Measure Cosine Similarity" ) ;
console . log ( '' + ExtraMath . arrayCos ( mat [ 0 ] , mat [ 1 ] ) ) ;
console . log ( '' + ExtraMath . measureSimilarity ( a , b ) ) ;
} ,
"base64_encode" : function ( ) {
var BASE64 = require ( "lib/base64" ) ;
var original _text = "hello world" ;
var encoded _text = BASE64 . encode ( original _text ) ;
console . log ( "원문: " + original _text ) ;
console . log ( "인코딩된 문자: " + encoded _text ) ;
console . log ( encoded _text == "aGVsbG8gd29ybGQ=" ?
"인코딩된 문자가 기대값과 일치합니다." :
"인코딩된 문자가 기대값과 불일치합니다." ) ;
} ,
"base64_decode" : function ( ) {
var BASE64 = require ( "lib/base64" ) ;
var encoded _text = "aGVsbG8gd29ybGQ=" ;
var original _text = BASE64 . decode ( encoded _text ) ;
console . log ( "인코딩된 문자: " + encoded _text ) ;
console . log ( "원문: " + original _text ) ;
console . log ( original _text == "hello world" ?
"디코드된 문자가 기대값과 일치합니다." :
"디코드된 문자가 기대값과 불일치합니다." ) ;
} ,
"chromium_run" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
2023-10-30 18:13:02 +00:00
} ,
"chromium_create_profile" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
console . log ( "welsonjs_test 프로파일을 생성합니다. (웹 브라우저를 실행하여 생성합니다.)" ) ;
Chrome . startDebug ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_run_incognito" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_navigate" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 구글로 이동합니다." ) ;
sleep ( 5000 ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
wbInstance . setPageId ( null ) ;
wbInstance . navigate ( "https://google.com" ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_get_active_pages" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 페이지 목록을 불러옵니다." ) ;
sleep ( 5000 ) ;
var pageList = wbInstance . getPageList ( ) ;
pageList . forEach ( function ( x ) {
console . log ( x . title ) ;
} ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_find_page_by_id" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 페이지 ID를 불러옵니다." ) ;
sleep ( 5000 ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
var pageId = wbInstance . getPageList ( ) [ 0 ] . id ;
console . log ( "페이지 ID: " + pageId ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
console . log ( "페이지 ID로 페이지 찾기" ) ;
var page = wbInstance . getPageById ( pageId ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
console . log ( "페이지 제목: " + page . title ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_find_pages_by_title" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 페이지 타이틀을 불러옵니다." ) ;
sleep ( 5000 ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
var pageTitle = wbInstance . getPageList ( ) [ 0 ] . title ;
console . log ( "페이지 타이틀: " + pageTitle ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
console . log ( "페이지 타이틀로 페이지 찾기" ) ;
var pages = wbInstance . getPagesByTitle ( pageTitle ) ; // 타이틀로 찾는 경우 복수형으로 반환됨
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
console . log ( "페이지 ID: " + pages [ 0 ] . id ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_move_focused" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstances = [ ] ;
wbInstances . push ( Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ) ;
sleep ( 2000 ) ;
wbInstances . push ( Chrome . startDebugInPrivate ( "https://naver.com" , null , "welsonjs_test_2" , 9223 , true ) ) ;
sleep ( 2000 ) ;
wbInstances . push ( Chrome . startDebugInPrivate ( "https://daum.net" , null , "welsonjs_test_3" , 9224 , true ) ) ;
sleep ( 2000 ) ;
var wbInstance = wbInstances [ 1 ] ;
wbInstance . setPageId ( null ) ;
wbInstance . focus ( ) ;
} ,
"chromium_adjust_window_size" : function ( ) {
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
wbInstance . focus ( ) ;
wbInstance . autoAdjustByWindow ( 10 , 10 , 1024 , 1280 , 720 , 768 ) ;
} ,
2023-10-30 04:41:43 +00:00
2023-10-30 18:13:02 +00:00
"chromium_get_element_position" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
console . log ( JSON . stringify ( wbInstance . getElementPosition ( "p" ) ) ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_get_mapreduced_element_position" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://example.org" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
2023-10-30 18:13:02 +00:00
2023-10-30 20:41:52 +00:00
console . log ( "More information... 버튼의 위치를 탐색" ) ;
console . log ( JSON . stringify ( wbInstance . getNestedElementPosition ( "p" , ":self" , "More information..." ) ) ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_set_value_to_textbox" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://html5doctor.com/demos/forms/forms-example.html" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
wbInstance . setValue ( "#given-name" , "길동" ) ;
wbInstance . setValue ( "#family-name" , "홍" ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_send_click" : function ( ) {
2023-10-30 20:41:52 +00:00
var RAND = require ( "lib/rand" ) ;
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://html5doctor.com/demos/forms/forms-example.html" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
wbInstance . focus ( ) ;
wbInstance . traceMouseClick ( ) ;
while ( true ) {
wbInstance . vMouseClick ( RAND . getInt ( 20 , 200 ) , RAND . getInt ( 20 , 200 ) ) ;
sleep ( 2000 ) ;
}
} ,
2023-10-30 18:13:02 +00:00
"chromium_send_keys" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://html5doctor.com/demos/forms/forms-example.html" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
wbInstance . focus ( ) ;
wbInstance . traceMouseClick ( ) ;
console . log ( "이메일 필드 위치 찾기" ) ;
var emailInputPosition = wbInstance . getElementPosition ( "#email" ) ;
wbInstance . vMouseClick ( emailInputPosition . x + 2 , emailInputPosition . y + 2 ) ;
sleep ( 1000 ) ;
console . log ( "가상 키 보내기" ) ;
wbInstance . vSendKeys ( "hong@example.org" ) ;
} ,
2023-10-30 18:13:02 +00:00
"chromium_auto_scroll_until_end" : function ( ) {
2023-10-30 20:41:52 +00:00
var Chrome = require ( "lib/chrome" ) ;
var wbInstance = Chrome . startDebugInPrivate ( "https://en.wikipedia.org/wiki/Lorem_ipsum" , null , "welsonjs_test" , 9222 , true ) ;
console . log ( "5초 후 명령을 수행합니다." ) ;
sleep ( 5000 ) ;
wbInstance . focus ( ) ;
wbInstance . traceMouseClick ( ) ;
console . log ( "스크롤이 끝날 때까지 계속 스크롤을 조정합니다." ) ;
while ( ! wbInstance . isPageScrollEnded ( ) ) {
wbInstance . scrollBy ( 0 , 150 ) ;
sleep ( 2000 ) ;
}
} ,
2023-10-30 04:41:43 +00:00
2023-10-30 17:02:02 +00:00
"grpc_run_server" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
2023-10-30 04:41:43 +00:00
2023-10-30 17:02:02 +00:00
SHELL . show ( [ "cscript" , "app.js" , "grpcloader" ] ) ;
} ,
2023-10-30 04:41:43 +00:00
2023-10-30 17:02:02 +00:00
"grpc_receive_command" : function ( ) {
var SHELL = require ( "lib/shell" ) ;
2023-10-30 04:41:43 +00:00
2023-10-30 17:02:02 +00:00
SHELL . show ( [ "grpcloader_test.bat" ] ) ;
} ,
2023-10-30 05:36:22 +00:00
2023-10-30 17:02:02 +00:00
"gui_check" : function ( ) {
2023-10-30 20:41:52 +00:00
console . log ( "GUI 환경에서 실행하여 주십시오" ) ;
2023-11-07 02:04:21 +00:00
} ,
2023-11-07 02:24:36 +00:00
// profile: data/test-misc-20231107.json
2023-11-07 02:04:21 +00:00
"gtkserver_test" : function ( ) {
var GTK = require ( "lib/gtk" ) ;
function main ( ) {
GTK . init ( function ( ) {
var win , table , button , entry , text , radiogroup , radio1 , radio2 ;
// create new window
win = new GTK . Window ( {
title : "WelsonJS GTK GUI Demo Application" ,
width : 450 ,
height : 400
} ) ;
// create new table
table = new GTK . Table ( {
rows : 50 ,
columns : 50
} ) ;
win . setContainer ( table ) ;
// create new button
button = new GTK . Button ( {
text : "Exit"
} ) ;
button . addEventListener ( "click" , function ( ) {
GTK . exit ( ) ;
} ) ;
table . attach ( button , 41 , 49 , 45 , 49 ) ;
// create new entry
entry = new GTK . Entry ( ) ;
table . attach ( entry , 1 , 40 , 45 , 49 ) ;
entry . addEventListener ( "enter" , function ( event ) {
console . info ( event . target . getText ( ) ) ;
} ) ;
// create new textbox
text = new GTK . TextBox ( ) ;
table . attach ( text , 1 , 49 , 8 , 44 ) ;
// create new radiogroup
radiogroup = new GTK . RadioGroup ( ) ;
// create new radio (Radio 1)
radio1 = new GTK . RadioBox ( {
text : "Yes" ,
group : radiogroup
} ) ;
table . attach ( radio1 , 1 , 10 , 1 , 4 ) ;
// create new radio (Radio 2)
radio2 = new GTK . RadioBox ( {
text : "No" ,
group : radiogroup
} ) ;
table . attach ( radio2 , 1 , 10 , 4 , 7 ) ;
// showing window
win . show ( ) ;
// focusing entry
entry . focus ( ) ;
} ) ;
GTK . wait ( ) ;
}
2023-11-07 02:24:36 +00:00
} ,
2024-06-01 17:00:17 +00:00
// profile: data/test-misc.json
2023-11-07 02:24:36 +00:00
"toolkit_msedge_test" : function ( ) {
var Chrome = require ( "lib/chrome" ) ;
var Toolkit = require ( "lib/toolkit" ) ;
var wbInstance = Chrome . create ( ) . setVendor ( "msedge" ) . open ( "https://google.com" ) ;
sleep ( 5000 ) ;
//console.log(wbInstance.getHTML("body"));
wbInstance . focus ( ) ;
wbInstance . traceMouseClick ( ) ;
Toolkit . sendClick ( "Google" , 30 , 30 , 1 ) ;
} ,
2024-06-01 17:00:17 +00:00
// profile: data/test-misc.json
2023-11-07 02:24:36 +00:00
"squel_sqlmap_test" : function ( ) {
console . log ( squel . select ( { separator : "\n" } )
. from ( "students" )
. field ( "name" )
. field ( "MIN(test_score)" )
. field ( "MAX(test_score)" )
. field ( "GROUP_CONCAT(DISTINCT test_score ORDER BY test_score DESC SEPARATOR ' ')" )
. group ( "name" )
. toString ( ) ) ;
2023-12-18 21:47:48 +00:00
} ,
2023-12-29 06:22:20 +00:00
2024-06-01 17:00:17 +00:00
// profile: data/test-msoffice.json
2023-12-18 21:47:48 +00:00
"open_excel_file" : function ( ) {
var Office = require ( "lib/msoffice" ) ;
2024-06-01 17:00:17 +00:00
var excel = new Office . Excel ( ) ; // Create a Excel instance
excel . open ( "data\\example.xlsx" ) ; // Open a Excel window
2023-12-18 21:47:48 +00:00
} ,
2024-06-01 17:00:17 +00:00
2024-06-30 16:46:54 +00:00
"open_excel_new" : function ( ) {
2024-06-01 17:00:17 +00:00
var Office = require ( "lib/msoffice" ) ;
var excel = new Office . Excel ( ) ; // Create a Excel instance
excel . open ( ) ; // Open a Excel window
2024-06-30 16:46:54 +00:00
} ,
2024-06-01 17:00:17 +00:00
2023-12-18 21:47:48 +00:00
"open_excel_with_chatgpt" : function ( ) {
// Load libraries
var Office = require ( "lib/msoffice" ) ;
var ChatGPT = require ( "lib/chatgpt" ) ;
// Create an Excel instance
var excel = new Office . Excel ( ) ;
// List of questions
var questions = [
"Which one does Mom like, and which one does Dad like?" ,
"If 100 billion won is deposited into my bank account without my knowledge, what would I do?" ,
"If my friend passed out from drinking, and Arnold Schwarzenegger suggests having a drink together alone, is it okay to ditch my friend and go with him?" ,
"If there's a snake in our tent during the company camping trip, should I wake up the manager, or should I escape on my own without waking him up?"
] ;
// Open the Excel window
excel . open ( ) ;
// Answer to questions
var i = 1 ;
questions . forEach ( function ( x ) {
var answer = ChatGPT . chat ( x ) ;
console . log ( "Answer:" , answer ) ;
excel . getCellByPosition ( i , 1 ) . setValue ( answer ) ;
i ++ ;
} ) ;
// Close the Excel window
//excel.close();
} ,
2023-12-29 06:22:20 +00:00
2023-12-18 21:47:48 +00:00
"open_powerpoint_file" : function ( ) {
2024-06-01 17:00:17 +00:00
var Office = require ( "lib/msoffice" ) ;
2023-12-18 21:47:48 +00:00
var powerpoint = new Office . PowerPoint ( ) ; // Create a PowerPoint instance
2024-06-01 17:00:17 +00:00
powerpoint . open ( "data\\example.pptx" ) ; // Open a PowerPoint window
2023-12-18 21:47:48 +00:00
} ,
2024-06-30 16:46:54 +00:00
"open_powerpoint_new" : function ( ) {
2024-06-01 17:00:17 +00:00
var Office = require ( "lib/msoffice" ) ;
var powerpoint = new Office . PowerPoint ( ) ; // Create a PowerPoint instance
powerpoint . open ( ) ; // Open a PowerPoint window
2024-06-30 16:46:54 +00:00
} ,
2023-12-18 21:47:48 +00:00
"open_word_file" : function ( ) {
var Office = require ( "lib/msoffice" ) ; // Load libraries
var word = new Office . Word ( ) ; // Create an Word instance
2023-12-18 22:20:33 +00:00
word . open ( "data\\example.docx" ) ; // Open the Word window
2023-12-29 06:22:20 +00:00
} ,
"sharedmemory" : function ( ) {
var Toolkit = require ( "lib/toolkit" ) ;
var mem = new Toolkit . NamedSharedMemory ( "welsonjs_test" ) ;
console . log ( "Writing a text the to shared memory..." ) ;
mem . writeText ( "nice meet you" ) ;
2024-01-04 06:47:05 +00:00
console . log ( "Reading a text from the shared memory..." ) ;
2023-12-29 06:22:20 +00:00
console . log ( mem . readText ( ) + ", too" ) ;
console . log ( "Cleaning the shared memory..." ) ;
mem . clear ( )
console . log ( mem . readText ( ) ) ;
mem . close ( )
console . log ( "Closing the shared memory..." ) ;
console . log ( "Done" ) ;
2024-01-04 03:05:47 +00:00
} ,
2024-01-04 06:47:05 +00:00
"sharedmemory_write" : function ( ) {
var Toolkit = require ( "lib/toolkit" ) ;
var mem = new Toolkit . NamedSharedMemory ( "welsonjs_test" ) ;
console . log ( "Writing a text to the shared memory..." ) ;
mem . writeText ( "nice meet you" ) ;
console . log ( "Done" ) ;
} ,
"sharedmemory_read" : function ( ) {
var Toolkit = require ( "lib/toolkit" ) ;
var mem = new Toolkit . NamedSharedMemory ( "welsonjs_test" ) ;
console . log ( "Reading a text from the shared memory..." ) ;
console . log ( mem . readText ( ) + ", too" ) ;
console . log ( "Cleaning the shared memory..." ) ;
mem . clear ( )
console . log ( mem . readText ( ) ) ;
mem . close ( )
console . log ( "Closing the shared memory..." ) ;
console . log ( "Done" ) ;
2024-03-19 08:17:15 +00:00
} ,
2024-01-04 03:05:47 +00:00
"sharedmemory_listener" : function ( ) {
var Toolkit = require ( "lib/toolkit" ) ;
2024-01-04 07:14:13 +00:00
var targets = ( function ( ) {
var s = Toolkit . prompt ( "Input the shared memory names (Comma seperated)" ) ;
return s . split ( ',' ) ;
} ) ( ) ;
2024-01-04 03:05:47 +00:00
2024-01-04 07:14:13 +00:00
if ( ! targets ) {
2024-01-04 03:05:47 +00:00
console . log ( "Aborted." ) ;
} else {
2024-01-04 06:23:26 +00:00
// Open the shared memory
2024-01-04 07:14:13 +00:00
var memories = targets . map ( function ( x ) {
return [ x , new Toolkit . NamedSharedMemory ( x ) ] ;
} ) ;
2024-01-04 06:23:26 +00:00
// Open the second process will be communicate
Toolkit . openProcess ( ) ;
// Listen the shared memory
2024-01-04 07:14:13 +00:00
console . log ( "Listening the shared memory:" , targets . join ( ', ' ) ) ;
2024-01-04 03:05:47 +00:00
while ( true ) {
2024-01-04 07:14:13 +00:00
console . log ( new Date ( ) . toISOString ( ) ) ;
memories . forEach ( function ( x ) {
var name = x [ 0 ] ;
var mem = x [ 1 ] ;
console . log ( name + ": " , mem . readText ( ) ) ;
} ) ;
2024-01-04 06:23:26 +00:00
sleep ( 100 ) ;
2024-01-04 03:05:47 +00:00
}
2024-03-12 06:07:12 +00:00
}
} ,
"string_split" : function ( ) {
var a = "monkey:red:apple:delicious:banana:long:train:fast:airplane:high:everest:sharp:seringue:painful" ;
var b = a . split ( ':' ) . join ( ':' ) ;
var c = "a=1=b=2=c=3" ;
var d = c . split ( '=' ) . join ( '=' ) ;
if ( a == b && c == d ) {
console . log ( "PASS" ) ;
} else {
console . log ( "FAILED" ) ;
console . log ( a ) ;
console . log ( b ) ;
console . log ( c ) ;
console . log ( d ) ;
2024-01-04 03:05:47 +00:00
}
2024-04-06 06:17:59 +00:00
} ,
"linqjs" : function ( ) {
var a = Enumerable . range ( 1 , 10 )
. where ( function ( i ) { return i % 3 == 0 ; } )
. select ( function ( i ) { return i * 10 ; } )
;
console . log ( a . toArray ( ) . join ( ',' ) ) ;
var array = "monkey:red:apple:delicious:banana:long:train:fast:airplane:high:everest:sharp:seringue:painful" . split ( ':' ) ;
var b = Enumerable . from ( array ) . select ( function ( val , i ) {
return {
value : val ,
index : i
}
} ) ;
console . log ( JSON . stringify ( b . toArray ( ) ) ) ;
2024-06-09 21:23:35 +00:00
} ,
2024-08-29 10:59:30 +00:00
// https://stackoverflow.com/questions/33417367/example-of-how-to-use-peg-js
2024-09-25 09:21:55 +00:00
"pegjs" : function ( ) {
2024-08-29 10:57:53 +00:00
var syntax = FILE . readFile ( "app/assets/pegjs/test.pegjs" , FILE . CdoCharset . CdoUTF _8 ) ;
var parser = PEG . generate ( syntax ) ;
2024-09-25 09:21:55 +00:00
console . log ( JSON . stringify ( parser . parse ( "test123" ) ) ) ;
2024-08-29 10:57:53 +00:00
} ,
2024-06-09 21:23:35 +00:00
"domparser_test" : function ( ) {
console . log ( typeof DOMParser ) ;
2024-06-30 16:46:54 +00:00
} ,
// https://github.com/gnh1201/caterpillar
"catproxy_test" : function ( ) {
var client = require ( 'lib/catproxy' ) ;
function main ( args ) {
var worker = client . create ( "http://locahost:5555" ) ;
worker . set _method ( "relay_mysql_query" ) ;
worker . set _env ( "mysql_username" , "adminer" ) ;
worker . set _env ( "mysql_password" , "changeme" ) ;
worker . set _env ( "mysql_database" , "dummydb" ) ;
var result = worker . exec ( "select * from authors limit 3" ) ;
console . log ( JSON . stringify ( result ) ) ;
}
2024-09-25 03:10:47 +00:00
} ,
2024-09-25 09:21:55 +00:00
2024-10-19 15:07:53 +00:00
// https://catswords-oss.rdbl.io/5719744820/8278298336
2024-09-25 03:10:47 +00:00
"proxy_custom_provider" : function ( ) {
2024-09-25 09:21:55 +00:00
var HTTP = require ( "lib/http" ) ;
2024-09-27 11:53:29 +00:00
var response = HTTP . create ( )
2024-09-25 09:21:55 +00:00
. setVariables ( {
"api_key" : "YOUR_API_KEY" ,
"render_js" : "false" ,
"residential" : "false" ,
2024-09-25 16:26:06 +00:00
"country" : "us" ,
"keep_headers" : "false"
2024-09-25 09:21:55 +00:00
} )
. setProxy ( {
"enabled" : true ,
"provider" : "scrapeops" ,
"type" : "stateless"
} )
. open ( "GET" , "https://example.org" )
. send ( ) ;
console . log ( "responseBody:" , response . responseBody ) ;
2024-09-27 06:53:19 +00:00
} ,
2024-10-19 15:07:53 +00:00
// https://catswords-oss.rdbl.io/5719744820/8278298336
2024-09-27 06:53:19 +00:00
"proxy_serp" : function ( ) {
var HTTP = require ( "lib/http" ) ;
2024-09-27 11:53:29 +00:00
var response = HTTP . create ( )
2024-09-27 06:53:19 +00:00
. setVariables ( {
2024-09-27 06:55:31 +00:00
"api_key" : "YOUR_API_KEY"
2024-09-27 06:53:19 +00:00
} )
. setProxy ( {
"enabled" : true ,
"provider" : "searchapi" ,
"type" : "serp"
} )
. open ( "GET" , "https://www.google.com/search?q=test" )
. send ( ) ;
console . log ( "responseBody:" , response . responseBody ) ;
2023-10-30 20:41:52 +00:00
}
2023-10-30 17:02:02 +00:00
} ;
2023-10-30 05:36:22 +00:00
2023-10-30 17:02:02 +00:00
function main ( args ) {
2024-07-10 10:54:18 +00:00
// EXAMPLE: cscript app.js testloader <es5_polyfills> <data\test-oss-korea-2023.json>
2023-10-30 17:02:02 +00:00
if ( args . length > 0 ) {
var test _id = args [ 0 ] ;
2023-12-18 21:47:48 +00:00
var profilefile = args [ 1 ] ;
// load the test profile
var profile = JSON . parse ( FILE . readFile ( profilefile , FILE . CdoCharset . CdoUTF _8 ) ) ;
2023-10-30 17:02:02 +00:00
2023-12-18 21:47:48 +00:00
// do test
2023-10-30 17:02:02 +00:00
if ( test _id in test _implements ) {
var test = profile . tests . find ( function ( x ) {
return ( x . id == test _id ) ;
} ) ;
var description = test . description ;
console . log ( "Test ID: " + test _id ) ;
console . log ( "Will be test: " + description ) ;
try {
test _implements [ test _id ] ( ) ;
} catch ( e ) {
console . error ( "ERROR: " + e . message )
}
console . log ( "Will be close this window after 90 seconds" ) ;
sleep ( 90 * 1000 ) ;
}
} else {
console . log ( "hello world!" ) ;
2023-10-30 05:36:22 +00:00
}
2023-10-30 04:41:43 +00:00
}
exports . main = main ;