mirror of
https://github.com/reactos/reactos.git
synced 2025-01-14 23:53:38 +08:00
[MSHTML_WINETEST] Sync with Wine Staging 1.7.55. CORE-10536
svn path=/trunk/; revision=70193
This commit is contained in:
parent
9179de2560
commit
b417d5296d
@ -13,7 +13,8 @@ list(APPEND SOURCE
|
||||
protocol.c
|
||||
script.c
|
||||
style.c
|
||||
testlist.c)
|
||||
testlist.c
|
||||
xmlhttprequest.c)
|
||||
|
||||
add_executable(mshtml_winetest ${SOURCE} rsrc.rc)
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1057,6 +1057,7 @@ static HRESULT WINAPI submit_onclick_setret(IDispatchEx *iface, DISPID id, LCID
|
||||
VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
|
||||
{
|
||||
IHTMLEventObj *event;
|
||||
VARIANT v;
|
||||
HRESULT hres;
|
||||
|
||||
CHECK_EXPECT(submit_onclick_setret);
|
||||
@ -1068,10 +1069,20 @@ static HRESULT WINAPI submit_onclick_setret(IDispatchEx *iface, DISPID id, LCID
|
||||
ok(hres == S_OK, "get_event failed: %08x\n", hres);
|
||||
ok(event != NULL, "event == NULL\n");
|
||||
|
||||
V_VT(&v) = VT_ERROR;
|
||||
hres = IHTMLEventObj_get_returnValue(event, &v);
|
||||
ok(hres == S_OK, "get_returnValue failed: %08x\n", hres);
|
||||
ok(V_VT(&v) == VT_EMPTY, "V_VT(returnValue) = %d\n", V_VT(&v));
|
||||
|
||||
hres = IHTMLEventObj_put_returnValue(event, onclick_event_retval);
|
||||
ok(hres == S_OK, "put_returnValue failed: %08x\n", hres);
|
||||
IHTMLEventObj_Release(event);
|
||||
|
||||
V_VT(&v) = VT_ERROR;
|
||||
hres = IHTMLEventObj_get_returnValue(event, &v);
|
||||
ok(hres == S_OK, "get_returnValue failed: %08x\n", hres);
|
||||
ok(VarCmp(&v, &onclick_event_retval, 0, 0) == VARCMP_EQ, "unexpected returnValue\n");
|
||||
|
||||
IHTMLEventObj_Release(event);
|
||||
*pvarRes = onclick_retval;
|
||||
return S_OK;
|
||||
}
|
||||
@ -1097,9 +1108,9 @@ static HRESULT WINAPI submit_onclick_cancel(IDispatchEx *iface, DISPID id, LCID
|
||||
|
||||
hres = IHTMLEventObj_put_cancelBubble(event, VARIANT_TRUE);
|
||||
ok(hres == S_OK, "put_returnValue failed: %08x\n", hres);
|
||||
IHTMLEventObj_Release(event);
|
||||
|
||||
test_event_cancelbubble(event, VARIANT_TRUE);
|
||||
IHTMLEventObj_Release(event);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@ -1412,7 +1423,7 @@ static void pump_msgs(BOOL *b)
|
||||
DispatchMessageW(&msg);
|
||||
}
|
||||
}else {
|
||||
while(!b && PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) {
|
||||
while(PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) {
|
||||
TranslateMessage(&msg);
|
||||
DispatchMessageW(&msg);
|
||||
}
|
||||
@ -1571,7 +1582,7 @@ static void test_onclick(IHTMLDocument2 *doc)
|
||||
V_VT(&v) = VT_BSTR;
|
||||
V_BSTR(&v) = a2bstr("function();");
|
||||
hres = IHTMLElement_put_onclick(div, v);
|
||||
todo_wine ok(hres == S_OK, "put_onclick failed: %08x\n", hres);
|
||||
ok(hres == S_OK, "put_onclick failed: %08x\n", hres);
|
||||
|
||||
if(hres == S_OK) {
|
||||
V_VT(&v) = VT_EMPTY;
|
||||
@ -1843,7 +1854,7 @@ static void test_imgload(IHTMLDocument2 *doc)
|
||||
ok(V_DISPATCH(&v) == (IDispatch*)&img_onerror_obj, "V_DISPATCH(onerror) != onerrorFunc\n");
|
||||
VariantClear(&v);
|
||||
|
||||
str = a2bstr("https://www.winehq.org/images/winehq_logo_text.png");
|
||||
str = a2bstr("http://test.winehq.org/tests/winehq_snapshot/index_files/winehq_logo_text.png");
|
||||
hres = IHTMLImgElement_put_src(img, str);
|
||||
ok(hres == S_OK, "put_src failed: %08x\n", hres);
|
||||
SysFreeString(str);
|
||||
|
@ -139,6 +139,24 @@ function test_insert_script() {
|
||||
readystatechange_log = "append";
|
||||
}
|
||||
|
||||
var string_handler_called = false;
|
||||
|
||||
function test_string_event_handler() {
|
||||
var e = document.createElement("div");
|
||||
var event_str = "string_handler_called = true;";
|
||||
|
||||
document.body.appendChild(e);
|
||||
e.onclick = event_str;
|
||||
ok(e.onclick === event_str, "e.onclick = " + e.onclick);
|
||||
e.click();
|
||||
ok(string_handler_called === false, "string handler called");
|
||||
|
||||
e.setAttribute("onclick", event_str);
|
||||
ok(e.onclick === event_str, "e.onclick = " + e.onclick);
|
||||
e.click();
|
||||
ok(string_handler_called === false, "string handler called");
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
try {
|
||||
ok(inlscr_complete_called, "onreadystatechange not fired");
|
||||
@ -159,6 +177,7 @@ window.onload = function() {
|
||||
ondataavailable_test();
|
||||
test_handler_this();
|
||||
test_insert_script();
|
||||
test_string_event_handler();
|
||||
}catch(e) {
|
||||
ok(false, "Got an exception: " + e.message);
|
||||
}
|
||||
|
@ -872,7 +872,13 @@ static IHlinkFrame HlinkFrame = { &HlinkFrameVtbl };
|
||||
|
||||
static HRESULT WINAPI NewWindowManager_QueryInterface(INewWindowManager *iface, REFIID riid, void **ppv)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
if(IsEqualGUID(&IID_IUnknown, riid) || IsEqualGUID(riid, &IID_INewWindowManager)) {
|
||||
*ppv = iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
trace("NewWindowManager_QueryInterface %s\n", wine_dbgstr_guid(riid));
|
||||
*ppv = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
@ -2614,6 +2620,12 @@ static HRESULT WINAPI DocHostUIHandler_TranslateUrl(IDocHostUIHandler2 *iface, D
|
||||
ok(ppchURLOut != NULL, "ppchURLOut == NULL\n");
|
||||
ok(!*ppchURLOut, "*ppchURLOut = %p\n", *ppchURLOut);
|
||||
|
||||
/* Not related to hash navigation, just return NULL and S_OK in some cases. */
|
||||
if(loading_hash) {
|
||||
*ppchURLOut = NULL;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
@ -2633,7 +2645,7 @@ static HRESULT WINAPI DocHostUIHandler_GetOverrideKeyPath(IDocHostUIHandler2 *if
|
||||
ok(pchKey != NULL, "pchKey = NULL\n");
|
||||
if(pchKey)
|
||||
ok(!*pchKey, "*pchKey=%p, expected NULL\n", *pchKey);
|
||||
ok(!dw, "dw=%d, xepected 0\n", dw);
|
||||
ok(!dw, "dw=%d, expected 0\n", dw);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@ -2866,8 +2878,6 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
|
||||
}
|
||||
|
||||
if(IsEqualGUID(&CGID_ShellDocView, pguidCmdGroup)) {
|
||||
if(nCmdID != 63 && nCmdID != 178 && (!is_refresh || nCmdID != 37))
|
||||
test_readyState(NULL);
|
||||
ok(nCmdexecopt == 0, "nCmdexecopts=%08x\n", nCmdexecopt);
|
||||
|
||||
switch(nCmdID) {
|
||||
@ -2881,6 +2891,8 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
|
||||
test_readyState(NULL);
|
||||
load_state = LD_LOADING;
|
||||
}else {
|
||||
if(!is_refresh)
|
||||
test_readyState(NULL);
|
||||
if(nav_url)
|
||||
test_GetCurMoniker(doc_unk, NULL, nav_serv_url, FALSE);
|
||||
else if(load_from_stream)
|
||||
@ -2944,6 +2956,7 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
|
||||
if(pvaIn)
|
||||
ok(V_VT(pvaOut) == VT_EMPTY, "V_VT(pvaOut)=%d\n", V_VT(pvaOut));
|
||||
|
||||
test_readyState(NULL);
|
||||
return E_NOTIMPL;
|
||||
|
||||
case 103:
|
||||
@ -2952,6 +2965,7 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
|
||||
ok(pvaIn == NULL, "pvaIn != NULL\n");
|
||||
ok(pvaOut == NULL, "pvaOut != NULL\n");
|
||||
|
||||
test_readyState(NULL);
|
||||
return E_NOTIMPL;
|
||||
|
||||
case 105:
|
||||
@ -2960,12 +2974,14 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
|
||||
ok(pvaIn != NULL, "pvaIn == NULL\n");
|
||||
ok(pvaOut == NULL, "pvaOut != NULL\n");
|
||||
|
||||
test_readyState(NULL);
|
||||
return E_NOTIMPL;
|
||||
|
||||
case 138:
|
||||
CHECK_EXPECT2(Exec_ShellDocView_138);
|
||||
ok(!pvaIn, "pvaIn != NULL\n");
|
||||
ok(!pvaOut, "pvaOut != NULL\n");
|
||||
test_readyState(NULL);
|
||||
return S_OK;
|
||||
|
||||
case 140:
|
||||
@ -2974,10 +2990,13 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
|
||||
ok(pvaIn == NULL, "pvaIn != NULL\n");
|
||||
ok(pvaOut == NULL, "pvaOut != NULL\n");
|
||||
|
||||
test_readyState(NULL);
|
||||
return E_NOTIMPL;
|
||||
|
||||
case 83:
|
||||
case 101:
|
||||
case 102:
|
||||
case 132:
|
||||
case 133:
|
||||
case 134: /* TODO */
|
||||
case 135:
|
||||
@ -2991,6 +3010,7 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
|
||||
case 180:
|
||||
case 181:
|
||||
case 182:
|
||||
case 183:
|
||||
return E_NOTIMPL;
|
||||
|
||||
default:
|
||||
@ -3447,7 +3467,8 @@ static HRESULT WINAPI DocObjectService_FireBeforeNavigate2(IDocObjectService *i
|
||||
if(!testing_submit) {
|
||||
ok(!pPostData, "pPostData = %p\n", pPostData);
|
||||
ok(!cbPostData, "cbPostData = %d\n", cbPostData);
|
||||
ok(!lpszHeaders, "lpszHeaders = %s\n", wine_dbgstr_w(lpszHeaders));
|
||||
ok(!lpszHeaders || !strcmp_wa(lpszHeaders, "Referer: http://test.winehq.org/tests/winehq_snapshot/\r\n"),
|
||||
"lpszHeaders = %s\n", wine_dbgstr_w(lpszHeaders));
|
||||
}else {
|
||||
ok(cbPostData == 9, "cbPostData = %d\n", cbPostData);
|
||||
ok(!memcmp(pPostData, "cmd=TEST", cbPostData), "pPostData = %p\n", pPostData);
|
||||
@ -5731,7 +5752,6 @@ static void test_download(DWORD flags)
|
||||
SET_EXPECT(CountEntries);
|
||||
SET_EXPECT(Exec_HTTPEQUIV_DONE);
|
||||
}
|
||||
SET_EXPECT(SetStatusText);
|
||||
if(nav_url || support_wbapp) {
|
||||
SET_EXPECT(UpdateUI);
|
||||
SET_EXPECT(Exec_UPDATECOMMANDS);
|
||||
@ -5927,6 +5947,56 @@ static void test_Persist(IHTMLDocument2 *doc, IMoniker *mon)
|
||||
}
|
||||
}
|
||||
|
||||
static void test_put_hash(IHTMLDocument2 *doc, const char *new_hash)
|
||||
{
|
||||
static char nav_url_buff[256];
|
||||
IHTMLLocation *location;
|
||||
BSTR str;
|
||||
char *psharp;
|
||||
HRESULT hres;
|
||||
|
||||
trace("put_hash, url = %s, new hash = %s\n", nav_url, new_hash);
|
||||
|
||||
location = NULL;
|
||||
hres = IHTMLDocument2_get_location(doc, &location);
|
||||
ok(hres == S_OK, "get_location failed: %08x\n", hres);
|
||||
ok(location != NULL, "location == NULL\n");
|
||||
|
||||
SET_EXPECT(TranslateUrl);
|
||||
SET_EXPECT(Exec_ShellDocView_67);
|
||||
SET_EXPECT(FireBeforeNavigate2);
|
||||
SET_EXPECT(FireDocumentComplete);
|
||||
SET_EXPECT(FireNavigateComplete2);
|
||||
|
||||
/* Edit nav_url */
|
||||
strcpy(nav_url_buff, nav_url);
|
||||
psharp = strchr(nav_url_buff, '#');
|
||||
if (psharp)
|
||||
*psharp = '\0';
|
||||
strcat(nav_url_buff, new_hash);
|
||||
nav_url = nav_url_buff;
|
||||
|
||||
str = a2bstr(new_hash);
|
||||
hres = IHTMLLocation_put_hash(location, str);
|
||||
ok (hres == S_OK, "put_hash failed: %08x\n", hres);
|
||||
SysFreeString(str);
|
||||
|
||||
CHECK_CALLED(TranslateUrl);
|
||||
CHECK_CALLED_BROKEN(Exec_ShellDocView_67); /* Broken on Win7 and 8 */
|
||||
CHECK_CALLED(FireBeforeNavigate2);
|
||||
CHECK_CALLED(FireDocumentComplete);
|
||||
CHECK_CALLED(FireNavigateComplete2);
|
||||
|
||||
|
||||
/* Check the result */
|
||||
hres = IHTMLLocation_get_hash(location, &str);
|
||||
ok(hres == S_OK, "get_hash failed: %08x\n", hres);
|
||||
ok(!strcmp_wa(str, new_hash), "expected %s, got %s\n", new_hash, wine_dbgstr_w(str));
|
||||
SysFreeString(str);
|
||||
|
||||
IHTMLLocation_Release(location);
|
||||
}
|
||||
|
||||
static void test_put_href(IHTMLDocument2 *doc, BOOL use_replace, const char *href, const char *new_nav_url, BOOL is_js,
|
||||
BOOL is_hash, DWORD dwl_flags)
|
||||
{
|
||||
@ -6111,7 +6181,7 @@ static void test_load_history(IHTMLDocument2 *doc)
|
||||
ok(hres == S_OK, "Could not get IPersistHistory iface: %08x\n", hres);
|
||||
|
||||
prev_url = nav_url;
|
||||
nav_url = "http://test.winehq.org/tests/winehq_snapshot/#test";
|
||||
nav_url = "http://test.winehq.org/tests/winehq_snapshot/#hash_test";
|
||||
nav_serv_url = "http://test.winehq.org/tests/winehq_snapshot/";
|
||||
|
||||
SET_EXPECT(Exec_ShellDocView_138);
|
||||
@ -6504,11 +6574,10 @@ static void test_exec_editmode(IUnknown *unk, BOOL loaded)
|
||||
|
||||
editmode = TRUE;
|
||||
|
||||
if(loaded)
|
||||
if(loaded) {
|
||||
load_state = LD_DOLOAD;
|
||||
|
||||
if(loaded)
|
||||
SET_EXPECT(GetClassID);
|
||||
}
|
||||
SET_EXPECT(SetStatusText);
|
||||
SET_EXPECT(Exec_ShellDocView_37);
|
||||
SET_EXPECT(GetHostInfo);
|
||||
@ -7717,6 +7786,7 @@ static void test_HTMLDocument_http(BOOL with_wbapp)
|
||||
nav_url = nav_serv_url = "http://test.winehq.org/tests/winehq_snapshot/"; /* for valid prev nav_url */
|
||||
if(support_wbapp) {
|
||||
test_put_href(doc, FALSE, "#test", "http://test.winehq.org/tests/winehq_snapshot/#test", FALSE, TRUE, 0);
|
||||
test_put_hash(doc, "#hash_test");
|
||||
test_travellog(doc);
|
||||
test_refresh(doc);
|
||||
}
|
||||
@ -8493,8 +8563,12 @@ static void test_ServiceProvider(void)
|
||||
hres = IServiceProvider_QueryService(provider, &SID_SContainerDispatch, &IID_IUnknown, (void**)&unk);
|
||||
ok(hres == S_OK, "got 0x%08x\n", hres);
|
||||
ok(iface_cmp((IUnknown*)doc, unk), "got wrong pointer\n");
|
||||
|
||||
IUnknown_Release(unk);
|
||||
|
||||
hres = IServiceProvider_QueryService(provider, &SID_SHTMLEditServices, &IID_IHTMLEditServices, (void**)&unk);
|
||||
ok(hres == S_OK, "QueryService(HTMLEditServices) failed: %08x\n", hres);
|
||||
IUnknown_Release(unk);
|
||||
|
||||
IServiceProvider_Release(provider);
|
||||
release_document(doc);
|
||||
}
|
||||
|
@ -333,20 +333,20 @@ static HRESULT WINAPI ServiceProvider_QueryService(IServiceProvider *iface, REFG
|
||||
{
|
||||
if(IsEqualGUID(guidService, &SID_VariantConversion)) {
|
||||
CHECK_EXPECT(QS_VariantConversion);
|
||||
ok(IsEqualGUID(riid, &IID_IVariantChangeType), "uenxpected riid %s\n", wine_dbgstr_guid(riid));
|
||||
ok(IsEqualGUID(riid, &IID_IVariantChangeType), "unexpected riid %s\n", wine_dbgstr_guid(riid));
|
||||
*ppv = &VChangeType;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
if(IsEqualGUID(guidService, &IID_IActiveScriptSite)) {
|
||||
CHECK_EXPECT(QS_IActiveScriptSite);
|
||||
ok(IsEqualGUID(riid, &IID_IOleCommandTarget), "uenxpected riid %s\n", wine_dbgstr_guid(riid));
|
||||
ok(IsEqualGUID(riid, &IID_IOleCommandTarget), "unexpected riid %s\n", wine_dbgstr_guid(riid));
|
||||
return IActiveScriptSite_QueryInterface(site, riid, ppv);
|
||||
}
|
||||
|
||||
if(IsEqualGUID(guidService, &SID_GetCaller)) {
|
||||
CHECK_EXPECT(QS_GetCaller);
|
||||
ok(IsEqualGUID(riid, &IID_IServiceProvider), "uenxpected riid %s\n", wine_dbgstr_guid(riid));
|
||||
ok(IsEqualGUID(riid, &IID_IServiceProvider), "unexpected riid %s\n", wine_dbgstr_guid(riid));
|
||||
*ppv = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
@ -2435,6 +2435,17 @@ static void test_body_style(IHTMLStyle *style)
|
||||
ok(!strcmp_wa(str, "nowrap"), "whiteSpace = %s\n", wine_dbgstr_w(str));
|
||||
SysFreeString(str);
|
||||
|
||||
str = a2bstr("normal");
|
||||
hres = IHTMLStyle_put_whiteSpace(style, str);
|
||||
SysFreeString(str);
|
||||
ok(hres == S_OK, "put_whiteSpace failed: %08x\n", hres);
|
||||
|
||||
str = NULL;
|
||||
hres = IHTMLStyle_get_whiteSpace(style, &str);
|
||||
ok(hres == S_OK, "get_whiteSpace failed: %08x\n", hres);
|
||||
ok(!strcmp_wa(str, "normal"), "whiteSpace = %s\n", wine_dbgstr_w(str));
|
||||
SysFreeString(str);
|
||||
|
||||
/* listStyleType */
|
||||
hres = IHTMLStyle_get_listStyleType(style, &str);
|
||||
ok(hres == S_OK, "get_listStyleType failed: %08x\n", hres);
|
||||
@ -2622,6 +2633,7 @@ static void test_style_filters(IHTMLElement *elem)
|
||||
static void test_current_style(IHTMLCurrentStyle *current_style)
|
||||
{
|
||||
IHTMLCurrentStyle2 *current_style2;
|
||||
IHTMLCurrentStyle3 *current_style3;
|
||||
VARIANT_BOOL b;
|
||||
BSTR str;
|
||||
HRESULT hres;
|
||||
@ -2895,6 +2907,16 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
|
||||
ok(b == VARIANT_TRUE, "hasLayout = %x\n", b);
|
||||
|
||||
IHTMLCurrentStyle2_Release(current_style2);
|
||||
|
||||
hres = IHTMLCurrentStyle_QueryInterface(current_style, &IID_IHTMLCurrentStyle3, (void**)¤t_style3);
|
||||
ok(hres == S_OK, "Could not get IHTMLCurrentStyle3 iface: %08x\n", hres);
|
||||
|
||||
hres = IHTMLCurrentStyle3_get_whiteSpace(current_style3, &str);
|
||||
ok(hres == S_OK, "get_whiteSpace failed: %08x\n", hres);
|
||||
ok(!strcmp_wa(str, "normal"), "whiteSpace = %s\n", wine_dbgstr_w(str));
|
||||
SysFreeString(str);
|
||||
|
||||
IHTMLCurrentStyle3_Release(current_style3);
|
||||
}
|
||||
|
||||
static const char basic_test_str[] = "<html><body><div id=\"divid\"></div/</body></html>";
|
||||
|
@ -12,6 +12,7 @@ extern void func_misc(void);
|
||||
extern void func_protocol(void);
|
||||
extern void func_script(void);
|
||||
extern void func_style(void);
|
||||
extern void func_xmlhttprequest(void);
|
||||
|
||||
const struct test winetest_testlist[] =
|
||||
{
|
||||
@ -24,5 +25,6 @@ const struct test winetest_testlist[] =
|
||||
{ "protocol", func_protocol },
|
||||
{ "script", func_script },
|
||||
{ "style", func_style },
|
||||
{ "xmlhttprequest", func_xmlhttprequest },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
940
rostests/winetests/mshtml/xmlhttprequest.c
Normal file
940
rostests/winetests/mshtml/xmlhttprequest.c
Normal file
@ -0,0 +1,940 @@
|
||||
/*
|
||||
* Copyright 2015 Zhenbo Li
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#define COBJMACROS
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "ole2.h"
|
||||
#include "mshtml.h"
|
||||
|
||||
static BSTR a2bstr(const char *str)
|
||||
{
|
||||
BSTR ret;
|
||||
int len;
|
||||
|
||||
len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
|
||||
ret = SysAllocStringLen(NULL, len);
|
||||
MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int strcmp_wa(LPCWSTR strw, const char *stra)
|
||||
{
|
||||
CHAR buf[512];
|
||||
WideCharToMultiByte(CP_ACP, 0, strw, -1, buf, sizeof(buf), NULL, NULL);
|
||||
return lstrcmpA(stra, buf);
|
||||
}
|
||||
|
||||
#define DEFINE_EXPECT(func) \
|
||||
static BOOL expect_ ## func = FALSE, called_ ## func = FALSE
|
||||
|
||||
#define SET_EXPECT(func) \
|
||||
do { called_ ## func = FALSE; expect_ ## func = TRUE; } while(0)
|
||||
|
||||
#define CHECK_EXPECT2(func) \
|
||||
do { \
|
||||
trace(#func "\n"); \
|
||||
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)
|
||||
|
||||
static IHTMLXMLHttpRequest *xhr = NULL;
|
||||
static BSTR content_type = NULL;
|
||||
static int loading_cnt = 0;
|
||||
static int readystatechange_cnt = 0;
|
||||
|
||||
DEFINE_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
DEFINE_EXPECT(xmlhttprequest_onreadystatechange_headers_received);
|
||||
DEFINE_EXPECT(xmlhttprequest_onreadystatechange_loading);
|
||||
DEFINE_EXPECT(xmlhttprequest_onreadystatechange_done);
|
||||
|
||||
#define test_disp(u,id) _test_disp(__LINE__,u,id)
|
||||
static void _test_disp(unsigned line, IUnknown *unk, const IID *diid)
|
||||
{
|
||||
IDispatchEx *dispex;
|
||||
ITypeInfo *typeinfo;
|
||||
UINT ticnt;
|
||||
HRESULT hres;
|
||||
|
||||
hres = IUnknown_QueryInterface(unk, &IID_IDispatchEx, (void**)&dispex);
|
||||
ok_(__FILE__,line) (hres == S_OK, "Could not get IDispatch: %08x\n", hres);
|
||||
if(FAILED(hres))
|
||||
return;
|
||||
|
||||
ticnt = 0xdeadbeef;
|
||||
hres = IDispatchEx_GetTypeInfoCount(dispex, &ticnt);
|
||||
ok_(__FILE__,line) (hres == S_OK, "GetTypeInfoCount failed: %08x\n", hres);
|
||||
ok_(__FILE__,line) (ticnt == 1, "ticnt=%u\n", ticnt);
|
||||
|
||||
hres = IDispatchEx_GetTypeInfo(dispex, 0, 0, &typeinfo);
|
||||
ok_(__FILE__,line) (hres == S_OK, "GetTypeInfo failed: %08x\n", hres);
|
||||
|
||||
if(SUCCEEDED(hres)) {
|
||||
TYPEATTR *type_attr;
|
||||
|
||||
hres = ITypeInfo_GetTypeAttr(typeinfo, &type_attr);
|
||||
ok_(__FILE__,line) (hres == S_OK, "GetTypeAttr failed: %08x\n", hres);
|
||||
ok_(__FILE__,line) (IsEqualGUID(&type_attr->guid, diid), "unexpected guid %s\n",
|
||||
wine_dbgstr_guid(&type_attr->guid));
|
||||
|
||||
ITypeInfo_ReleaseTypeAttr(typeinfo, type_attr);
|
||||
ITypeInfo_Release(typeinfo);
|
||||
}
|
||||
|
||||
IDispatchEx_Release(dispex);
|
||||
}
|
||||
|
||||
#define test_event_args(a,b,c,d,e,f,g) _test_event_args(__LINE__,a,b,c,d,e,f,g)
|
||||
static void _test_event_args(unsigned line, const IID *dispiid, DISPID id, WORD wFlags, DISPPARAMS *pdp,
|
||||
VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
|
||||
{
|
||||
ok_(__FILE__,line) (id == DISPID_VALUE, "id = %d\n", id);
|
||||
ok_(__FILE__,line) (wFlags == DISPATCH_METHOD, "wFlags = %x\n", wFlags);
|
||||
ok_(__FILE__,line) (pdp != NULL, "pdp == NULL\n");
|
||||
ok_(__FILE__,line) (pdp->cArgs == 1, "pdp->cArgs = %d\n", pdp->cArgs);
|
||||
ok_(__FILE__,line) (pdp->cNamedArgs == 1, "pdp->cNamedArgs = %d\n", pdp->cNamedArgs);
|
||||
ok_(__FILE__,line) (pdp->rgdispidNamedArgs[0] == DISPID_THIS, "pdp->rgdispidNamedArgs[0] = %d\n",
|
||||
pdp->rgdispidNamedArgs[0]);
|
||||
ok_(__FILE__,line) (V_VT(pdp->rgvarg) == VT_DISPATCH, "V_VT(rgvarg) = %d\n", V_VT(pdp->rgvarg));
|
||||
ok_(__FILE__,line) (pvarRes != NULL, "pvarRes == NULL\n");
|
||||
ok_(__FILE__,line) (pei != NULL, "pei == NULL");
|
||||
ok_(__FILE__,line) (!pspCaller, "pspCaller != NULL\n");
|
||||
|
||||
if(dispiid)
|
||||
_test_disp(line, (IUnknown*)V_DISPATCH(pdp->rgvarg), dispiid);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_QueryInterface(IDispatchEx *iface, REFIID riid, void **ppv)
|
||||
{
|
||||
*ppv = NULL;
|
||||
|
||||
if(IsEqualGUID(riid, &IID_IUnknown)
|
||||
|| IsEqualGUID(riid, &IID_IDispatch)
|
||||
|| IsEqualGUID(riid, &IID_IDispatchEx))
|
||||
*ppv = iface;
|
||||
else {
|
||||
ok(0, "unexpected riid %s\n", wine_dbgstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static ULONG WINAPI DispatchEx_AddRef(IDispatchEx *iface)
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
|
||||
static ULONG WINAPI DispatchEx_Release(IDispatchEx *iface)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo,
|
||||
LCID lcid, ITypeInfo **ppTInfo)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
|
||||
LPOLESTR *rgszNames, UINT cNames,
|
||||
LCID lcid, DISPID *rgDispId)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
|
||||
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
||||
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DWORD grfdex, DISPID *pid)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
|
||||
{
|
||||
ok(0, "unexpected call %s %x\n", wine_dbgstr_w(bstrName), grfdex);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetMemberProperties(IDispatchEx *iface, DISPID id, DWORD grfdexFetch, DWORD *pgrfdex)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DispatchEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI xmlhttprequest_onreadystatechange(IDispatchEx *iface, DISPID id, LCID lcid, WORD wFlags, DISPPARAMS *pdp,
|
||||
VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
|
||||
{
|
||||
LONG val;
|
||||
HRESULT hres;
|
||||
|
||||
test_event_args(&DIID_DispHTMLXMLHttpRequest, id, wFlags, pdp, pvarRes, pei, pspCaller);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
readystatechange_cnt++;
|
||||
|
||||
switch(val) {
|
||||
case 1:
|
||||
CHECK_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
break;
|
||||
case 2:
|
||||
CHECK_EXPECT(xmlhttprequest_onreadystatechange_headers_received);
|
||||
break;
|
||||
case 3:
|
||||
loading_cnt++;
|
||||
CHECK_EXPECT2(xmlhttprequest_onreadystatechange_loading);
|
||||
break;
|
||||
case 4:
|
||||
CHECK_EXPECT(xmlhttprequest_onreadystatechange_done);
|
||||
break;
|
||||
default:
|
||||
ok(0, "unexpected readyState: %d\n", val);
|
||||
}
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static IDispatchExVtbl xmlhttprequest_onreadystatechangeFuncVtbl = {
|
||||
DispatchEx_QueryInterface,
|
||||
DispatchEx_AddRef,
|
||||
DispatchEx_Release,
|
||||
DispatchEx_GetTypeInfoCount,
|
||||
DispatchEx_GetTypeInfo,
|
||||
DispatchEx_GetIDsOfNames,
|
||||
DispatchEx_Invoke,
|
||||
DispatchEx_GetDispID,
|
||||
xmlhttprequest_onreadystatechange,
|
||||
DispatchEx_DeleteMemberByName,
|
||||
DispatchEx_DeleteMemberByDispID,
|
||||
DispatchEx_GetMemberProperties,
|
||||
DispatchEx_GetMemberName,
|
||||
DispatchEx_GetNextDispID,
|
||||
DispatchEx_GetNameSpaceParent
|
||||
};
|
||||
static IDispatchEx xmlhttprequest_onreadystatechange_obj = { &xmlhttprequest_onreadystatechangeFuncVtbl };
|
||||
|
||||
static BOOL doc_complete;
|
||||
static IHTMLDocument2 *notif_doc;
|
||||
|
||||
static HRESULT WINAPI PropertyNotifySink_QueryInterface(IPropertyNotifySink *iface,
|
||||
REFIID riid, void**ppv)
|
||||
{
|
||||
if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
|
||||
*ppv = iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
static ULONG WINAPI PropertyNotifySink_AddRef(IPropertyNotifySink *iface)
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
|
||||
static ULONG WINAPI PropertyNotifySink_Release(IPropertyNotifySink *iface)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID)
|
||||
{
|
||||
if(dispID == DISPID_READYSTATE){
|
||||
BSTR state;
|
||||
HRESULT hres;
|
||||
|
||||
hres = IHTMLDocument2_get_readyState(notif_doc, &state);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
|
||||
if(!strcmp_wa(state, "complete"))
|
||||
doc_complete = TRUE;
|
||||
|
||||
SysFreeString(state);
|
||||
}
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI PropertyNotifySink_OnRequestEdit(IPropertyNotifySink *iface, DISPID dispID)
|
||||
{
|
||||
ok(0, "unexpected call\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl = {
|
||||
PropertyNotifySink_QueryInterface,
|
||||
PropertyNotifySink_AddRef,
|
||||
PropertyNotifySink_Release,
|
||||
PropertyNotifySink_OnChanged,
|
||||
PropertyNotifySink_OnRequestEdit
|
||||
};
|
||||
|
||||
static IPropertyNotifySink PropertyNotifySink = { &PropertyNotifySinkVtbl };
|
||||
|
||||
static void do_advise(IUnknown *unk, REFIID riid, IUnknown *unk_advise)
|
||||
{
|
||||
IConnectionPointContainer *container;
|
||||
IConnectionPoint *cp;
|
||||
DWORD cookie;
|
||||
HRESULT hres;
|
||||
|
||||
hres = IUnknown_QueryInterface(unk, &IID_IConnectionPointContainer, (void**)&container);
|
||||
ok(hres == S_OK, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres);
|
||||
|
||||
hres = IConnectionPointContainer_FindConnectionPoint(container, riid, &cp);
|
||||
IConnectionPointContainer_Release(container);
|
||||
ok(hres == S_OK, "FindConnectionPoint failed: %08x\n", hres);
|
||||
|
||||
hres = IConnectionPoint_Advise(cp, unk_advise, &cookie);
|
||||
IConnectionPoint_Release(cp);
|
||||
ok(hres == S_OK, "Advise failed: %08x\n", hres);
|
||||
}
|
||||
|
||||
static void pump_msgs(BOOL *b)
|
||||
{
|
||||
MSG msg;
|
||||
|
||||
if(b) {
|
||||
while(!*b && GetMessageW(&msg, NULL, 0, 0)) {
|
||||
TranslateMessage(&msg);
|
||||
DispatchMessageW(&msg);
|
||||
}
|
||||
}else {
|
||||
while(PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) {
|
||||
TranslateMessage(&msg);
|
||||
DispatchMessageW(&msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
struct HEADER_TYPE {
|
||||
const char *key;
|
||||
const char *value;
|
||||
};
|
||||
|
||||
static void create_xmlhttprequest(IHTMLDocument2 *doc)
|
||||
{
|
||||
IHTMLWindow2 *window;
|
||||
IHTMLWindow5 *window5;
|
||||
VARIANT var;
|
||||
IHTMLXMLHttpRequestFactory *factory;
|
||||
HRESULT hres;
|
||||
|
||||
hres = IHTMLDocument2_get_parentWindow(doc, &window);
|
||||
ok(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
|
||||
ok(window != NULL, "window == NULL\n");
|
||||
|
||||
hres = IHTMLWindow2_QueryInterface(window, &IID_IHTMLWindow5, (void**)&window5);
|
||||
IHTMLWindow2_Release(window);
|
||||
if(FAILED(hres)) {
|
||||
win_skip("IHTMLWindow5 not supported\n");
|
||||
return;
|
||||
}
|
||||
|
||||
VariantInit(&var);
|
||||
hres = IHTMLWindow5_get_XMLHttpRequest(window5, &var);
|
||||
IHTMLWindow5_Release(window5);
|
||||
ok(hres == S_OK, "get_XMLHttpRequest failed: %08x\n", hres);
|
||||
ok(V_VT(&var) == VT_DISPATCH, "V_VT(&var) is %08x, expected VT_DISPATCH\n", V_VT(&var));
|
||||
|
||||
hres = IDispatch_QueryInterface(V_DISPATCH(&var), &IID_IHTMLXMLHttpRequestFactory, (void**)&factory);
|
||||
VariantClear(&var);
|
||||
ok(hres == S_OK, "QueryInterface(IID_IHTMLXMLHttpRequestFactory) failed: %08x\n", hres);
|
||||
ok(factory != NULL, "factory == NULL\n");
|
||||
|
||||
hres = IHTMLXMLHttpRequestFactory_create(factory, &xhr);
|
||||
IHTMLXMLHttpRequestFactory_Release(factory);
|
||||
ok(hres == S_OK, "create failed: %08x\n", hres);
|
||||
ok(xhr != NULL, "xhr == NULL\n");
|
||||
}
|
||||
|
||||
static void test_header(const struct HEADER_TYPE expect[], int num)
|
||||
{
|
||||
int i;
|
||||
BSTR key, text, all_header;
|
||||
HRESULT hres;
|
||||
char all[4096], buf[512];
|
||||
|
||||
all_header = NULL;
|
||||
hres = IHTMLXMLHttpRequest_getAllResponseHeaders(xhr, &all_header);
|
||||
ok(hres == S_OK, "getAllResponseHeader failed: %08x\n", hres);
|
||||
ok(all_header != NULL, "all_header == NULL\n");
|
||||
|
||||
WideCharToMultiByte(CP_UTF8, 0, all_header, -1, all, sizeof(all), NULL, NULL);
|
||||
SysFreeString(all_header);
|
||||
|
||||
for(i = 0; i < num; ++i) {
|
||||
text = NULL;
|
||||
key = a2bstr(expect[i].key);
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, key, &text);
|
||||
ok(hres == S_OK, "getResponseHeader failed, got %08x\n", hres);
|
||||
ok(text != NULL, "text == NULL\n");
|
||||
ok(!strcmp_wa(text, expect[i].value),
|
||||
"Expect %s: %s, got %s\n", expect[i].key, expect[i].value, wine_dbgstr_w(text));
|
||||
SysFreeString(key);
|
||||
SysFreeString(text);
|
||||
|
||||
strcpy(buf, expect[i].key);
|
||||
strcat(buf, ": ");
|
||||
strcat(buf, expect[i].value);
|
||||
ok(strstr(all, buf) != NULL, "AllResponseHeaders(%s) don't have expected substr(%s)\n", all, buf);
|
||||
}
|
||||
}
|
||||
|
||||
static void test_sync_xhr(IHTMLDocument2 *doc, const char *xml_url, const char *expect_text)
|
||||
{
|
||||
VARIANT vbool, vempty, var;
|
||||
BSTR method, url;
|
||||
BSTR text;
|
||||
LONG val;
|
||||
HRESULT hres;
|
||||
static const struct HEADER_TYPE expect_headers[] = {
|
||||
{"Server", "Apache"},
|
||||
{"Accept-Ranges", "bytes"},
|
||||
{"Content-Length", "51"},
|
||||
{"Content-Type", "application/xml"}
|
||||
};
|
||||
|
||||
create_xmlhttprequest(doc);
|
||||
if(!xhr)
|
||||
return;
|
||||
|
||||
V_VT(&var) = VT_EMPTY;
|
||||
hres = IHTMLXMLHttpRequest_get_onreadystatechange(xhr, &var);
|
||||
ok(hres == S_OK, "get_onreadystatechange failed: %08x\n", hres);
|
||||
ok(V_VT(&var) == VT_NULL, "V_VT(onreadystatechange) = %d\n", V_VT(&var));
|
||||
|
||||
V_VT(&var) = VT_DISPATCH;
|
||||
V_DISPATCH(&var) = (IDispatch*)&xmlhttprequest_onreadystatechange_obj;
|
||||
hres = IHTMLXMLHttpRequest_put_onreadystatechange(xhr, var);
|
||||
ok(hres == S_OK, "put_onreadystatechange failed: %08x\n", hres);
|
||||
|
||||
V_VT(&var) = VT_EMPTY;
|
||||
hres = IHTMLXMLHttpRequest_get_onreadystatechange(xhr, &var);
|
||||
ok(hres == S_OK, "get_onreadystatechange failed: %08x\n", hres);
|
||||
ok(V_VT(&var) == VT_DISPATCH, "V_VT(onreadystatechange) = %d\n", V_VT(&var));
|
||||
ok(V_DISPATCH(&var) == (IDispatch*)&xmlhttprequest_onreadystatechange_obj, "unexpected onreadystatechange value\n");
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, NULL);
|
||||
ok(hres == E_POINTER, "Expect E_POINTER, got %08x\n", hres);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 0, "Expect UNSENT, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, NULL);
|
||||
ok(hres == E_POINTER, "Expect E_POINTER, got %08x\n", hres);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(val == 0, "Expect 0, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_statusText(xhr, NULL);
|
||||
ok(hres == E_POINTER, "Expect E_POINTER, got %08x\n", hres);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_statusText(xhr, &text);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(text == NULL, "Expect NULL, got %p\n", text);
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getAllResponseHeaders(xhr, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, content_type, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
method = a2bstr("GET");
|
||||
url = a2bstr(xml_url);
|
||||
V_VT(&vbool) = VT_BOOL;
|
||||
V_BOOL(&vbool) = VARIANT_FALSE;
|
||||
V_VT(&vempty) = VT_EMPTY;
|
||||
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
hres = IHTMLXMLHttpRequest_open(xhr, method, url, vbool, vempty, vempty);
|
||||
todo_wine ok(hres == S_OK, "open failed: %08x\n", hres); /* Gecko 30+ only supports async */
|
||||
todo_wine CHECK_CALLED(xmlhttprequest_onreadystatechange_opened);
|
||||
|
||||
SysFreeString(method);
|
||||
SysFreeString(url);
|
||||
|
||||
if(FAILED(hres)) {
|
||||
IHTMLXMLHttpRequest_Release(xhr);
|
||||
xhr = NULL;
|
||||
return;
|
||||
}
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getAllResponseHeaders(xhr, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, content_type, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(val == 0, "Expect 0, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_statusText(xhr, &text);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(text == NULL, "Expect NULL, got %p\n", text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 1, "Expect OPENED, got %d\n", val);
|
||||
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_headers_received);
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_loading);
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_done);
|
||||
loading_cnt = 0;
|
||||
hres = IHTMLXMLHttpRequest_send(xhr, vempty);
|
||||
ok(hres == S_OK, "send failed: %08x\n", hres);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_opened);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_headers_received);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_loading);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_done);
|
||||
ok(loading_cnt == 1, "loading_cnt = %d\n", loading_cnt);
|
||||
|
||||
text = NULL;
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, content_type, &text);
|
||||
ok(hres == S_OK, "getResponseHeader failed, got %08x\n", hres);
|
||||
ok(text != NULL, "text == NULL\n");
|
||||
SysFreeString(text);
|
||||
|
||||
if(expect_text)
|
||||
test_header(expect_headers, sizeof(expect_headers)/sizeof(expect_headers[0]));
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == S_OK, "get_status failed: %08x\n", hres);
|
||||
ok(val == 200, "Expect 200, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_statusText(xhr, &text);
|
||||
ok(hres == S_OK, "get_statusText failed: %08x\n", hres);
|
||||
ok(text != NULL, "text == NULL\n");
|
||||
ok(!strcmp_wa(text, "OK"),
|
||||
"Expected \"OK\", got %s\n", wine_dbgstr_w(text));
|
||||
SysFreeString(text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 4, "Expect DONE, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_responseText(xhr, &text);
|
||||
ok(hres == S_OK, "get_responseText failed: %08x\n", hres);
|
||||
ok(text != NULL, "test == NULL\n");
|
||||
if(expect_text)
|
||||
ok(!strcmp_wa(text, expect_text), "expect %s, got %s\n",
|
||||
expect_text, wine_dbgstr_w(text));
|
||||
SysFreeString(text);
|
||||
|
||||
IHTMLXMLHttpRequest_Release(xhr);
|
||||
xhr = NULL;
|
||||
}
|
||||
|
||||
static void test_async_xhr(IHTMLDocument2 *doc, const char *xml_url, const char *expect_text)
|
||||
{
|
||||
VARIANT vbool, vempty, var;
|
||||
BSTR method, url;
|
||||
BSTR text;
|
||||
LONG val;
|
||||
HRESULT hres;
|
||||
static const struct HEADER_TYPE expect_headers[] = {
|
||||
{"Content-Length", "51"},
|
||||
{"Content-Type", "application/xml"}
|
||||
};
|
||||
|
||||
create_xmlhttprequest(doc);
|
||||
if(!xhr)
|
||||
return;
|
||||
|
||||
V_VT(&var) = VT_DISPATCH;
|
||||
V_DISPATCH(&var) = (IDispatch*)&xmlhttprequest_onreadystatechange_obj;
|
||||
hres = IHTMLXMLHttpRequest_put_onreadystatechange(xhr, var);
|
||||
ok(hres == S_OK, "put_onreadystatechange failed: %08x\n", hres);
|
||||
|
||||
V_VT(&var) = VT_EMPTY;
|
||||
hres = IHTMLXMLHttpRequest_get_onreadystatechange(xhr, &var);
|
||||
ok(hres == S_OK, "get_onreadystatechange failed: %08x\n", hres);
|
||||
ok(V_VT(&var) == VT_DISPATCH, "V_VT(onreadystatechange) = %d\n", V_VT(&var));
|
||||
ok(V_DISPATCH(&var) == (IDispatch*)&xmlhttprequest_onreadystatechange_obj, "unexpected onreadystatechange value\n");
|
||||
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, NULL, &text);
|
||||
ok(hres == E_INVALIDARG, "Expect E_INVALIDARG, got %08x\n", hres);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, content_type, NULL);
|
||||
ok(hres == E_POINTER, "Expect E_POINTER, got %08x\n", hres);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, NULL, NULL);
|
||||
ok(hres == E_POINTER || broken(hres == E_INVALIDARG), /* Vista and before */
|
||||
"Expect E_POINTER, got %08x\n", hres);
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, content_type, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_getAllResponseHeaders(xhr, NULL);
|
||||
ok(hres == E_POINTER, "Expect E_POINTER, got %08x\n", hres);
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getAllResponseHeaders(xhr, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(val == 0, "Expect 0, got %d\n", val);
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_statusText(xhr, &text);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(text == NULL, "Expect NULL, got %p\n", text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 0, "Expect UNSENT, got %d\n", val);
|
||||
|
||||
method = a2bstr("GET");
|
||||
url = a2bstr(xml_url);
|
||||
V_VT(&vbool) = VT_BOOL;
|
||||
V_BOOL(&vbool) = VARIANT_TRUE;
|
||||
V_VT(&vempty) = VT_EMPTY;
|
||||
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
hres = IHTMLXMLHttpRequest_open(xhr, method, url, vbool, vempty, vempty);
|
||||
ok(hres == S_OK, "open failed: %08x\n", hres);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_opened);
|
||||
|
||||
SysFreeString(method);
|
||||
SysFreeString(url);
|
||||
|
||||
if(FAILED(hres)) {
|
||||
IHTMLXMLHttpRequest_Release(xhr);
|
||||
xhr = NULL;
|
||||
return;
|
||||
}
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getAllResponseHeaders(xhr, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
text = (BSTR)0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_getResponseHeader(xhr, content_type, &text);
|
||||
ok(hres == E_FAIL, "got %08x\n", hres);
|
||||
ok(text == NULL, "text = %p\n", text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(val == 0, "Expect 0, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_statusText(xhr, &text);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(text == NULL, "Expect NULL, got %p\n", text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 1, "Expect OPENED, got %d\n", val);
|
||||
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_headers_received);
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_loading);
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_done);
|
||||
loading_cnt = 0;
|
||||
hres = IHTMLXMLHttpRequest_send(xhr, vempty);
|
||||
|
||||
ok(hres == S_OK, "send failed: %08x\n", hres);
|
||||
if(SUCCEEDED(hres))
|
||||
pump_msgs(&called_xmlhttprequest_onreadystatechange_done);
|
||||
todo_wine CHECK_CALLED(xmlhttprequest_onreadystatechange_opened);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_headers_received);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_loading);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_done);
|
||||
/* Workaround for loading large files */
|
||||
if(expect_text)
|
||||
ok(loading_cnt == 1, "loading_cnt = %d\n", loading_cnt);
|
||||
else
|
||||
todo_wine ok(loading_cnt == 1, "loading_cnt = %d\n", loading_cnt);
|
||||
|
||||
if(FAILED(hres)) {
|
||||
IHTMLXMLHttpRequest_Release(xhr);
|
||||
xhr = NULL;
|
||||
return;
|
||||
}
|
||||
|
||||
text = NULL;
|
||||
hres = IHTMLXMLHttpRequest_getAllResponseHeaders(xhr, &text);
|
||||
ok(hres == S_OK, "getAllResponseHeader failed, got %08x\n", hres);
|
||||
ok(text != NULL, "text == NULL\n");
|
||||
SysFreeString(text);
|
||||
|
||||
if(expect_text)
|
||||
test_header(expect_headers, sizeof(expect_headers)/sizeof(expect_headers[0]));
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == S_OK, "get_status failed: %08x\n", hres);
|
||||
ok(val == 200, "Expect 200, got %d\n", val);
|
||||
|
||||
text = NULL;
|
||||
hres = IHTMLXMLHttpRequest_get_statusText(xhr, &text);
|
||||
ok(hres == S_OK, "get_statusText failed: %08x\n", hres);
|
||||
ok(text != NULL, "text == NULL\n");
|
||||
ok(!strcmp_wa(text, "OK"), "Expected \"OK\", got %s\n", wine_dbgstr_w(text));
|
||||
SysFreeString(text);
|
||||
|
||||
val = 0xdeadbeef;
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 4, "Expect DONE, got %d\n", val);
|
||||
|
||||
text = NULL;
|
||||
hres = IHTMLXMLHttpRequest_get_responseText(xhr, &text);
|
||||
ok(hres == S_OK, "get_responseText failed: %08x\n", hres);
|
||||
ok(text != NULL, "test == NULL\n");
|
||||
if(expect_text)
|
||||
ok(!strcmp_wa(text, expect_text), "expect %s, got %s\n",
|
||||
expect_text, wine_dbgstr_w(text));
|
||||
SysFreeString(text);
|
||||
|
||||
IHTMLXMLHttpRequest_Release(xhr);
|
||||
xhr = NULL;
|
||||
}
|
||||
|
||||
static void test_async_xhr_abort(IHTMLDocument2 *doc, const char *xml_url)
|
||||
{
|
||||
VARIANT vbool, vempty, var;
|
||||
BSTR method, url;
|
||||
LONG val;
|
||||
HRESULT hres;
|
||||
|
||||
method = a2bstr("GET");
|
||||
url = a2bstr(xml_url);
|
||||
V_VT(&vbool) = VT_BOOL;
|
||||
V_BOOL(&vbool) = VARIANT_TRUE;
|
||||
V_VT(&vempty) = VT_EMPTY;
|
||||
|
||||
trace("abort before send() is fired\n");
|
||||
create_xmlhttprequest(doc);
|
||||
if(!xhr)
|
||||
return;
|
||||
|
||||
V_VT(&var) = VT_DISPATCH;
|
||||
V_DISPATCH(&var) = (IDispatch*)&xmlhttprequest_onreadystatechange_obj;
|
||||
hres = IHTMLXMLHttpRequest_put_onreadystatechange(xhr, var);
|
||||
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
hres = IHTMLXMLHttpRequest_open(xhr, method, url, vbool, vempty, vempty);
|
||||
ok(hres == S_OK, "open failed: %08x\n", hres);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_opened);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_abort(xhr);
|
||||
ok(hres == S_OK, "abort failed: %08x\n", hres);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(val == 0, "Expect 0, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 0, "Expect UNSENT, got %d\n", val);
|
||||
|
||||
IHTMLXMLHttpRequest_Release(xhr);
|
||||
xhr = NULL;
|
||||
|
||||
trace("abort after send() is fired\n");
|
||||
create_xmlhttprequest(doc);
|
||||
V_VT(&var) = VT_DISPATCH;
|
||||
V_DISPATCH(&var) = (IDispatch*)&xmlhttprequest_onreadystatechange_obj;
|
||||
hres = IHTMLXMLHttpRequest_put_onreadystatechange(xhr, var);
|
||||
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
hres = IHTMLXMLHttpRequest_open(xhr, method, url, vbool, vempty, vempty);
|
||||
ok(hres == S_OK, "open failed: %08x\n", hres);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_opened);
|
||||
|
||||
loading_cnt = 0;
|
||||
readystatechange_cnt = 0;
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_opened);
|
||||
SET_EXPECT(xmlhttprequest_onreadystatechange_done);
|
||||
hres = IHTMLXMLHttpRequest_send(xhr, vempty);
|
||||
ok(hres == S_OK, "send failed: %08x\n", hres);
|
||||
todo_wine CHECK_CALLED(xmlhttprequest_onreadystatechange_opened);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_abort(xhr);
|
||||
ok(hres == S_OK, "abort failed: %08x\n", hres);
|
||||
CHECK_CALLED(xmlhttprequest_onreadystatechange_done);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_readyState(xhr, &val);
|
||||
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
||||
ok(val == 0, "Expect UNSENT, got %d\n", val);
|
||||
|
||||
hres = IHTMLXMLHttpRequest_get_status(xhr, &val);
|
||||
ok(hres == E_FAIL, "Expect E_FAIL, got: %08x\n", hres);
|
||||
ok(val == 0, "Expect 0, got %d\n", val);
|
||||
|
||||
ok(loading_cnt == 0, "loading_cnt = %d, expect 0, loading_cnt\n", loading_cnt);
|
||||
todo_wine ok(readystatechange_cnt == 2, "readystatechange_cnt = %d, expect 2\n", readystatechange_cnt);
|
||||
|
||||
IHTMLXMLHttpRequest_Release(xhr);
|
||||
xhr = NULL;
|
||||
|
||||
SysFreeString(method);
|
||||
SysFreeString(url);
|
||||
}
|
||||
|
||||
static IHTMLDocument2 *create_doc_from_url(const char *start_url)
|
||||
{
|
||||
BSTR url;
|
||||
IBindCtx *bc;
|
||||
IMoniker *url_mon;
|
||||
IPersistMoniker *persist_mon;
|
||||
IHTMLDocument2 *doc;
|
||||
HRESULT hres;
|
||||
|
||||
hres = CreateBindCtx(0, &bc);
|
||||
ok(hres == S_OK, "CreateBindCtx failed: 0x%08x\n", hres);
|
||||
|
||||
url = a2bstr(start_url);
|
||||
hres = CreateURLMoniker(NULL, url, &url_mon);
|
||||
ok(hres == S_OK, "CreateURLMoniker failed: 0x%08x\n", hres);
|
||||
|
||||
hres = CoCreateInstance(&CLSID_HTMLDocument, NULL,
|
||||
CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER, &IID_IHTMLDocument2,
|
||||
(void**)&doc);
|
||||
ok(hres == S_OK, "CoCreateInstance failed: 0x%08x\n", hres);
|
||||
|
||||
hres = IHTMLDocument2_QueryInterface(doc, &IID_IPersistMoniker,
|
||||
(void**)&persist_mon);
|
||||
ok(hres == S_OK, "IHTMLDocument2_QueryInterface failed: 0x%08x\n", hres);
|
||||
|
||||
hres = IPersistMoniker_Load(persist_mon, FALSE, url_mon, bc,
|
||||
STGM_SHARE_EXCLUSIVE | STGM_READWRITE);
|
||||
ok(hres == S_OK, "IPersistMoniker_Load failed: 0x%08x\n", hres);
|
||||
|
||||
IPersistMoniker_Release(persist_mon);
|
||||
IMoniker_Release(url_mon);
|
||||
IBindCtx_Release(bc);
|
||||
SysFreeString(url);
|
||||
|
||||
doc_complete = FALSE;
|
||||
notif_doc = doc;
|
||||
do_advise((IUnknown*)doc, &IID_IPropertyNotifySink, (IUnknown*)&PropertyNotifySink);
|
||||
pump_msgs(&doc_complete);
|
||||
|
||||
return doc;
|
||||
}
|
||||
|
||||
START_TEST(xmlhttprequest)
|
||||
{
|
||||
IHTMLDocument2 *doc;
|
||||
static const char start_url[] = "http://test.winehq.org/tests/hello.html";
|
||||
static const char xml_url[] = "http://test.winehq.org/tests/xmltest.xml";
|
||||
static const char large_page_url[] = "http://test.winehq.org/tests/data.php";
|
||||
static const char expect_response_text[] = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<a>TEST</a>\n";
|
||||
|
||||
CoInitialize(NULL);
|
||||
|
||||
content_type = a2bstr("Content-Type");
|
||||
doc = create_doc_from_url(start_url);
|
||||
if(doc) {
|
||||
test_sync_xhr(doc, xml_url, expect_response_text);
|
||||
test_sync_xhr(doc, large_page_url, NULL);
|
||||
test_async_xhr(doc, xml_url, expect_response_text);
|
||||
test_async_xhr(doc, large_page_url, NULL);
|
||||
test_async_xhr_abort(doc, large_page_url);
|
||||
IHTMLDocument2_Release(doc);
|
||||
}
|
||||
SysFreeString(content_type);
|
||||
|
||||
CoUninitialize();
|
||||
}
|
Loading…
Reference in New Issue
Block a user