summaryrefslogtreecommitdiff
path: root/Source/Core/WinUpdater
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2023-03-13 15:47:37 +0100
committerGitHub <noreply@github.com>2023-03-13 15:47:37 +0100
commita6b2655631f4605cad45ed222dbce0bf72dc1722 (patch)
treeadffd0aefc57bbe4b17f49178ddf72d226cbb647 /Source/Core/WinUpdater
parent019bde6afcca8ff10953421a9c52a68f3d9ca8aa (diff)
parent06cb4ffa648f813c347ca0e807af07f05eaa216c (diff)
Merge pull request #11636 from shuffle2/updater-test
Add test for Updater
Diffstat (limited to 'Source/Core/WinUpdater')
-rw-r--r--Source/Core/WinUpdater/Platform.cpp38
-rw-r--r--Source/Core/WinUpdater/WinUI.cpp31
2 files changed, 53 insertions, 16 deletions
diff --git a/Source/Core/WinUpdater/Platform.cpp b/Source/Core/WinUpdater/Platform.cpp
index f60a6621c0..bc8ccb843e 100644
--- a/Source/Core/WinUpdater/Platform.cpp
+++ b/Source/Core/WinUpdater/Platform.cpp
@@ -103,7 +103,10 @@ private:
auto key_it = map.find(key);
if (key_it == map.end())
continue;
- key_it->second = line.substr(equals_index + 1);
+ auto val_start = equals_index + 1;
+ auto eol = line.find('\r', val_start);
+ auto val_size = (eol == line.npos) ? line.npos : eol - val_start;
+ key_it->second = line.substr(val_start, val_size);
}
}
Map map;
@@ -194,9 +197,12 @@ static bool VCRuntimeUpdate(const BuildInfo& build_info)
Common::ScopeGuard redist_deleter([&] { File::Delete(redist_path_u8); });
- // The installer also supports /passive and /quiet. We pass neither to allow the user to see and
- // interact with the installer.
+ // The installer also supports /passive and /quiet. We normally pass neither (the
+ // exception being test automation) to allow the user to see and interact with the installer.
std::wstring cmdline = redist_path.filename().wstring() + L" /install /norestart";
+ if (UI::IsTestMode())
+ cmdline += L" /passive /quiet";
+
STARTUPINFOW startup_info{.cb = sizeof(startup_info)};
PROCESS_INFORMATION process_info;
if (!CreateProcessW(redist_path.c_str(), cmdline.data(), nullptr, nullptr, TRUE, 0, nullptr,
@@ -213,7 +219,8 @@ static bool VCRuntimeUpdate(const BuildInfo& build_info)
CloseHandle(process_info.hProcess);
// NOTE: Some nonzero exit codes can still be considered success (e.g. if installation was
// bypassed because the same version already installed).
- return has_exit_code && exit_code == EXIT_SUCCESS;
+ return has_exit_code &&
+ (exit_code == ERROR_SUCCESS || exit_code == ERROR_SUCCESS_REBOOT_REQUIRED);
}
static BuildVersion CurrentOSVersion()
@@ -241,7 +248,7 @@ static VersionCheckResult OSVersionCheck(const BuildInfo& build_info)
std::optional<BuildInfos> InitBuildInfos(const std::vector<TodoList::UpdateOp>& to_update,
const std::string& install_base_path,
- const std::string& temp_dir, FILE* log_fp)
+ const std::string& temp_dir)
{
const auto op_it = std::find_if(to_update.cbegin(), to_update.cend(),
[&](const auto& op) { return op.filename == "build_info.txt"; });
@@ -255,7 +262,7 @@ std::optional<BuildInfos> InitBuildInfos(const std::vector<TodoList::UpdateOp>&
if (!File::ReadFileToString(build_info_path, build_info_content) ||
op.new_hash != ComputeHash(build_info_content))
{
- fprintf(log_fp, "Failed to read %s\n.", build_info_path.c_str());
+ LogToFile("Failed to read %s\n.", build_info_path.c_str());
return {};
}
BuildInfos build_infos;
@@ -266,7 +273,7 @@ std::optional<BuildInfos> InitBuildInfos(const std::vector<TodoList::UpdateOp>&
if (File::ReadFileToString(build_info_path, build_info_content))
{
if (op.old_hash != ComputeHash(build_info_content))
- fprintf(log_fp, "Using modified existing BuildInfo %s.\n", build_info_path.c_str());
+ LogToFile("Using modified existing BuildInfo %s.\n", build_info_path.c_str());
build_infos.current = Platform::BuildInfo(build_info_content);
}
return build_infos;
@@ -287,11 +294,16 @@ bool CheckBuildInfo(const BuildInfos& build_infos)
// Check if application being launched needs more recent version of VC Redist. If so, download
// latest updater and execute it.
auto vc_check = VCRuntimeVersionCheck(build_infos);
- if (vc_check.status != VersionCheckStatus::NothingToDo)
+ const auto is_test_mode = UI::IsTestMode();
+ if (vc_check.status != VersionCheckStatus::NothingToDo || is_test_mode)
{
- // Don't bother checking status of the install itself, just check if we actually see the new
- // version.
- VCRuntimeUpdate(build_infos.next);
+ auto update_ok = VCRuntimeUpdate(build_infos.next);
+ if (!update_ok && is_test_mode)
+ {
+ // For now, only check return value when test automation is running.
+ // The vc_redist exe may return other non-zero status that we don't check for, yet.
+ return false;
+ }
vc_check = VCRuntimeVersionCheck(build_infos);
if (vc_check.status == VersionCheckStatus::UpdateRequired)
{
@@ -305,9 +317,9 @@ bool CheckBuildInfo(const BuildInfos& build_infos)
}
bool VersionCheck(const std::vector<TodoList::UpdateOp>& to_update,
- const std::string& install_base_path, const std::string& temp_dir, FILE* log_fp)
+ const std::string& install_base_path, const std::string& temp_dir)
{
- auto build_infos = InitBuildInfos(to_update, install_base_path, temp_dir, log_fp);
+ auto build_infos = InitBuildInfos(to_update, install_base_path, temp_dir);
// If there's no build info, it means the check should be skipped.
if (!build_infos.has_value())
{
diff --git a/Source/Core/WinUpdater/WinUI.cpp b/Source/Core/WinUpdater/WinUI.cpp
index 07f2751dec..48fae8a3b1 100644
--- a/Source/Core/WinUpdater/WinUI.cpp
+++ b/Source/Core/WinUpdater/WinUI.cpp
@@ -3,12 +3,14 @@
#include "UpdaterCommon/UI.h"
+#include <cstdlib>
#include <string>
#include <thread>
#include <Windows.h>
#include <CommCtrl.h>
#include <ShObjIdl.h>
+#include <ShlObj.h>
#include <shellapi.h>
#include <wrl/client.h>
@@ -253,11 +255,34 @@ void Stop()
ui_thread.join();
}
+bool IsTestMode()
+{
+ return std::getenv("DOLPHIN_UPDATE_SERVER_URL") != nullptr;
+}
+
void LaunchApplication(std::string path)
{
- // Indirectly start the application via explorer. This effectively drops admin priviliges because
- // explorer is running as current user.
- ShellExecuteW(nullptr, nullptr, L"explorer.exe", UTF8ToWString(path).c_str(), nullptr, SW_SHOW);
+ const auto wpath = UTF8ToWString(path);
+ if (IsUserAnAdmin())
+ {
+ // Indirectly start the application via explorer. This effectively drops admin privileges
+ // because explorer is running as current user.
+ ShellExecuteW(nullptr, nullptr, L"explorer.exe", wpath.c_str(), nullptr, SW_SHOW);
+ }
+ else
+ {
+ std::wstring cmdline = wpath;
+ STARTUPINFOW startup_info{.cb = sizeof(startup_info)};
+ PROCESS_INFORMATION process_info;
+ if (IsTestMode())
+ SetEnvironmentVariableA("DOLPHIN_UPDATE_TEST_DONE", "1");
+ if (CreateProcessW(wpath.c_str(), cmdline.data(), nullptr, nullptr, TRUE, 0, nullptr, nullptr,
+ &startup_info, &process_info))
+ {
+ CloseHandle(process_info.hThread);
+ CloseHandle(process_info.hProcess);
+ }
+ }
}
void Sleep(int sleep)