aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn (follow)
Commit message (Collapse)AuthorAgeFilesLines
* WIP - get more information from test failuresrobmen/package-id-bundle-codeRob Mensching2024-12-291-2/+2
|
* Rename "bundle id" concept to "bundle code"Rob Mensching2024-12-2914-40/+40
| | | | | | | The "bundle id" always had more in common with the PackageCode from the Windows Installer. With the introduction of an actual Id attribute on the Bundle element, there is potential for confusion, so there is finally real motivation to rename "bundle id" to "bundle code".
* Audit all transitive dependencies and fix latest vulnerabilitiesRob Mensching2024-12-275-5/+5
| | | | | Also, standardize .NET Core TFMs listed before .NET Framework TFMs for no reason but to be consistent
* Fix up COM+ to be back in working order under Wix4+Bevan Weiss2024-12-261-0/+30
| | | | | | | | | | | | | | | | | | | | | 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/+2
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Typos are bad; visible typos are an abomination.Bob Arnson2024-11-102-2/+2
| | | | At least one person makes the same typo almost-but-not-quite everywhere.
* Add basic test for Msmq install/uninstall.Bevan Weiss2024-07-182-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>
* 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-25105-205/+205
| | | | | | | 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.
* Report E_MOREDATA from Bal functions when string buffer too smallRob Mensching2024-04-043-0/+53
| | | | | | | | WiX v4 (and probably v3) standardized on the error code E_MOREDATA when string buffers were too small instead of E_INSUFFICIIENT_BUFFER. This fixes v5 to match in a few missing cases. Fixes 8094
* Simplify BootstrapperApplication header filesRob Mensching2024-03-214-8/+5
| | | | | Take this breaking change opportunity to simplify the header files used by BA devs.
* Use WixBA in an upgrade.Bob Arnson2024-03-185-2/+79
|
* Fix localization collation.Bob Arnson2024-03-121-0/+6
| | | | Fixes https://github.com/wixtoolset/issues/issues/8036.
* Move wixstdba functions to Bal.wixext buildRob Mensching2024-03-077-8/+12
|
* Better .nupkg namesRob Mensching2024-03-07155-294/+272
|
* Move the BootstrapperApplication out of procRob Mensching2024-03-0641-254/+269
|
* Allow MsiProperty/@Value to be an empty string.Bob Arnson2024-02-172-1/+2
| | | | Fixes https://github.com/wixtoolset/issues/issues/7798.
* ArpEntry reads QuietUninstallString or UninstallString, and uses ↵Nir Bar2023-12-243-0/+59
| | | | UninstallArguments for the uninstall command line
* Make the minimum supported .NET Framework v4.6.2Rob Mensching2023-12-1913-17/+17
|
* Pretty up build outputRob Mensching2023-12-161-2/+2
|
* add firewall extension decompiler, make msi modifications work, add all ↵chris_bednarski2023-11-191-3/+5
| | | | attributes
* Correctly process build -outputType switchRob Mensching2023-09-056-10/+10
| | | | | | Also add a few additional output types to built-in backends. Fixes 7708
* remove windows xp specific code from firewall extensionchris_bednarski2023-08-261-1/+7
|
* use WcaGetRecordFormattedString to get firewall rule descriptionchris_bednarski2023-08-233-3/+12
|
* add integration tests for the firewall extenstionchris_bednarski2023-08-194-0/+646
|
* feat(build): update xunit to version 2.5.0, fix occasional test timeoutchris_bednarski2023-07-191-1/+1
|
* Improve logging to remove `(null)`.Bob Arnson2023-06-133-0/+63
| | | | | | Add detached container runtime test. Inspired by https://github.com/wixtoolset/issues/issues/7490.
* Obsolete removed PackageState.Cached valueRob Mensching2023-05-301-1/+1
| | | | | | | | A package's cached status is no longer set via the PackageState. The value was removed in native code but the managed code was missed throwing off the enum mapping. Fixes 7399
* Fix build failure when bundle has multiple RemoteBundle elementsNir Bar2023-05-023-0/+47
|
* Clean up generated files left in source tree.Bob Arnson2023-05-022-0/+5
|
* Tame some wild pointers.Bob Arnson2023-05-011-1/+12
| | | | | | Maybe Rust wouldn't be so bad... Fixes https://github.com/wixtoolset/issues/issues/7451.
* Fix WcaErrorMessage `cArgs==-1` case.Bob Arnson2023-04-271-1/+1
| | | | | | | | | | - 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.
* Catch a few left over references to v4Rob Mensching2023-04-181-2/+2
|
* Fix double-free bugs in thmutil.Sean Hall2023-02-192-0/+54
| | | | Fixes 7231
* Don't uninstall superseded MSI packages.Sean Hall2023-01-191-1/+0
| | | | 7147
* Add netfx:DotNetCoreSdkFeatureBandSearch.Sean Hall2023-01-184-21/+34
| | | | 7058
* Adding support for DotNetCoreSdkSearch and DotNetCoreSdkCompatibilityCheckStaffan Gustafsson2023-01-183-0/+52
|
* Improve test coverage for recent Burn changes.Sean Hall2023-01-141-1/+8
| | | | 7068, PR 318
* Small fixes found while updating XSDsRob Mensching2023-01-018-8/+8
|
* Register the InstallDate in BurnRob Mensching2022-12-222-0/+11
| | | | Closes 7068
* Don't fail on bad/missing update feed URL.Bob Arnson2022-12-153-1/+41
|
* wixstdba should not change the action if not showing full UI.Sean Hall2022-12-136-0/+90
| | | | | | wixstdba should not block downgrading if run from an upgrade related bundle. Fixes 7081
* Parallelize building test codeRob Mensching2022-11-132-12/+4
|
* Automate the test for GetRelatedBundleVariable.Sean Hall2022-11-1015-59/+97
|
* WIXFEAT-3704 - Allow access to persisted variables from related bundlesJacob Hoover2022-11-108-0/+345
|
* Separate WixInternal content from official WixToolset namespaceRob Mensching2022-11-0813-13/+13
|
* Add queutil so Burn can manage its own queue of BA requested actions.Sean Hall2022-10-251-1/+1
| | | | Fixes 6349
* Support add, modify and remove comments on user accountsRon Martin2022-10-212-4/+39
| | | | Fixes 5371
* Add Netfx bundle extension and netfx:DotNetCoreSearch.Sean Hall2022-10-108-3/+170
| | | | | | Remove built-in .NET Core packages since they update too quickly. Fixes 6257
* 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.