blob: 5b47dd671e8cd6a6f9cb75aa5aab86ef5c2eb6b6 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_WEB_APPLICATIONS_TEST_WEB_APP_TEST_UTILS_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_TEST_WEB_APP_TEST_UTILS_H_
#include <stdint.h>
#include <memory>
#include <string>
#include "base/strings/string_piece_forward.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/web_applications/web_app_constants.h"
#include "chrome/browser/web_applications/web_app_id.h"
#include "chrome/browser/web_applications/web_app_install_params.h"
#include "chrome/browser/web_applications/web_app_sync_bridge.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/service_worker_context.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
class Browser;
class Profile;
struct WebAppInstallInfo;
namespace content {
class StoragePartition;
class WebContents;
} // namespace content
namespace web_app {
class WebApp;
// Intended to be used for parameterizing tests that involve OS integration.
enum class OsIntegrationSubManagersState {
kSaveStateToDB = 0,
kSaveStateAndExecute = 1,
kDisabled = 2,
kMaxValue = kDisabled
};
namespace test {
std::string GetOsIntegrationSubManagersTestName(
const ::testing::TestParamInfo<OsIntegrationSubManagersState>& info);
// Do not use this for installation! Instead, use the utilities in
// web_app_install_test_util.h.
std::unique_ptr<WebApp> CreateWebApp(
const GURL& start_url = GURL("https://example.com/path"),
WebAppManagement::Type source_type = WebAppManagement::kSync);
// Do not use this for installation! Instead, use the utilities in
// web_app_install_test_util.h.
struct CreateRandomWebAppParams {
GURL base_url{"https://example.com/path"};
uint32_t seed = 0;
bool non_zero = false;
bool allow_system_source = true;
};
std::unique_ptr<WebApp> CreateRandomWebApp(CreateRandomWebAppParams params);
void TestAcceptDialogCallback(
content::WebContents* initiator_web_contents,
std::unique_ptr<WebAppInstallInfo> web_app_info,
WebAppInstallationAcceptanceCallback acceptance_callback);
void TestDeclineDialogCallback(
content::WebContents* initiator_web_contents,
std::unique_ptr<WebAppInstallInfo> web_app_info,
WebAppInstallationAcceptanceCallback acceptance_callback);
AppId InstallPwaForCurrentUrl(Browser* browser);
void CheckServiceWorkerStatus(const GURL& url,
content::StoragePartition* storage_partition,
content::ServiceWorkerCapability status);
void SetWebAppSettingsListPref(Profile* profile, base::StringPiece pref);
void AddInstallUrlData(PrefService* pref_service,
WebAppSyncBridge* sync_bridge,
const AppId& app_id,
const GURL& url,
const ExternalInstallSource& source);
void AddInstallUrlAndPlaceholderData(PrefService* pref_service,
WebAppSyncBridge* sync_bridge,
const AppId& app_id,
const GURL& url,
const ExternalInstallSource& source,
bool is_placeholder);
#if BUILDFLAG(IS_CHROMEOS_LACROS)
class ScopedSkipMainProfileCheck {
public:
ScopedSkipMainProfileCheck();
ScopedSkipMainProfileCheck(const ScopedSkipMainProfileCheck&) = delete;
ScopedSkipMainProfileCheck& operator=(const ScopedSkipMainProfileCheck&) =
delete;
~ScopedSkipMainProfileCheck();
};
#endif
} // namespace test
} // namespace web_app
#endif // CHROME_BROWSER_WEB_APPLICATIONS_TEST_WEB_APP_TEST_UTILS_H_