Currently, a lot of our build variables that are defined at configuration time, are spread out across the code base, often declared as `extern` which can break when moving around sections of the code across files. This commit introduces a "Config" namespace which basically maps to the definitions in `config.h`, but allows us to properly access them too from the Vala source code. By doing so, it helps us to more explicitly see where we rely on a build variable from this file (which should be obvious from the `Config' namespace). To make it ourselves a bit easier in Meson too, we can declare an internal dependency, which helps ensure that we pull in the dependency where needed.
58 lines
1.8 KiB
Vala
58 lines
1.8 KiB
Vala
/*
|
|
* Copyright 2016 Michael Gratton <mike@vee.net>
|
|
*
|
|
* This software is licensed under the GNU Lesser General Public License
|
|
* (version 2.1 or later). See the COPYING file in this distribution.
|
|
*/
|
|
|
|
|
|
public abstract class Components.WebViewTestCase<V> : TestCase {
|
|
|
|
protected V? test_view = null;
|
|
protected Application.Configuration? config = null;
|
|
|
|
protected WebViewTestCase(string name) {
|
|
base(name);
|
|
}
|
|
|
|
public override void set_up() {
|
|
this.config = new Application.Configuration(Application.Client.SCHEMA_ID);
|
|
this.config.enable_debug = true;
|
|
|
|
WebView.init_web_context(
|
|
this.config,
|
|
File.new_for_path(Config.BUILD_ROOT_DIR).get_child("src"),
|
|
File.new_for_path("/tmp"), // XXX use something better here
|
|
false // https://bugs.webkit.org/show_bug.cgi?id=213174
|
|
);
|
|
try {
|
|
WebView.load_resources(GLib.File.new_for_path("/tmp"));
|
|
} catch (GLib.Error err) {
|
|
GLib.assert_not_reached();
|
|
}
|
|
|
|
this.test_view = set_up_test_view();
|
|
}
|
|
|
|
protected override void tear_down() {
|
|
this.config = null;
|
|
this.test_view = null;
|
|
}
|
|
|
|
protected abstract V set_up_test_view();
|
|
|
|
protected virtual void load_body_fixture(string html = "") {
|
|
WebView client_view = (WebView) this.test_view;
|
|
client_view.load_html_headless(html);
|
|
while (!client_view.is_content_loaded) {
|
|
Gtk.main_iteration();
|
|
}
|
|
}
|
|
|
|
protected JSC.Value? run_javascript(string command) throws Error {
|
|
WebView view = (WebView) this.test_view;
|
|
view.evaluate_javascript.begin(command, -1, null, null, null, this.async_completion);
|
|
return view.evaluate_javascript.end(async_result());
|
|
}
|
|
|
|
}
|