Author: akhaldi
Date: Sat Nov 8 11:26:28 2014
New Revision: 65318
URL:
http://svn.reactos.org/svn/reactos?rev=65318&view=rev
Log:
[WSCRIPT_WINETEST]
* Import from Wine 1.7.27.
CORE-8769 CORE-8540
Added:
trunk/rostests/winetests/wscript/ (with props)
trunk/rostests/winetests/wscript/CMakeLists.txt (with props)
trunk/rostests/winetests/wscript/rsrc.rc (with props)
trunk/rostests/winetests/wscript/run.c (with props)
trunk/rostests/winetests/wscript/run.js (with props)
trunk/rostests/winetests/wscript/run.vbs (with props)
trunk/rostests/winetests/wscript/testlist.c (with props)
Modified:
trunk/rostests/winetests/CMakeLists.txt
Modified: trunk/rostests/winetests/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/CMakeLists.txt?…
==============================================================================
--- trunk/rostests/winetests/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/rostests/winetests/CMakeLists.txt [iso-8859-1] Sat Nov 8 11:26:28 2014
@@ -114,6 +114,7 @@
add_subdirectory(wlanapi)
add_subdirectory(wldap32)
add_subdirectory(ws2_32)
+add_subdirectory(wscript)
add_subdirectory(wshom)
add_subdirectory(xcopy)
add_subdirectory(xinput1_3)
Propchange: trunk/rostests/winetests/wscript/
------------------------------------------------------------------------------
--- bugtraq:logregex (added)
+++ bugtraq:logregex Sat Nov 8 11:26:28 2014
@@ -0,0 +1,2 @@
+([Ii]ssue|[Bb]ug)s? #?(\d+)(,? ?#?(\d+))*(,? ?(and |or )?#?(\d+))?
+(\d+)
Propchange: trunk/rostests/winetests/wscript/
------------------------------------------------------------------------------
bugtraq:message = See issue #%BUGID% for more details.
Propchange: trunk/rostests/winetests/wscript/
------------------------------------------------------------------------------
bugtraq:url =
http://www.reactos.org/bugzilla/show_bug.cgi?id=%BUGID%
Added: trunk/rostests/winetests/wscript/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/wscript/CMakeLi…
==============================================================================
--- trunk/rostests/winetests/wscript/CMakeLists.txt (added)
+++ trunk/rostests/winetests/wscript/CMakeLists.txt [iso-8859-1] Sat Nov 8 11:26:28 2014
@@ -0,0 +1,7 @@
+
+add_definitions(-DUSE_WINE_TODOS)
+add_executable(wscript_winetest run.c testlist.c rsrc.rc)
+target_link_libraries(wscript_winetest uuid)
+set_module_type(wscript_winetest win32cui)
+add_importlibs(wscript_winetest ole32 oleaut32 psapi advapi32 msvcrt kernel32)
+add_cd_file(TARGET wscript_winetest DESTINATION reactos/bin FOR all)
Propchange: trunk/rostests/winetests/wscript/CMakeLists.txt
------------------------------------------------------------------------------
svn:eol-style = native
Added: trunk/rostests/winetests/wscript/rsrc.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/wscript/rsrc.rc…
==============================================================================
--- trunk/rostests/winetests/wscript/rsrc.rc (added)
+++ trunk/rostests/winetests/wscript/rsrc.rc [iso-8859-1] Sat Nov 8 11:26:28 2014
@@ -0,0 +1,23 @@
+/*
+ * Copyright 2011 Jacek Caban for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/* @makedep: run.js */
+run.js TESTSCRIPT "run.js"
+
+/* @makedep: run.vbs */
+run.vbs TESTSCRIPT "run.vbs"
Propchange: trunk/rostests/winetests/wscript/rsrc.rc
------------------------------------------------------------------------------
svn:eol-style = native
Added: trunk/rostests/winetests/wscript/run.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/wscript/run.c?r…
==============================================================================
--- trunk/rostests/winetests/wscript/run.c (added)
+++ trunk/rostests/winetests/wscript/run.c [iso-8859-1] Sat Nov 8 11:26:28 2014
@@ -0,0 +1,480 @@
+/*
+ * Copyright 2011 Jacek Caban for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include <stdio.h>
+
+#define WIN32_NO_STATUS
+#define _INC_WINDOWS
+#define COBJMACROS
+#define CONST_VTABLE
+
+#include <windef.h>
+#include <winbase.h>
+#include <objbase.h>
+#include <psapi.h>
+
+#include <wine/test.h>
+
+#define DEFINE_EXPECT(func) \
+ static BOOL expect_ ## func = FALSE, called_ ## func = FALSE
+
+#define SET_EXPECT(func) \
+ expect_ ## func = TRUE
+
+#define CLEAR_CALLED(func) \
+ expect_ ## func = called_ ## func = FALSE
+
+#define CHECK_EXPECT2(func) \
+ do { \
+ ok(expect_ ##func, "unexpected call " #func "\n"); \
+ called_ ## func = TRUE; \
+ }while(0)
+
+#define CHECK_EXPECT(func) \
+ do { \
+ CHECK_EXPECT2(func); \
+ expect_ ## func = FALSE; \
+ }while(0)
+
+#define CHECK_CALLED(func) \
+ do { \
+ ok(called_ ## func, "expected " #func "\n"); \
+ expect_ ## func = called_ ## func = FALSE; \
+ }while(0)
+
+DEFINE_EXPECT(reportSuccess);
+
+#define DISPID_TESTOBJ_OK 10000
+#define DISPID_TESTOBJ_TRACE 10001
+#define DISPID_TESTOBJ_REPORTSUCCESS 10002
+#define DISPID_TESTOBJ_WSCRIPTFULLNAME 10003
+#define DISPID_TESTOBJ_WSCRIPTPATH 10004
+#define DISPID_TESTOBJ_WSCRIPTSCRIPTNAME 10005
+#define DISPID_TESTOBJ_WSCRIPTSCRIPTFULLNAME 10006
+
+#define TESTOBJ_CLSID "{178fc166-f585-4e24-9c13-4bb7faf80646}"
+
+static const GUID CLSID_TestObj =
+ {0x178fc166,0xf585,0x4e24,{0x9c,0x13,0x4b,0xb7,0xfa,0xf8,0x06,0x46}};
+
+static const char *script_name;
+static HANDLE wscript_process;
+
+static int strcmp_wa(LPCWSTR strw, const char *stra)
+{
+ WCHAR buf[512];
+ MultiByteToWideChar(CP_ACP, 0, stra, -1, buf, sizeof(buf)/sizeof(WCHAR));
+ return lstrcmpW(strw, buf);
+}
+
+static const WCHAR* mystrrchr(const WCHAR *str, WCHAR ch)
+{
+ const WCHAR *pos = NULL, *current = str;
+ while(*current != 0) {
+ if(*current == ch)
+ pos = current;
+ ++current;
+ }
+ return pos;
+}
+
+static BSTR a2bstr(const char *str)
+{
+ BSTR ret;
+ int len;
+
+ len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
+ ret = SysAllocStringLen(NULL, len-1);
+ MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
+
+ return ret;
+}
+
+static HRESULT WINAPI Dispatch_QueryInterface(IDispatch *iface, REFIID riid, void **ppv)
+{
+ if(IsEqualGUID(riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_IDispatch)) {
+ *ppv = iface;
+ return S_OK;
+ }
+
+ *ppv = NULL;
+ return E_NOINTERFACE;
+}
+
+static ULONG WINAPI Dispatch_AddRef(IDispatch *iface)
+{
+ return 2;
+}
+
+static ULONG WINAPI Dispatch_Release(IDispatch *iface)
+{
+ return 1;
+}
+
+static HRESULT WINAPI Dispatch_GetTypeInfoCount(IDispatch *iface, UINT *pctinfo)
+{
+ ok(0, "unexpected call\n");
+ return E_NOTIMPL;
+}
+
+static HRESULT WINAPI Dispatch_GetTypeInfo(IDispatch *iface, UINT iTInfo,
+ LCID lcid, ITypeInfo **ppTInfo)
+{
+ ok(0, "unexpected call\n");
+ return E_NOTIMPL;
+}
+
+static HRESULT WINAPI Dispatch_GetIDsOfNames(IDispatch *iface, REFIID riid,
+ LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
+{
+ unsigned i;
+
+ for(i=0; i<cNames; i++) {
+ if(!strcmp_wa(rgszNames[i], "ok")) {
+ rgDispId[i] = DISPID_TESTOBJ_OK;
+ }else if(!strcmp_wa(rgszNames[i], "trace")) {
+ rgDispId[i] = DISPID_TESTOBJ_TRACE;
+ }else if(!strcmp_wa(rgszNames[i], "reportSuccess")) {
+ rgDispId[i] = DISPID_TESTOBJ_REPORTSUCCESS;
+ }else if(!strcmp_wa(rgszNames[i], "wscriptFullName")) {
+ rgDispId[i] = DISPID_TESTOBJ_WSCRIPTFULLNAME;
+ }else if(!strcmp_wa(rgszNames[i], "wscriptPath")) {
+ rgDispId[i] = DISPID_TESTOBJ_WSCRIPTPATH;
+ }else if(!strcmp_wa(rgszNames[i], "wscriptScriptName")) {
+ rgDispId[i] = DISPID_TESTOBJ_WSCRIPTSCRIPTNAME;
+ }else if(!strcmp_wa(rgszNames[i], "wscriptScriptFullName")) {
+ rgDispId[i] = DISPID_TESTOBJ_WSCRIPTSCRIPTFULLNAME;
+ }else {
+ ok(0, "unexpected name %s\n", wine_dbgstr_w(rgszNames[i]));
+ return DISP_E_UNKNOWNNAME;
+ }
+ }
+
+ return S_OK;
+}
+
+static HRESULT WINAPI Dispatch_Invoke(IDispatch *iface, DISPID dispIdMember, REFIID riid,
LCID lcid,
+ WORD wFlags, DISPPARAMS *pdp, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT
*puArgErr)
+{
+ switch(dispIdMember) {
+ case DISPID_TESTOBJ_OK: {
+ VARIANT *expr, *msg;
+
+ ok(wFlags == INVOKE_FUNC, "wFlags = %x\n", wFlags);
+ ok(pdp->cArgs == 2, "cArgs = %d\n", pdp->cArgs);
+ ok(!pdp->cNamedArgs, "cNamedArgs = %d\n", pdp->cNamedArgs);
+
+ expr = pdp->rgvarg+1;
+ if(V_VT(expr) == (VT_VARIANT|VT_BYREF))
+ expr = V_VARIANTREF(expr);
+
+ msg = pdp->rgvarg;
+ if(V_VT(msg) == (VT_VARIANT|VT_BYREF))
+ msg = V_VARIANTREF(msg);
+
+ ok(V_VT(msg) == VT_BSTR, "V_VT(psp->rgvargs) = %d\n", V_VT(msg));
+ ok(V_VT(expr) == VT_BOOL, "V_VT(psp->rgvargs+1) = %d\n",
V_VT(expr));
+ ok(V_BOOL(expr), "%s: %s\n", script_name, wine_dbgstr_w(V_BSTR(msg)));
+ if(pVarResult)
+ V_VT(pVarResult) = VT_EMPTY;
+ break;
+ }
+ case DISPID_TESTOBJ_TRACE:
+ ok(wFlags == INVOKE_FUNC, "wFlags = %x\n", wFlags);
+ ok(pdp->cArgs == 1, "cArgs = %d\n", pdp->cArgs);
+ ok(!pdp->cNamedArgs, "cNamedArgs = %d\n", pdp->cNamedArgs);
+ ok(V_VT(pdp->rgvarg) == VT_BSTR, "V_VT(psp->rgvargs) = %d\n",
V_VT(pdp->rgvarg));
+ trace("%s: %s\n", script_name, wine_dbgstr_w(V_BSTR(pdp->rgvarg)));
+ if(pVarResult)
+ V_VT(pVarResult) = VT_EMPTY;
+ break;
+ case DISPID_TESTOBJ_REPORTSUCCESS:
+ CHECK_EXPECT(reportSuccess);
+
+ ok(wFlags == INVOKE_FUNC, "wFlags = %x\n", wFlags);
+ ok(pdp->cArgs == 0, "cArgs = %d\n", pdp->cArgs);
+ ok(!pdp->cNamedArgs, "cNamedArgs = %d\n", pdp->cNamedArgs);
+ if(pVarResult)
+ V_VT(pVarResult) = VT_EMPTY;
+ break;
+ case DISPID_TESTOBJ_WSCRIPTFULLNAME:
+ {
+ WCHAR fullName[MAX_PATH];
+ DWORD res;
+
+ ok(wFlags == INVOKE_PROPERTYGET, "wFlags = %x\n", wFlags);
+ ok(pdp->cArgs == 0, "cArgs = %d\n", pdp->cArgs);
+ ok(!pdp->cNamedArgs, "cNamedArgs = %d\n", pdp->cNamedArgs);
+ V_VT(pVarResult) = VT_BSTR;
+ res = GetModuleFileNameExW(wscript_process, NULL, fullName,
sizeof(fullName)/sizeof(WCHAR));
+ if(res == 0)
+ return E_FAIL;
+ if(!(V_BSTR(pVarResult) = SysAllocString(fullName)))
+ return E_OUTOFMEMORY;
+ break;
+ }
+ case DISPID_TESTOBJ_WSCRIPTPATH:
+ {
+ WCHAR fullPath[MAX_PATH];
+ DWORD res;
+ const WCHAR *pos;
+
+ ok(wFlags == INVOKE_PROPERTYGET, "wFlags = %x\n", wFlags);
+ ok(pdp->cArgs == 0, "cArgs = %d\n", pdp->cArgs);
+ ok(!pdp->cNamedArgs, "cNamedArgs = %d\n", pdp->cNamedArgs);
+ V_VT(pVarResult) = VT_BSTR;
+ res = GetModuleFileNameExW(wscript_process, NULL, fullPath,
sizeof(fullPath)/sizeof(WCHAR));
+ if(res == 0)
+ return E_FAIL;
+ pos = mystrrchr(fullPath, '\\');
+ if(!(V_BSTR(pVarResult) = SysAllocStringLen(fullPath, pos-fullPath)))
+ return E_OUTOFMEMORY;
+ break;
+ }
+ case DISPID_TESTOBJ_WSCRIPTSCRIPTNAME:
+ {
+ char fullPath[MAX_PATH];
+ char *pos;
+ long res;
+
+ ok(wFlags == INVOKE_PROPERTYGET, "wFlags = %x\n", wFlags);
+ ok(pdp->cArgs == 0, "cArgs = %d\n", pdp->cArgs);
+ ok(!pdp->cNamedArgs, "cNamedArgs = %d\n", pdp->cNamedArgs);
+ V_VT(pVarResult) = VT_BSTR;
+ res = GetFullPathNameA(script_name, sizeof(fullPath)/sizeof(WCHAR), fullPath,
&pos);
+ if(!res || res > sizeof(fullPath)/sizeof(WCHAR))
+ return E_FAIL;
+ if(!(V_BSTR(pVarResult) = SysAllocString(a2bstr(pos))))
+ return E_OUTOFMEMORY;
+ break;
+ }
+ case DISPID_TESTOBJ_WSCRIPTSCRIPTFULLNAME:
+ {
+ char fullPath[MAX_PATH];
+ long res;
+
+ ok(wFlags == INVOKE_PROPERTYGET, "wFlags = %x\n", wFlags);
+ ok(pdp->cArgs == 0, "cArgs = %d\n", pdp->cArgs);
+ ok(!pdp->cNamedArgs, "cNamedArgs = %d\n", pdp->cNamedArgs);
+ V_VT(pVarResult) = VT_BSTR;
+ res = GetFullPathNameA(script_name, sizeof(fullPath)/sizeof(WCHAR), fullPath,
NULL);
+ if(!res || res > sizeof(fullPath)/sizeof(WCHAR))
+ return E_FAIL;
+ if(!(V_BSTR(pVarResult) = SysAllocString(a2bstr(fullPath))))
+ return E_OUTOFMEMORY;
+ break;
+ }
+ default:
+ ok(0, "unexpected dispIdMember %d\n", dispIdMember);
+ return E_NOTIMPL;
+ }
+
+ return S_OK;
+}
+
+static IDispatchVtbl testobj_vtbl = {
+ Dispatch_QueryInterface,
+ Dispatch_AddRef,
+ Dispatch_Release,
+ Dispatch_GetTypeInfoCount,
+ Dispatch_GetTypeInfo,
+ Dispatch_GetIDsOfNames,
+ Dispatch_Invoke
+};
+
+static IDispatch testobj = { &testobj_vtbl };
+
+static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void
**ppv)
+{
+ if(IsEqualGUID(&IID_IUnknown, riid) || IsEqualGUID(&IID_IClassFactory, riid))
{
+ *ppv = iface;
+ return S_OK;
+ }
+
+ *ppv = NULL;
+ return E_NOINTERFACE;
+}
+
+static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
+{
+ return 2;
+}
+
+static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
+{
+ return 1;
+}
+
+static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *outer,
REFIID riid, void **ppv)
+{
+ ok(!outer, "outer = %p\n", outer);
+ return IDispatch_QueryInterface(&testobj, riid, ppv);
+}
+
+static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
+{
+ return S_OK;
+}
+
+static const IClassFactoryVtbl ClassFactoryVtbl = {
+ ClassFactory_QueryInterface,
+ ClassFactory_AddRef,
+ ClassFactory_Release,
+ ClassFactory_CreateInstance,
+ ClassFactory_LockServer
+};
+
+static IClassFactory testobj_cf = { &ClassFactoryVtbl };
+
+static void run_test(const char *file_name)
+{
+ char command[MAX_PATH];
+ STARTUPINFOA si = {sizeof(si)};
+ PROCESS_INFORMATION pi;
+ BOOL bres;
+
+ script_name = file_name;
+ sprintf(command, "wscript.exe %s arg1 2 ar3", file_name);
+
+ SET_EXPECT(reportSuccess);
+
+ bres = CreateProcessA(NULL, command, NULL, NULL, TRUE, 0, NULL, NULL, &si,
&pi);
+ if(!bres) {
+ win_skip("script.exe is not available\n");
+ CLEAR_CALLED(reportSuccess);
+ return;
+ }
+
+ wscript_process = pi.hProcess;
+ WaitForSingleObject(pi.hProcess, INFINITE);
+ CloseHandle(pi.hThread);
+ CloseHandle(pi.hProcess);
+
+ CHECK_CALLED(reportSuccess);
+}
+
+static BOOL WINAPI test_enum_proc(HMODULE module, LPCSTR type, LPSTR name, LONG_PTR
param)
+{
+ const char *script_data, *ext;
+ DWORD script_size, size;
+ char file_name[MAX_PATH];
+ HANDLE file;
+ HRSRC src;
+ BOOL res;
+
+ trace("running %s test...\n", name);
+
+ src = FindResourceA(NULL, name, type);
+ ok(src != NULL, "Could not find resource %s: %u\n", name, GetLastError());
+ if(!src)
+ return TRUE;
+
+ script_data = LoadResource(NULL, src);
+ script_size = SizeofResource(NULL, src);
+ while(script_size && !script_data[script_size-1])
+ script_size--;
+
+ ext = strrchr(name, '.');
+ ok(ext != NULL, "no script extension\n");
+ if(!ext)
+ return TRUE;
+
+ sprintf(file_name, "test%s", ext);
+
+ file = CreateFileA(file_name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
+ FILE_ATTRIBUTE_NORMAL, NULL);
+ ok(file != INVALID_HANDLE_VALUE, "CreateFile failed: %u\n",
GetLastError());
+ if(file == INVALID_HANDLE_VALUE)
+ return TRUE;
+
+ res = WriteFile(file, script_data, script_size, &size, NULL);
+ CloseHandle(file);
+ ok(res, "Could not write to file: %u\n", GetLastError());
+ if(!res)
+ return TRUE;
+
+ run_test(file_name);
+
+ DeleteFileA(file_name);
+ return TRUE;
+}
+
+static BOOL init_key(const char *key_name, const char *def_value, BOOL init)
+{
+ HKEY hkey;
+ DWORD res;
+
+ if(!init) {
+ RegDeleteKeyA(HKEY_CLASSES_ROOT, key_name);
+ return TRUE;
+ }
+
+ res = RegCreateKeyA(HKEY_CLASSES_ROOT, key_name, &hkey);
+ if(res != ERROR_SUCCESS)
+ return FALSE;
+
+ if(def_value)
+ res = RegSetValueA(hkey, NULL, REG_SZ, def_value, strlen(def_value));
+
+ RegCloseKey(hkey);
+ return res == ERROR_SUCCESS;
+}
+
+static BOOL init_registry(BOOL init)
+{
+ return init_key("Wine.Test\\CLSID", TESTOBJ_CLSID, init);
+}
+
+static BOOL register_activex(void)
+{
+ DWORD regid;
+ HRESULT hres;
+
+ if(!init_registry(TRUE)) {
+ init_registry(FALSE);
+ return FALSE;
+ }
+
+ hres = CoRegisterClassObject(&CLSID_TestObj, (IUnknown *)&testobj_cf,
+ CLSCTX_SERVER, REGCLS_MULTIPLEUSE, ®id);
+ ok(hres == S_OK, "Could not register script engine: %08x\n", hres);
+ return TRUE;
+}
+
+START_TEST(run)
+{
+ char **argv;
+ int argc;
+
+ CoInitializeEx(NULL, COINIT_MULTITHREADED);
+
+ if(!register_activex()) {
+ skip("Could not register ActiveX object.\n");
+ CoUninitialize();
+ return;
+ }
+
+ argc = winetest_get_mainargs(&argv);
+ if(argc > 2)
+ run_test(argv[2]);
+ else
+ EnumResourceNamesA(NULL, "TESTSCRIPT", test_enum_proc, 0);
+
+ init_registry(FALSE);
+ CoUninitialize();
+}
Propchange: trunk/rostests/winetests/wscript/run.c
------------------------------------------------------------------------------
svn:eol-style = native
Added: trunk/rostests/winetests/wscript/run.js
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/wscript/run.js?…
==============================================================================
--- trunk/rostests/winetests/wscript/run.js (added)
+++ trunk/rostests/winetests/wscript/run.js [iso-8859-1] Sat Nov 8 11:26:28 2014
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2011 Jacek Caban for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+var winetest = new ActiveXObject("Wine.Test");
+
+function ok(expr, msg) {
+ winetest.ok(expr, msg);
+}
+
+ok(typeof(WScript) === "object", "typeof(WScript) = " +
typeof(WScript));
+ok(typeof(WSH) === "object", "typeof(WSH) = " + typeof(WSH));
+ok(WScript === WSH, "WScript !== WSH");
+ok(WScript.Name === "Windows Script Host", "WScript.Name = " +
WScript.Name);
+ok(typeof(WScript.Version) === "string", "typeof(WScript.Version) = "
+ typeof(WScript.Version));
+ok(typeof(WScript.BuildVersion) === "number", "typeof(WScript.BuldVersion)
= " + typeof(WScript.BuldVersion));
+ok(WScript.FullName === winetest.wscriptFullName, "WScript.FullName = ",
WScript.FullName);
+ok(WScript.Path === winetest.wscriptPath, "WScript.Path = ", WScript.Path);
+ok(WScript.ScriptName === winetest.wscriptScriptName, "WScript.ScriptName = " +
WScript.ScriptName);
+ok(WScript.ScriptFullName === winetest.wscriptScriptFullName,
"WScript.ScriptFullName = " + WScript.ScriptFullName);
+ok(typeof(WScript.Arguments) === "object", "typeof(WScript.Arguments) =
" + typeof(WScript.Arguments));
+ok(WScript.Arguments.Item(0) === "arg1", "WScript.Arguments.Item(0) =
" + WScript.Arguments.Item(0));
+ok(WScript.Arguments.Item(1) === "2", "WScript.Arguments.Item(1) = "
+ WScript.Arguments.Item(1));
+ok(WScript.Arguments.Item(2) === "ar3", "WScript.Arguments.Item(2) =
" + WScript.Arguments.Item(2));
+try {
+ WScript.Arguments.Item(3);
+ ok(false, "expected exception");
+}catch(e) {}
+ok(WScript.Arguments.Count() === 3, "WScript.Arguments.Count() = " +
WScript.Arguments.Count());
+ok(WScript.Arguments.length === 3, "WScript.Arguments.length = " +
WScript.Arguments.length);
+ok(WScript.Interactive === true, "WScript.Interactive = " +
WScript.Interactive);
+WScript.Interactive = false;
+ok(WScript.Interactive === false, "WScript.Interactive = " +
WScript.Interactive);
+WScript.Interactive = true;
+ok(WScript.Interactive === true, "WScript.Interactive = " +
WScript.Interactive);
+ok(WScript.Application === WScript, "WScript.Application = " +
WScript.Application);
+
+var obj = WScript.CreateObject("Wine.Test");
+obj.ok(true, "Broken WScript.CreateObject object?");
+
+try {
+ obj = WScript.CreateObject("nonexistent");
+ ok(false, "Expected exception for CreateObject('nonexistent')");
+}catch(e) {}
+
+winetest.reportSuccess();
Propchange: trunk/rostests/winetests/wscript/run.js
------------------------------------------------------------------------------
svn:eol-style = native
Added: trunk/rostests/winetests/wscript/run.vbs
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/wscript/run.vbs…
==============================================================================
--- trunk/rostests/winetests/wscript/run.vbs (added)
+++ trunk/rostests/winetests/wscript/run.vbs [iso-8859-1] Sat Nov 8 11:26:28 2014
@@ -0,0 +1,30 @@
+'
+' Copyright 2011 Jacek Caban for CodeWeavers
+'
+' This library is free software; you can redistribute it and/or
+' modify it under the terms of the GNU Lesser General Public
+' License as published by the Free Software Foundation; either
+' version 2.1 of the License, or (at your option) any later version.
+'
+' This library is distributed in the hope that it will be useful,
+' but WITHOUT ANY WARRANTY; without even the implied warranty of
+' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+' Lesser General Public License for more details.
+'
+' You should have received a copy of the GNU Lesser General Public
+' License along with this library; if not, write to the Free Software
+' Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+'
+
+Option Explicit
+
+Dim winetest
+Set winetest = CreateObject("Wine.Test")
+
+Sub ok(expr, msg)
+ Call winetest.ok(expr, msg)
+End Sub
+
+Call ok(WScript is WSH, "WScript is not WSH")
+
+Call winetest.reportSuccess()
Propchange: trunk/rostests/winetests/wscript/run.vbs
------------------------------------------------------------------------------
svn:eol-style = native
Added: trunk/rostests/winetests/wscript/testlist.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/wscript/testlis…
==============================================================================
--- trunk/rostests/winetests/wscript/testlist.c (added)
+++ trunk/rostests/winetests/wscript/testlist.c [iso-8859-1] Sat Nov 8 11:26:28 2014
@@ -0,0 +1,12 @@
+/* Automatically generated by make depend; DO NOT EDIT!! */
+
+#define STANDALONE
+#include <wine/test.h>
+
+extern void func_run(void);
+
+const struct test winetest_testlist[] =
+{
+ { "run", func_run },
+ { 0, 0 }
+};
Propchange: trunk/rostests/winetests/wscript/testlist.c
------------------------------------------------------------------------------
svn:eol-style = native