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
|
/* plugin-meson-test-provider.c
*
* Copyright 2025 Christian Hergert <chergert@redhat.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "config.h"
#include "plugin-meson-introspection-stage.h"
#include "plugin-meson-test-provider.h"
struct _PluginMesonTestProvider
{
FoundryTestProvider parent_instance;
};
G_DEFINE_FINAL_TYPE (PluginMesonTestProvider, plugin_meson_test_provider, FOUNDRY_TYPE_TEST_PROVIDER)
static DexFuture *
plugin_meson_test_provider_load (FoundryTestProvider *provider)
{
PluginMesonTestProvider *self = (PluginMesonTestProvider *)provider;
g_assert (PLUGIN_IS_MESON_TEST_PROVIDER (self));
return dex_future_new_true ();
}
static DexFuture *
plugin_meson_test_provider_unload (FoundryTestProvider *provider)
{
PluginMesonTestProvider *self = (PluginMesonTestProvider *)provider;
g_assert (PLUGIN_IS_MESON_TEST_PROVIDER (self));
return dex_future_new_true ();
}
static DexFuture *
plugin_meson_test_provider_list_tests (FoundryTestProvider *provider)
{
PluginMesonTestProvider *self = (PluginMesonTestProvider *)provider;
g_autoptr(FoundryBuildManager) build_manager = NULL;
g_autoptr(FoundryBuildPipeline) pipeline = NULL;
g_autoptr(DexCancellable) cancellable = NULL;
g_autoptr(FoundryContext) context = NULL;
g_autoptr(GError) error = NULL;
guint n_items;
g_assert (PLUGIN_IS_MESON_TEST_PROVIDER (self));
context = foundry_contextual_dup_context (FOUNDRY_CONTEXTUAL (self));
build_manager = foundry_context_dup_build_manager (context);
cancellable = dex_cancellable_new ();
if (!(pipeline = dex_await_object (foundry_build_manager_load_pipeline (build_manager), &error)))
return dex_future_new_for_error (g_steal_pointer (&error));
n_items = g_list_model_get_n_items (G_LIST_MODEL (pipeline));
for (guint i = 0; i < n_items; i++)
{
g_autoptr(FoundryBuildStage) stage = g_list_model_get_item (G_LIST_MODEL (pipeline), i);
if (PLUGIN_IS_MESON_INTROSPECTION_STAGE (stage))
{
g_autoptr(GListModel) tests = NULL;
if (!dex_await (foundry_build_stage_query (stage), &error))
return dex_future_new_for_error (g_steal_pointer (&error));
/* If this stage is not completed, we need to advance the pipeline.
* Otherwise, we'll try to load things without affecting the pipeline
* so that we don't trigger a build unless necessary.
*/
if (!foundry_build_stage_get_completed (stage))
{
g_autoptr(FoundryBuildProgress) progress = NULL;
progress = foundry_build_pipeline_build (pipeline,
FOUNDRY_BUILD_PIPELINE_PHASE_CONFIGURE,
-1, cancellable);
if (!dex_await (foundry_build_progress_await (progress), &error))
return dex_future_new_for_error (g_steal_pointer (&error));
}
if (!(tests = dex_await_object (plugin_meson_introspection_stage_list_tests (PLUGIN_MESON_INTROSPECTION_STAGE (stage)), &error)))
return dex_future_new_for_error (g_steal_pointer (&error));
return dex_future_new_take_object (g_steal_pointer (&tests));
}
}
g_debug ("No instance of `%s` in pipeline",
g_type_name (PLUGIN_TYPE_MESON_INTROSPECTION_STAGE));
return dex_future_new_take_object (g_list_store_new (FOUNDRY_TYPE_TEST));
}
static void
plugin_meson_test_provider_class_init (PluginMesonTestProviderClass *klass)
{
FoundryTestProviderClass *test_provider_class = FOUNDRY_TEST_PROVIDER_CLASS (klass);
test_provider_class->load = plugin_meson_test_provider_load;
test_provider_class->unload = plugin_meson_test_provider_unload;
test_provider_class->list_tests = plugin_meson_test_provider_list_tests;
}
static void
plugin_meson_test_provider_init (PluginMesonTestProvider *self)
{
}
|