aboutsummaryrefslogtreecommitdiff
path: root/src/test (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve error reporting wrt ExePackage and MsuPackage attributesRob Mensching2022-03-011-1/+1
| | | | | | | | 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.
* Move nuget.config, global.json and Directory.Packages.props to rootRob Mensching2022-02-233-11/+5
| | | | | Putting these files in the root means they can be used by the test projects support projects that get copied to the `build` folder.
* Fix wixlib, msm, msi incremental buildRob Mensching2022-02-235-11/+118
| | | | | | Simplify and improves the tracking of input and intermediate files to fix incremental build issues for wixlibs, merge modules and MSI databases.
* Add UnsafeUninstall action.Sean Hall2022-02-223-7/+74
| | | | Fixes #6721
* Parse the Content-Length string value to avoid the 2GB limitation.Sean Hall2022-02-191-2/+2
|
* Handle missing content length with range request and empty files.Sean Hall2022-02-194-6/+122
| | | | Add test for server without range request support.
* Ignore HEAD request failure in dlutil's DownloadUrl.Sean Hall2022-02-193-3/+26
| | | | Fixes #6331
* Finish removing native pdbs from .nupkg and removing symbols packages.Sean Hall2022-02-181-1/+0
|
* Create single .zip file for non-embedded pdb filesRob Mensching2022-02-171-1/+9
| | | | | No longer create .snupkg/.symbols.nupkgs since they don't actually support native pdbs, which are all of our non-embedded pdb files.
* Detect MinorUpgrade MsiPackages independently of the base product.Sean Hall2022-02-121-16/+14
| | | | Fixes #6535
* When rolling back a bundle failure, reinstall all upgrade related bundles.Sean Hall2022-02-106-2/+75
| | | | Fixes #3421
* Add runtime testing for #6705.Sean Hall2022-02-096-13/+4
|
* Make validation independent of the build commandRob Mensching2022-02-084-3/+4
| | | | | | | 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.
* Remove helper filesRob Mensching2022-02-035-16263/+0
|
* Don't uninstall package during rollback if there are dependents.Sean Hall2022-02-011-2/+148
|
* Remove some assumptions in dependency planning.Sean Hall2022-02-011-1/+1
| | | | | | | | * A package might be installed even if it was already present. * A package might be uninstalled even if it was already absent. * The bundle might not actually be uninstalled even if the planned action was uninstall. Fixes #6510
* Remove orphan package providers when unregistering the bundle.Sean Hall2022-02-011-1/+1
| | | | Fixes #3850
* Add compiler extension to handle platforms.Bob Arnson2022-01-306-12/+3
| | | | | | | | Custom actions to print EULA and validate install directories are defined in WixUIExtension compiler extension, to handle platform-specific custom actions referred to from `DoAction` control events. This is the least-worst solution, given the `DoAction` approach used in the WixUI authoring and anyone customizing a WixUI set.
* Add failing dependency E2E tests.Sean Hall2022-01-2126-11/+399
|
* Use IgnoreLanguage as workaround for #6705.Sean Hall2022-01-214-0/+12
|
* Fix some minor bugs.Sean Hall2022-01-211-21/+21
|
* Standardize .vcxproj on v143 like rest of buildRob Mensching2022-01-174-16/+16
|
* Remove orphan compatible MSI packages.Sean Hall2022-01-1610-6/+120
| | | | Reimplements #3190
* Fix 32/64-bit bitness handling in Burn and BUtil.Bob Arnson2022-01-163-0/+43
| | | | | | - Take advantage of RegOpenEx. - Always look for related bundles in both 32 and 64 hives. - BundleEnumRelatedBundle requires caller to specify bitness.
* Handle 32-bit related-bundle registration...Bob Arnson2022-01-093-0/+44
| | | | ...from 64-bit bundles.
* Always run upgrade related bundles last.Sean Hall2022-01-0620-104/+541
| | | | #5128
* Disable Burn integration test parallel buildRob Mensching2022-01-031-1/+1
| | | | | This seems to sometimes cause build failures in the CI system so we'll go slower for a higher success rate.
* Remove test package that is supposed to be missingRob Mensching2022-01-021-0/+3
| | | | | | | | When missing uncompressed payloads in bundles were fixed in the build, the FailureTests.CanInstallWhenMissingNonVitalPackage test failed because a package used to be missing was now present. Now we explicitly delete the package during the test bundle's build to ensure it is missing.
* Build burn integrate tests in parallel and reduce test noiseRob Mensching2022-01-022-3/+7
|
* Ensure external bundle payloads and containers are copied to outputRob Mensching2022-01-021-8/+0
|
* Upload test results and fail the build if any are missing.Sean Hall2022-01-012-8/+6
| | | | Always zip up the logs from %TEMP%.
* Try to get more helpful test failure messages.Sean Hall2022-01-012-2/+3
|
* Remove redundant -v m.Sean Hall2022-01-011-1/+1
|
* Don't report related operation in OnDetectRelatedBundle.Sean Hall2021-12-305-18/+76
| | | | #5796
* Fix FilesInUse test.Sean Hall2021-12-301-1/+1
|
* FilesInUse messages are too different to unify in the Burn engine.Sean Hall2021-12-308-1/+101
| | | | Fixes #6348
* Integration tests for wixproj Sdk-style buildsRob Mensching2021-12-30148-1/+85145
|
* Build simplification and parallelizationRob Mensching2021-12-301-2/+2
|
* Build with VS2022, which is now required.Bob Arnson2021-12-251-1/+0
| | | | - Use VS2022/v143 libraries exclusively. C++ compatibility works.
* Ensure failed test, fail the buildRob Mensching2021-12-161-0/+3
|
* Only run RuntimeTests in the `develop` and `master` branchesRob Mensching2021-12-141-2/+2
|
* Capture logs from burn integration testsRob Mensching2021-12-141-1/+9
|
* After rolling back in a non-vital rollback boundary, skip to its end.Sean Hall2021-12-131-1/+1
| | | | Fixes #6309
* Clean up some E2E tests.Sean Hall2021-12-116-14/+7
|
* Add BA events for setting the update bundle.Sean Hall2021-12-111-0/+9
| | | | Fixes #6410
* If there isn't enough disk space, skip the 5GB testRob Mensching2021-12-031-6/+19
|
* Move ImageList element back under Theme since it's not a control.Sean Hall2021-11-102-10/+12
|
* Go back to thmutil not interfering with wixstdba controls.Sean Hall2021-11-101-1/+2
|
* Follow up for multiple attached container supportSean Hall2021-11-035-0/+85
| | | | | | | | | | | * validate cContainers * use previous embeddedid format and use intermediate folder when extracting attached containers * remove special cases for 0 byte containers in BurnCommon classes and Insignia * don't hardcode max containers * reduce properties in BurnCommon * add e2e test #6144
* Avoid using control ids inside of thmutil.Sean Hall2021-11-011-3/+8
|