aboutsummaryrefslogtreecommitdiff
path: root/src/test/msi (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Target in-service .NET Framework versions.Bob Arnson2025-02-131-1/+1
|
* Skip `CanChangeCommentOfExistingNonDomainGroup` test due to CI failuresRob Mensching2025-02-121-1/+1
|
* Ensure user and group integration tests always clean up after themselves.Rob Mensching2025-02-122-277/+383
| | | | Fixes 8940
* Fix ups for Domain Group creation / removal.Bevan Weiss2025-02-111-2/+4
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Add/Remove Group Membership rollback handled.Bevan Weiss2025-02-1113-55/+104
| | | | | | Fixups to a few test cases. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Split into domain vs local CAsBevan Weiss2025-02-111-3/+2
|
* Group Add/Remove working.Bevan Weiss2025-02-114-10/+8
| | | | | | | | | | Local group membership Add/Remove working, however with BUILTIN local system groups .NET doesn't appear to locate them as either groups nor basic security Principals. Still needs work to fix the test for nested groups. Ideally with some way to test for domain groups. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* CreateGroups additionsBevan Weiss2025-02-1123-0/+663
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Migrate COM+ E2E tests from raw binaries to source code.Bevan Weiss2025-02-1136-7/+1283
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Fix up COM+ to be back in working order under Wix4+Bevan Weiss2024-12-2614-0/+212
| | | | | | | | | | | | | | | | | | | | | Table names updated for Wix4 prefix. Custom action names similarly updated. Table names Wix4ComPlusUserInApplicationRole, Wix4ComPlusGroupInApplicationRole and Wix4ComPlusApplicationRoleProperty had to be shortened to fit within MSI 31 character table name limit. Migrated from fixed GUID for RegistrationHelper to use CLSIDFromProgID in an attempt to fix behaviour under .NET 4+ DLLs. Added setting of Partition enable if a Partition is configured in authoring, new Windows config has Partitions disabled by default, and they don't work at all under Windows workstation (non-server) versions. Added a new Runtime condition for `RequireWindowsServer` which will skip execution of Runtime test on workstation/desktop OSes, since COM+ Partitions only work correctly under Windows Server. Quite a lot of basic typos fixed also. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Add a few more checks on rollback of Util User.Bevan Weiss2024-12-261-2/+7
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* A basic install / uninstall test for RemoveFoldersExBevan Weiss2024-09-023-0/+110
| | | | | | | | Contains no files etc to verify that Remove action can still occur without other elements bringing in the RemoveFiles Standard Action Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Add basic test for Msmq install/uninstall.Bevan Weiss2024-07-183-0/+57
| | | | | | | | | Fix up lack of WIX CUSTOM_ACTION_DECORATION wrappers Add new RuntimeTest skipper for Server Features / Optional Features. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Initialize WOW64 in TouchFile custom actionRob Mensching2024-07-173-0/+62
| | | | Fixes 8638
* Add trx logging for individual runtests.cmd.Bob Arnson2024-06-191-1/+1
|
* Update tests to use TestVersion property instead of generic Version propertyRob Mensching2024-04-252-4/+4
| | | | | | | The MSBuild Version property is well-known and can be set by standard processes. That can cause problem in the tests where the version is explicitly set to validate WiX behaviors. So, we've switched to using the TestVersion property that will be specific for our testing purposes.
* Ensure elevated SFXCA uses Windows Installer cache and unelevated uses Temp ↵Rob Mensching2024-04-052-1/+43
| | | | | | folder Fixes 8078
* Add a managed custom action E2E testRob Mensching2024-04-056-0/+122
|
* Use the correct case for firewall attribute valuesRob Mensching2024-03-241-3/+3
|
* Fix localization collation.Bob Arnson2024-03-123-0/+53
| | | | Fixes https://github.com/wixtoolset/issues/issues/8036.
* Use camelCase attribute values.Bob Arnson2024-02-272-5/+5
|
* Pretty up build outputRob Mensching2023-12-161-2/+2
|
* add firewall extension decompiler, make msi modifications work, add all ↵chris_bednarski2023-11-1917-17/+920
| | | | attributes
* change firewall extension table name to Wix5FirewallExceptionchris_bednarski2023-11-195-0/+299
|
* remove windows xp specific code from firewall extensionchris_bednarski2023-08-263-2/+88
|
* use WcaGetRecordFormattedString to get firewall rule descriptionchris_bednarski2023-08-233-0/+140
|
* add integration tests for the firewall extenstionchris_bednarski2023-08-194-0/+251
|
* Fix XmlConfig lookup logic.Bob Arnson2023-04-274-0/+98
| | | | | Fixes https://github.com/wixtoolset/issues/issues/7377. Requires fix for https://github.com/wixtoolset/issues/issues/7444.
* Fix WcaErrorMessage `cArgs==-1` case.Bob Arnson2023-04-271-0/+2
| | | | | | | | | | - Count args before creating message record. - Document terminating NULL requirement. - Add terminating NULL in MessageExit* macros. - Enhance tests for problems encountered fixing this nightmare. Fixes https://github.com/wixtoolset/issues/issues/7422. Fixes https://github.com/wixtoolset/issues/issues/7444.
* Parallelize building test codeRob Mensching2022-11-131-10/+2
|
* Separate WixInternal content from official WixToolset namespaceRob Mensching2022-11-081-1/+1
|
* Support add, modify and remove comments on user accountsRon Martin2022-10-2114-40/+332
| | | | Fixes 5371
* Run tests in bulk to improve performanceRob Mensching2022-10-041-1/+1
| | | | | The fewer executions of "dotnet test" the better so batch up calls by referencing multiple assembly DLLs.
* Make all test roll forwardRob Mensching2022-10-031-1/+0
|
* Standardize on .NET 6 as the minimum for .NET Core platform.Rob Mensching2022-10-033-4/+4
| | | | Closes 6942
* Centralize test project configuration with IsWixTestProjectRob Mensching2022-09-231-6/+1
|
* Add ability to skip tests at runtime, and skip long running cache testsSean Hall2022-05-133-35/+7
| | | | 6665
* Port UtilExtension.UserTests from wix3.Sean Hall2022-04-2925-0/+679