aboutsummaryrefslogtreecommitdiff
path: root/src/ext (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-02Set ExePackage/@Uninstallable in bundle manifestsRob Mensching7-7/+19
2022-03-02Do NOT publish logs on `master` branch as they may contain secretsRob Mensching1-2/+3
2022-03-02Force Appveyor to checkout using CRLF.Sean Hall1-0/+3
2022-03-02Export event logs to try to diagnose E2E test failures.Sean Hall2-0/+12
2022-03-01Improve error reporting wrt ExePackage and MsuPackage attributesRob Mensching22-54/+112
For example, DetectCondition is required when RepairArguments or UninstallArguments present and always recommended. Also, non-permanent ExePackages need UninstallArguments. The code was refactored to make it easier to reason over the different requirements for different package types.
2022-03-01Refactor related bundle enumeration into butil.Sean Hall10-405/+731
Related to #3693
2022-03-01Fix and run Burn 64-bit unit tests.Sean Hall8-79/+157
2022-03-01Factor out TestRegistryFixture so other tests can mock regutil API's.Sean Hall6-256/+352
2022-02-28.NET Framework and .NET Core redists using certificate validationRob Mensching8-188/+79
2022-02-28Minor code cleanupRob Mensching1-3/+9
2022-02-28Support certs on remote payloads and generate them from burn subcommandRob Mensching35-247/+1033
Bring back Authenticode certificate validation but only on Exe and Msu remote payloads. Move the generation of remote payload XML to a subcommand of the "burn command".
2022-02-23Move nuget.config, global.json and Directory.Packages.props to rootRob Mensching9-21/+18
Putting these files in the root means they can be used by the test projects support projects that get copied to the `build` folder.
2022-02-23Rename WixProductTagSymbol to WixPackageTagSymbolRob Mensching7-76/+76
2022-02-23Fix wixlib, msm, msi incremental buildRob Mensching18-62/+311
Simplify and improves the tracking of input and intermediate files to fix incremental build issues for wixlibs, merge modules and MSI databases.
2022-02-23Minor comment fixRob Mensching1-1/+1
2022-02-23Update swidtag test to use wxl file for bind variable validationRob Mensching3-3/+4
This is in preparation for doing additional tests using bind variables.
2022-02-23Remove redundant assignment of WixTargetsPath in .targetsRob Mensching1-4/+0
The WixTargetsPath is correctly assigned in the WixToolset.Sdk.props file. Doing so again in the WixToolset.Sdk.targets file is redundant.
2022-02-23Ensure CoreCompile rebuilds when referenced projects are updatedRob Mensching1-2/+3
2022-02-23Change SetVariable to format the value and convert it at search time.Sean Hall3-16/+38
Fixes #6724
2022-02-23Update search code with more concise Exit* macros and remove dead code.Sean Hall3-166/+42
2022-02-22Add UnsafeUninstall action.Sean Hall15-53/+284
Fixes #6721
2022-02-22Turn off vsconfig now that everything is in the imageRob Mensching1-3/+3
2022-02-19Parse the Content-Length string value to avoid the 2GB limitation.Sean Hall2-10/+8
2022-02-19Handle missing content length with range request and empty files.Sean Hall5-13/+161
Add test for server without range request support.
2022-02-19Ignore HEAD request failure in dlutil's DownloadUrl.Sean Hall4-4/+30
Fixes #6331
2022-02-18Finish removing native pdbs from .nupkg and removing symbols packages.Sean Hall19-23/+0
2022-02-18Exclude sample PDBs from the zip.Sean Hall2-1/+2
2022-02-18Create RequiresNativeWixAssets property.Sean Hall6-58/+44
2022-02-18Remove Appveyor workaround.Sean Hall1-0/+1
2022-02-17Create single .zip file for non-embedded pdb filesRob Mensching27-48/+71
No longer create .snupkg/.symbols.nupkgs since they don't actually support native pdbs, which are all of our non-embedded pdb files.
2022-02-17Remove use of InternalsVisibleToRob Mensching3-17/+5
Ensure the tests validate the correct error code is sent, not that the correct internal variable was used return the error code.
2022-02-17Fix the bitness of native binaries for .NET FrameworkRob Mensching9-20/+56
First, moved the tests build into a separate directory to prevent collisions with shipping code. That requires each test to copy in the required native binaries. Default the native binaries to x64 for testing since we've standardized on VS2022 which is all x64 all the time. Finally, copy the native binaries into the .NET Framework differently from .NET Core because .NET Framework does not support cross-platform thus requires a different layout.
2022-02-17Move the FileSystem.AccessControl version sync commentRob Mensching2-3/+2
2022-02-13Fix table names missing `Wix4` prefix.Bob Arnson3-4/+4
2022-02-13Versioned extension ids: ComPlus, MsmqBob Arnson38-289/+292
2022-02-12Update Appveyor build number so that it is unique when re-run.Sean Hall1-1/+1
2022-02-12Detect MinorUpgrade MsiPackages independently of the base product.Sean Hall6-52/+46
Fixes #6535
2022-02-10Put validation tests behind #if due to confirmed MSI inconsistenciesRob Mensching3-78/+109
When the validation tests are run repeatedly, they will expose an issue in the Windows Installer where ICE validations will occasionally fail to send all error/warning messages. The inconsistency obviously wreaks havoc on the tests. The tests are still interesting (and complex) enough to keep around for manual testing. So they were placed behind an #if for easy manual inclusion. Note that these are "negative tests" that expose the Windows Installer inconsistency when expected failures are missing. Other validation tests are "positive tests" that look for success and thus will always succeed. Therefore, the positive tests stay active.
2022-02-10Add logging to tests to help diagnose intermittent test failuresRob Mensching3-2/+55
2022-02-10Minimize build requirements and try ARM64.SpectreRob Mensching1-3/+1
2022-02-10Re-enable skipped test and minor code clean upRob Mensching2-3/+1
2022-02-10Centralize all validating tests in a single fixtureRob Mensching3-159/+163
This should prevent validation from running in parallel.
2022-02-10Prefer logging messages to throwing out of the ValidatorRob Mensching3-26/+38
Exceptions could cross process boundaries given the callback nature of validation so try to write error messages as soon as errors happen instead of throwing.
2022-02-10Skip another validation test.Sean Hall1-1/+1
2022-02-10When rolling back a bundle failure, reinstall all upgrade related bundles.Sean Hall31-28/+515
Fixes #3421
2022-02-10Central caDecor and caErr.Bob Arnson30-924/+28
2022-02-09Add runtime testing for #6705.Sean Hall6-13/+4
2022-02-09Get Appveyor builds working.Sean Hall4-8/+7
2022-02-08Hold a reference to validation callback until the external UI resetsRob Mensching1-1/+6
2022-02-08Make validation independent of the build commandRob Mensching33-202/+711
In MSBuild this adds a new WindowsInstallerValidation target that automatically runs validation after a successful build. From the command-line the "wix msi" command gets a "validate" subcommand that will validate an MSI or MSM file.