aboutsummaryrefslogtreecommitdiff
path: root/src/dtf (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-08-19Fix bad URL.Bob Arnson3-3/+3
Fixes https://github.com/wixtoolset/issues/issues/8704
2024-08-19Add verbose messages around harvesting.Bob Arnson3-3/+63
2024-07-18Add basic test for Msmq install/uninstall.Bevan Weiss8-4/+122
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>
2024-07-17Initialize WOW64 in TouchFile custom actionRob Mensching4-0/+100
Fixes 8638
2024-07-15Fix egregiously bad comments that were frustratingBob Arnson2-29/+29
2024-07-15Fix faulty memory access in Util's User custom actionsRob Mensching5-120/+95
Generally, clean up the handling of getting the domain from a server name by centralizing and simplifying it behind an improved GetDomainFromServerName() based on the buggy GetServerName(). Fixes 8576
2024-07-13Scheduling standard actions must override virtual definitions from stdlibRob Mensching5-4/+162
Fixes 8115
2024-07-13Reset current directory so SFXCA directory can be cleaned upRob Mensching1-0/+19
Fixes 8630
2024-07-12Introducing wix-cli.msiRob Mensching7-6/+195
Fixes 8623
2024-07-12Fix "wix extension list" to correctly display machine-wide extensionsRob Mensching1-31/+46
Fixes 8625
2024-07-12Move DTF back to .NET 2.0 as it is still supportedRob Mensching7-8/+8
Fixes 8134
2024-07-12Re-enable insignificant zeros in PackageVersionRob Mensching2-7/+60
Closes 8589
2024-07-12Update dependenciesRob Mensching5-33/+33
Fixes 8569
2024-07-12Fix missing WixToolset.Firewall.wixext versionRob Mensching2-4/+0
Fixes 8624
2024-07-12Prevent unnecessary refreshes that move focus.Bob Arnson1-6/+9
Spillover from having more interactive controls. In WiX v3, showing a page moved the focus as a typical person might expect. When WiX v4 added interactivity, the same code was used to update controls (e.g., when checking a checkbox set a property used in a `VisibleCondition` or `EnableCondition` for another control on the same page). This change prevents the focus-setting behavior if the same page is being shown. Fixes https://github.com/wixtoolset/issues/issues/8144
2024-07-04Add extra logging setup to registry.Bevan Weiss2-0/+22
Neither "reg import" nor "reg add" appeared to work inside the sandbox So went with "regedit /s {path}" which did work. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04Change lower case c:\ => C:\ in 'where' search to align with expectedBevan Weiss1-1/+1
firewall rules. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04No longer support downloading within the Sandbox. Just error instead.Bevan Weiss3-41/+51
Install both the x64 AND the x86 versions of Windows Desktop Runtime. Needed for the Burn Integration tests. And having dotnet files in the sandbox directory was annoying, so put them all into an assets directory Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04Added host menu options for EXE / ZIP installationBevan Weiss3-40/+88
Removed ARM64/AMD64 folders for dotnet, the Sandbox MUST match the host here, so no point downloading the installer for the non-host platform. Debugger could probably be reduced in the same manner, but have not in this iteration. Have also added a simple README, just to explain (very basic) operation. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04Make faster... don't do both runtime and SDK, SDK is all we needBevan Weiss2-19/+22
Fix a couple of copy-paste errors in the "don't have files from host in Sandbox" path also. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04Found a way to get the hostname.Bevan Weiss1-1/+4
Not sure if it's ideal, but it works.. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04Wrap variable sets in double quotes so special characters don't break them.Bevan Weiss1-5/+5
By default enable /noauth and /anyuser on the debugger, and don't show the security warning (/nosecuritywarn). It'll still show the firewall warning prompt. Default settings should be fine for firewall (Private networks). Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04Added some comments for the menu.Bevan Weiss2-10/+36
And a fix up for the tests not launching the first try (due to delayed expansion). Also fixed up the copying of the debugger files.
2024-07-04Added some more modifications to the Sandbox.Bevan Weiss4-6/+80
It will now prompt for configuring the Remote Debugger if it can find it on the host when doing the setup. And will prompt within the Sandbox to run the Debugger at startup if found It will also show the host-local IP address to connect to the debugger. In addition, it will display a small menu to allow for simple selection of a particular runtests.cmd version to execute. I still haven't found a good way to get a debugger attached into the msiexec environment without already having a coded breakpoint in, however. Also added this sandbox folder to .gitignore, so that artifacts from here aren't committed into the repo Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
2024-07-04Add Sandbox configuration to more easily perform Integration tests.Bevan Weiss3-0/+81
Will automatically 'install' dotnet/dotnet sdk into sandbox at startup based on versions in 'src/test/sandbox/{AMD64,ARM64}' (dotnet-runtime.zip & dotnet-sdk.zip). Running ./src/test/sandbox/setup_sandbox.bat will download the required files (when run on the host). If the files aren't available, and the guest has network, it will attempt to download the files itself at startup. Still to be done: * menu at startup to allow easy one button selection of which particular test set to run * investigation into whether vstest.console.exe can be used to capture test execution, and possibly have the sandbox available as a test runner, so MSI tests could be run in the sandbox directly from the dev environment. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>