1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "content/shell/app/ios/web_tests_support_ios.h"
#import <UIKit/UIKit.h>
#include "base/message_loop/message_pump.h"
#include "base/message_loop/message_pump_apple.h"
#include "content/public/app/content_main.h"
#include "content/public/app/content_main_runner.h"
#include "content/public/common/main_function_params.h"
#include "content/shell/app/shell_main_delegate.h"
static int g_argc = 0;
static const char** g_argv = nullptr;
static std::unique_ptr<content::ContentMainRunner> g_main_runner;
static std::unique_ptr<content::ShellMainDelegate> g_main_delegate;
namespace {
void PopulateUIWindow(UIWindow* window) {
window.backgroundColor = UIColor.whiteColor;
[window makeKeyAndVisible];
CGRect bounds = UIScreen.mainScreen.bounds;
// Add a label to show the web test is running.
UILabel* label = [[UILabel alloc] initWithFrame:bounds];
label.text = @"Running the web tests...";
label.textAlignment = NSTextAlignmentCenter;
[window addSubview:label];
// An NSInternalInconsistencyException is thrown if the app doesn't have a
// root view controller. Set an empty one here.
window.rootViewController = [[UIViewController alloc] init];
}
} // namespace
@interface WebTestAppSceneDelegate : UIResponder <UIWindowSceneDelegate> {
UIWindow* __strong _window;
}
@end
@implementation WebTestAppSceneDelegate
- (void)scene:(UIScene*)scene
willConnectToSession:(UISceneSession*)session
options:(UISceneConnectionOptions*)connectionOptions {
_window =
[[UIWindow alloc] initWithWindowScene:static_cast<UIWindowScene*>(scene)];
PopulateUIWindow(_window);
}
@end
@interface WebTestApplication : UIApplication
- (BOOL)isRunningTests;
@end
@implementation WebTestApplication
// Need to return YES for testing. If not, a lot of timeouts happen during the
// test.
- (BOOL)isRunningTests {
return YES;
}
@end
@interface WebTestDelegate : UIResponder <UIApplicationDelegate> {
UIWindow* __strong _window;
}
@end
@implementation WebTestDelegate
- (UISceneConfiguration*)application:(UIApplication*)application
configurationForConnectingSceneSession:
(UISceneSession*)connectingSceneSession
options:(UISceneConnectionOptions*)options {
UISceneConfiguration* configuration =
[[UISceneConfiguration alloc] initWithName:nil
sessionRole:connectingSceneSession.role];
configuration.delegateClass = WebTestAppSceneDelegate.class;
return configuration;
}
- (BOOL)application:(UIApplication*)application
willFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
g_main_delegate = std::make_unique<content::ShellMainDelegate>();
content::ContentMainParams params(g_main_delegate.get());
params.argc = g_argc;
params.argv = g_argv;
g_main_runner = content::ContentMainRunner::Create();
content::RunContentProcess(std::move(params), g_main_runner.get());
return YES;
}
- (BOOL)application:(UIApplication*)application
didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
return YES;
}
- (BOOL)application:(UIApplication*)application
shouldSaveSecureApplicationState:(NSCoder*)coder {
return YES;
}
@end
namespace {
std::unique_ptr<base::MessagePump> CreateMessagePumpForUIForTests() {
return std::unique_ptr<base::MessagePump>(new base::MessagePumpCFRunLoop());
}
} // namespace
void InitIOSWebTestMessageLoop() {
base::MessagePump::OverrideMessagePumpForUIFactory(
&CreateMessagePumpForUIForTests);
}
int RunWebTestsFromIOSApp(int argc, const char** argv) {
g_argc = argc;
g_argv = argv;
InitIOSWebTestMessageLoop();
@autoreleasepool {
return UIApplicationMain(argc, const_cast<char**>(argv),
@"WebTestApplication", @"WebTestDelegate");
}
}
|