// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/enterprise_companion/test/test_utils.h"
#include <windows.h>
#include <optional>
#include <string>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/strings/utf_string_conversions.h"
#include "base/win/registry.h"
#include "chrome/enterprise_companion/enterprise_companion_branding.h"
#include "chrome/enterprise_companion/enterprise_companion_version.h"
#include "chrome/enterprise_companion/installer.h"
#include "chrome/enterprise_companion/installer_paths.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace enterprise_companion {
namespace {
class TestMethodsWin : public TestMethods {
public:
TestMethodsWin() = default;
~TestMethodsWin() override = default;
void ExpectInstalled() override {
TestMethods::ExpectInstalled();
ExpectUpdaterRegistration();
}
void Clean() override {
TestMethods::Clean();
std::optional<base::FilePath> alt_install_dir =
GetInstallDirectoryForAlternateArch();
if (alt_install_dir) {
ASSERT_TRUE(WaitFor(
[&] { return base::DeletePathRecursively(*alt_install_dir); },
[&] {
VLOG(1) << "Waiting to delete " << *alt_install_dir << "...";
}));
}
ASSERT_EQ(base::win::RegKey(HKEY_LOCAL_MACHINE, kAppRegKey,
KEY_ALL_ACCESS | KEY_WOW64_32KEY)
.DeleteKey(L""),
ERROR_SUCCESS);
}
};
} // namespace
void ExpectUpdaterRegistration() {
base::win::RegKey app_key(HKEY_LOCAL_MACHINE, kAppRegKey,
KEY_QUERY_VALUE | KEY_WOW64_32KEY);
std::wstring pv;
ASSERT_EQ(app_key.ReadValue(kRegValuePV, &pv), ERROR_SUCCESS);
EXPECT_EQ(pv, base::ASCIIToWide(kEnterpriseCompanionVersion));
std::wstring name;
ASSERT_EQ(app_key.ReadValue(kRegValueName, &name), ERROR_SUCCESS);
EXPECT_EQ(name, L"" PRODUCT_FULLNAME_STRING);
}
TestMethods& GetTestMethods() {
static base::NoDestructor<TestMethodsWin> test_methods;
return *test_methods;
}
} // namespace enterprise_companion