Author: akhaldi
Date: Thu Nov 17 22:39:46 2016
New Revision: 73273
URL: 
http://svn.reactos.org/svn/reactos?rev=73273&view=rev
Log:
[INETCOMM_WINETEST] Sync with Wine Staging 1.9.23. CORE-12409
Modified:
    trunk/rostests/winetests/inetcomm/mimeole.c
Modified: trunk/rostests/winetests/inetcomm/mimeole.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/inetcomm/mimeol…
==============================================================================
--- trunk/rostests/winetests/inetcomm/mimeole.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/inetcomm/mimeole.c [iso-8859-1] Thu Nov 17 22:39:46 2016
@@ -338,6 +338,59 @@
     hr = IMimeMessage_GetAttachments(msg, &count, &body_list);
     ok(hr == S_OK, "ret %08x\n", hr);
     ok(count == 2, "got %d\n", count);
+    if(count == 2)
+    {
+        ENCODINGTYPE encoding;
+        IMimeBody *attachment;
+        PROPVARIANT prop;
+
+        PropVariantInit(&prop);
+
+        hr = IMimeMessage_BindToObject(msg, body_list[0], &IID_IMimeBody,
(void**)&attachment);
+        ok(hr == S_OK, "ret %08x\n", hr);
+
+        hr = IMimeBody_IsContentType(attachment, "multipart", NULL);
+        ok(hr == S_FALSE, "ret %08x\n", hr);
+
+        hr = IMimeBody_GetCurrentEncoding(attachment, &encoding);
+        ok(hr == S_OK, "ret %08x\n", hr);
+        todo_wine ok(encoding == IET_8BIT, "ret %d\n", encoding);
+
+        prop.vt = VT_LPSTR;
+        hr = IMimeBody_GetProp(attachment, "Content-Transfer-Encoding", 0,
&prop);
+        ok(hr == S_OK, "ret %08x\n", hr);
+
+        ok(prop.vt == VT_LPSTR, "type %d\n", prop.vt);
+        ok(!strcmp(prop.u.pszVal, "8bit"), "got  %s\n",
prop.u.pszVal);
+        PropVariantClear(&prop);
+
+        hr = IMimeBody_IsType(attachment, IBT_ATTACHMENT);
+        todo_wine ok(hr == S_FALSE, "ret %08x\n", hr);
+
+        IMimeBody_Release(attachment);
+
+        hr = IMimeMessage_BindToObject(msg, body_list[1], &IID_IMimeBody,
(void**)&attachment);
+        ok(hr == S_OK, "ret %08x\n", hr);
+
+        hr = IMimeBody_IsContentType(attachment, "multipart", NULL);
+        ok(hr == S_FALSE, "ret %08x\n", hr);
+
+        hr = IMimeBody_GetCurrentEncoding(attachment, &encoding);
+        ok(hr == S_OK, "ret %08x\n", hr);
+        todo_wine ok(encoding == IET_7BIT, "ret %d\n", encoding);
+
+        prop.vt = VT_LPSTR;
+        hr = IMimeBody_GetProp(attachment, "Content-Transfer-Encoding", 0,
&prop);
+        ok(hr == S_OK, "ret %08x\n", hr);
+        ok(prop.vt == VT_LPSTR, "type %d\n", prop.vt);
+        ok(!strcmp(prop.u.pszVal, "7bit"), "got  %s\n",
prop.u.pszVal);
+        PropVariantClear(&prop);
+
+        hr = IMimeBody_IsType(attachment, IBT_ATTACHMENT);
+        ok(hr == S_OK, "ret %08x\n", hr);
+
+        IMimeBody_Release(attachment);
+    }
     CoTaskMemFree(body_list);
     hr = IMimeBody_GetCharset(body, &hcs);