reactos/modules/rostests/apitests/kernel32/DefaultActCtx.c
Hermès Bélusca-Maïto 9393fc320e
[FORMATTING] Remove trailing whitespace. Addendum to 34593d93.
Excluded: 3rd-party code (incl. wine) and most of the win32ss.
2021-09-13 03:52:22 +02:00

142 lines
5.9 KiB
C

/*
* Test for the default activation context that is active in every process.
*
* Copyright 2017 Giannis Adamopoulos
*
* 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 "precomp.h"
START_TEST(DefaultActCtx)
{
DWORD buffer[256];
BOOL res;
PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION details = (PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION)buffer;
PACTIVATION_CONTEXT_DETAILED_INFORMATION info = (PACTIVATION_CONTEXT_DETAILED_INFORMATION)buffer;
HANDLE h;
DWORD i;
ACTCTX_SECTION_KEYED_DATA KeyedData = { 0 };
res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
NULL,
NULL,
ActivationContextDetailedInformation,
&buffer,
sizeof(buffer),
NULL);
ok(res == TRUE, "Expected success\n");
if(res)
{
ok(info->lpRootManifestPath == NULL, "Expected null lpRootManifestPath, got %S\n", info->lpRootManifestPath);
ok(info->lpRootConfigurationPath == NULL, "Expected null lpRootConfigurationPath, got %S\n", info->lpRootConfigurationPath);
ok(info->lpAppDirPath == NULL, "Expected null lpAppDirPath, got %S\n", info->lpAppDirPath);
ok(info->ulAssemblyCount == 0, "Expected 0 assemblies\n");
}
else
{
skip("ActivationContextDetailedInformation failed\n");
}
i = 0;
res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
NULL,
&i,
AssemblyDetailedInformationInActivationContext,
&buffer,
sizeof(buffer),
NULL);
ok(res == TRUE, "Expected success\n");
if (res)
{
ok(details->lpAssemblyEncodedAssemblyIdentity == NULL, "Expected null lpAssemblyEncodedAssemblyIdentity, got %S\n", details->lpAssemblyEncodedAssemblyIdentity);
ok(details->lpAssemblyManifestPath == NULL, "Expected null lpAssemblyManifestPath, got %S\n", details->lpAssemblyManifestPath);
ok(details->lpAssemblyPolicyPath == NULL, "Expected null lpAssemblyPolicyPath, got %S\n", details->lpAssemblyPolicyPath);
ok(details->lpAssemblyDirectoryName == NULL, "Expected null lpAssemblyDirectoryName, got %S\n", details->lpAssemblyDirectoryName);
}
else
{
skip("AssemblyDetailedInformationInActivationContext failed\n");
}
i = 1;
res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
NULL,
&i,
AssemblyDetailedInformationInActivationContext,
&buffer,
sizeof(buffer),
NULL);
ok(res == TRUE, "Expected success\n"); /* This is FALSE in win10 */
if (res)
{
ok(details->lpAssemblyEncodedAssemblyIdentity == NULL, "Expected null lpAssemblyEncodedAssemblyIdentity, got %S\n", details->lpAssemblyEncodedAssemblyIdentity);
ok(details->lpAssemblyManifestPath == NULL, "Expected null lpAssemblyManifestPath, got %S\n", details->lpAssemblyManifestPath);
ok(details->lpAssemblyPolicyPath == NULL, "Expected null lpAssemblyPolicyPath, got %S\n", details->lpAssemblyPolicyPath);
ok(details->lpAssemblyDirectoryName == NULL, "Expected null lpAssemblyDirectoryName, got %S\n", details->lpAssemblyDirectoryName);
}
else
{
skip("AssemblyDetailedInformationInActivationContext failed\n");
}
res = GetCurrentActCtx (&h);
ok(res == TRUE, "Expected success\n");
ok(h == NULL, "Expected null current context\n");
KeyedData.cbSize = sizeof(KeyedData);
res = FindActCtxSectionStringW(FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX,
NULL,
ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
L"Microsoft.Windows.SysyemCompatible",
&KeyedData);
ok(res == FALSE, "Expected failure\n");
KeyedData.cbSize = sizeof(KeyedData);
res = FindActCtxSectionStringW(FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX,
NULL,
ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
L"System Default Context",
&KeyedData);
ok(res == FALSE, "Expected failure\n");
KeyedData.cbSize = sizeof(KeyedData);
res = FindActCtxSectionStringW(FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX,
NULL,
ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
L"Microsoft.Windows.Common-Controls",
&KeyedData);
ok(res == TRUE, "Expected success\n");
if (res)
{
ok(KeyedData.hActCtx == NULL, "Expected null handle for common control context\n");
ok(KeyedData.ulAssemblyRosterIndex != 0, "%lu\n", KeyedData.ulAssemblyRosterIndex);
}
else
{
skip("ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION failed\n");
}
}
HANDLE _CreateActCtxFromFile(LPCWSTR FileName, int line);
START_TEST(ActCtxWithXmlNamespaces)
{
// _CreateActCtxFromFile() contains all the assertions we need.
(void)_CreateActCtxFromFile(L"xmlns.manifest", __LINE__);
}