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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
|
/*
* engine.c
* This file is part of libpeas
*
* Copyright (C) 2010 - Garrett Regier
*
* libpeas 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.
*
* libpeas 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 Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "config.h"
#include <stdlib.h>
#include <glib.h>
#include <libpeas.h>
#include "peas-engine-priv.h"
#include "testing/testing.h"
typedef struct _TestFixture TestFixture;
struct _TestFixture {
PeasEngine *engine;
};
static void
test_setup (TestFixture *fixture,
gconstpointer data)
{
fixture->engine = testing_engine_new ();
}
static void
test_teardown (TestFixture *fixture,
gconstpointer data)
{
testing_engine_free (fixture->engine);
}
static void
test_runner (TestFixture *fixture,
gconstpointer data)
{
((void (*) (PeasEngine *engine)) data) (fixture->engine);
}
static void
test_engine_new (PeasEngine *engine)
{
PeasEngine *new_engine;
/* Only one testing engine can be alive */
new_engine = peas_engine_new ();
g_assert_true (engine != NULL);
g_assert_true (new_engine != NULL);
/* Does not return the same engine */
g_assert_true (engine != new_engine);
/* peas_engine_new() sets the default engine */
g_assert_true (engine == peas_engine_get_default ());
g_object_unref (new_engine);
}
static void
test_engine_dispose (PeasEngine *engine)
{
/* Yes this really has failed before */
g_object_run_dispose (G_OBJECT (engine));
g_object_run_dispose (G_OBJECT (engine));
g_object_run_dispose (G_OBJECT (engine));
/* Seems we have to explicitly unref it
* because testing_engine_free() does not
*/
g_object_unref (G_OBJECT (engine));
}
static void
test_engine_get_default (void)
{
PeasEngine *test_engine;
g_assert_true (peas_engine_get_default () == peas_engine_get_default ());
/* Only has a single ref */
test_engine = peas_engine_get_default ();
g_object_add_weak_pointer (G_OBJECT (test_engine),
(gpointer *) &test_engine);
g_object_unref (test_engine);
g_assert_true (test_engine == NULL);
}
static void
test_engine_load_plugin (PeasEngine *engine)
{
PeasPluginInfo *info;
info = peas_engine_get_plugin_info (engine, "loadable");
g_assert_true (peas_engine_load_plugin (engine, info));
g_assert_true (peas_plugin_info_is_loaded (info));
/* Check that we can load a plugin that is already loaded */
g_assert_true (peas_engine_load_plugin (engine, info));
}
static void
test_engine_load_plugin_with_dep (PeasEngine *engine)
{
PeasPluginInfo *info;
info = peas_engine_get_plugin_info (engine, "has-dep");
g_assert_true (peas_engine_load_plugin (engine, info));
g_assert_true (peas_plugin_info_is_loaded (info));
info = peas_engine_get_plugin_info (engine, "loadable");
g_assert_true (peas_plugin_info_is_loaded (info));
}
static void
test_engine_load_plugin_with_self_dep (PeasEngine *engine)
{
PeasPluginInfo *info;
info = peas_engine_get_plugin_info (engine, "self-dep");
g_assert_true (peas_engine_load_plugin (engine, info));
g_assert_true (peas_plugin_info_is_loaded (info));
}
static void
test_engine_load_plugin_with_nonexistent_dep (PeasEngine *engine)
{
GError *error = NULL;
PeasPluginInfo *info;
testing_util_push_log_hook ("Could not find plugin 'does-not-exist'*");
info = peas_engine_get_plugin_info (engine, "nonexistent-dep");
g_assert_true (!peas_engine_load_plugin (engine, info));
g_assert_true (!peas_plugin_info_is_loaded (info));
g_assert_true (!peas_plugin_info_is_available (info, &error));
g_assert_error (error, PEAS_PLUGIN_INFO_ERROR,
PEAS_PLUGIN_INFO_ERROR_DEP_NOT_FOUND);
g_error_free (error);
}
static void
test_engine_unload_plugin (PeasEngine *engine)
{
PeasPluginInfo *info;
info = peas_engine_get_plugin_info (engine, "loadable");
/* Check that we can unload a plugin that is not loaded */
g_assert_true (peas_engine_unload_plugin (engine, info));
test_engine_load_plugin (engine);
g_assert_true (peas_engine_unload_plugin (engine, info));
g_assert_true (!peas_plugin_info_is_loaded (info));
}
static void
test_engine_unload_plugin_with_dep (PeasEngine *engine)
{
PeasPluginInfo *info;
test_engine_load_plugin_with_dep (engine);
info = peas_engine_get_plugin_info (engine, "loadable");
g_assert_true (peas_engine_unload_plugin (engine, info));
g_assert_true (!peas_plugin_info_is_loaded (info));
info = peas_engine_get_plugin_info (engine, "has-dep");
g_assert_true (!peas_plugin_info_is_loaded (info));
}
static void
test_engine_unload_plugin_with_self_dep (PeasEngine *engine)
{
PeasPluginInfo *info;
test_engine_load_plugin_with_self_dep (engine);
info = peas_engine_get_plugin_info (engine, "self-dep");
g_assert_true (peas_engine_unload_plugin (engine, info));
g_assert_true (!peas_plugin_info_is_loaded (info));
}
static void
test_engine_unavailable_plugin (PeasEngine *engine)
{
PeasPluginInfo *info;
testing_util_push_log_hook ("Could not find plugin 'does-not-exist'*");
info = peas_engine_get_plugin_info (engine, "unavailable");
g_assert_true (!peas_engine_load_plugin (engine, info));
g_assert_true (!peas_plugin_info_is_loaded (info));
g_assert_true (!peas_plugin_info_is_available (info, NULL));
}
static void
test_engine_not_loadable_plugin (PeasEngine *engine)
{
GError *error = NULL;
PeasPluginInfo *info;
testing_util_push_log_hook ("Failed to load module 'not-loadable'*");
testing_util_push_log_hook ("Error loading plugin 'not-loadable'");
info = peas_engine_get_plugin_info (engine, "not-loadable");
g_assert_true (!peas_engine_load_plugin (engine, info));
g_assert_true (!peas_plugin_info_is_loaded (info));
g_assert_true (!peas_plugin_info_is_available (info, &error));
g_assert_error (error, PEAS_PLUGIN_INFO_ERROR,
PEAS_PLUGIN_INFO_ERROR_LOADING_FAILED);
g_error_free (error);
}
static int
list_index (GListModel *model,
PeasPluginInfo *info)
{
guint n_items = g_list_model_get_n_items (model);
for (guint i = 0; i < n_items; i++)
{
PeasPluginInfo *item = g_list_model_get_item (model, i);
g_object_unref (item);
if (item == info)
return (int)i;
}
return -1;
}
static void
test_engine_plugin_list (PeasEngine *engine)
{
const char * const *dependencies;
int builtin_index, loadable_index, two_deps_index;
PeasPluginInfo *builtin_info, *loadable_info, *two_deps_info;
builtin_info = peas_engine_get_plugin_info (engine, "builtin");
loadable_info = peas_engine_get_plugin_info (engine, "loadable");
two_deps_info = peas_engine_get_plugin_info (engine, "two-deps");
builtin_index = list_index (G_LIST_MODEL (engine), builtin_info);
loadable_index = list_index (G_LIST_MODEL (engine), loadable_info);
two_deps_index = list_index (G_LIST_MODEL (engine), two_deps_info);
g_assert_cmpint (builtin_index, !=, -1);
g_assert_cmpint (loadable_index, !=, -1);
g_assert_cmpint (two_deps_index, !=, -1);
/* Verify that we are finding the furthest dependency in the list */
dependencies = peas_plugin_info_get_dependencies (two_deps_info);
g_assert_cmpint (builtin_index, >, loadable_index);
g_assert_cmpstr (dependencies[0], ==, "loadable");
g_assert_cmpstr (dependencies[1], ==, "builtin");
/* The two-deps plugin should be ordered after builtin and loadable */
g_assert_cmpint (builtin_index, <, two_deps_index);
g_assert_cmpint (loadable_index, <, two_deps_index);
}
static void
load_plugin_cb (PeasEngine *engine,
PeasPluginInfo *info,
int *loaded)
{
/* PeasEngine:load is not stopped if loading fails */
if (peas_plugin_info_is_loaded (info))
++(*loaded);
}
static void
unload_plugin_cb (PeasEngine *engine,
PeasPluginInfo *info,
int *loaded)
{
--(*loaded);
}
static void
notify_loaded_plugins_cb (PeasEngine *engine,
GParamSpec *pspec,
char ***loaded_plugins)
{
if (*loaded_plugins != NULL)
g_strfreev (*loaded_plugins);
*loaded_plugins = peas_engine_dup_loaded_plugins (engine);
}
static void
test_engine_loaded_plugins (PeasEngine *engine)
{
PeasPluginInfo *info;
int loaded = 0;
char **load_plugins;
char **loaded_plugins = NULL;
testing_util_push_log_hook ("Could not find plugin 'does-not-exist'*");
g_signal_connect_after (engine,
"load-plugin",
G_CALLBACK (load_plugin_cb),
(gpointer) &loaded);
g_signal_connect_after (engine,
"unload-plugin",
G_CALLBACK (unload_plugin_cb),
(gpointer) &loaded);
g_signal_connect (engine,
"notify::loaded-plugins",
G_CALLBACK (notify_loaded_plugins_cb),
(gpointer) &loaded_plugins);
/* Need to cause the plugin to be unavailable */
info = peas_engine_get_plugin_info (engine, "unavailable");
g_assert_true (!peas_engine_load_plugin (engine, info));
info = peas_engine_get_plugin_info (engine, "loadable");
g_object_notify (G_OBJECT (engine), "loaded-plugins");
/* Unload all plugins */
peas_engine_set_loaded_plugins (engine, NULL);
g_assert_cmpint (loaded, ==, 0);
g_assert_true (loaded_plugins != NULL);
g_assert_true (loaded_plugins[0] == NULL);
load_plugins = g_new0 (char *, 1);
peas_engine_set_loaded_plugins (engine, (const char **) load_plugins);
g_strfreev (load_plugins);
g_assert_cmpint (loaded, ==, 0);
g_assert_true (loaded_plugins != NULL);
g_assert_true (loaded_plugins[0] == NULL);
/* Load a plugin */
load_plugins = g_new0 (char *, 2);
load_plugins[0] = g_strdup ("loadable");
peas_engine_set_loaded_plugins (engine, (const char **) load_plugins);
g_strfreev (load_plugins);
g_assert_cmpint (loaded, ==, 1);
g_assert_true (loaded_plugins != NULL);
g_assert_cmpstr (loaded_plugins[0], ==, "loadable");
g_assert_true (loaded_plugins[1] == NULL);
/* Try to load an unavailable plugin */
load_plugins = g_new0 (char *, 2);
load_plugins[0] = g_strdup ("unavailable");
peas_engine_set_loaded_plugins (engine, (const char **) load_plugins);
g_strfreev (load_plugins);
g_assert_cmpint (loaded, ==, 0);
g_assert_true (loaded_plugins != NULL);
g_assert_true (loaded_plugins[0] == NULL);
g_assert_true (peas_engine_load_plugin (engine, info));
g_assert_cmpint (loaded, ==, 1);
g_assert_true (loaded_plugins != NULL);
g_assert_cmpstr (loaded_plugins[0], ==, "loadable");
g_assert_true (loaded_plugins[1] == NULL);
g_object_unref (engine);
g_assert_cmpint (loaded, ==, 0);
g_assert_true (loaded_plugins != NULL);
g_assert_cmpstr (loaded_plugins[0], ==, "loadable");
g_assert_true (loaded_plugins[1] == NULL);
g_strfreev (loaded_plugins);
}
static void
test_engine_enable_unkown_loader (PeasEngine *engine)
{
testing_util_push_log_hook ("Failed to enable unknown "
"plugin loader 'does-not-exist'");
peas_engine_enable_loader (engine, "does-not-exist");
}
static void
test_engine_enable_loader_multiple_times (PeasEngine *engine)
{
peas_engine_enable_loader (engine, "C");
}
static void
test_engine_nonexistent_search_path (PeasEngine *engine)
{
/* We use /nowhere as it is also used in configure.ac */
peas_engine_add_search_path (engine, "/nowhere", NULL);
}
static void
test_engine_shutdown (void)
{
g_test_trap_subprocess ("/engine/shutdown/subprocess", 0, 0);
g_test_trap_assert_failed ();
g_test_trap_assert_stderr ("*libpeas cannot create a plugin "
"engine as it has been shutdown*");
}
static void
test_engine_shutdown_subprocess (PeasEngine *engine)
{
testing_engine_free (engine);
/* Should be able to shutdown multiple times */
_peas_engine_shutdown ();
_peas_engine_shutdown ();
/* Cannot create an engine because libpeas has been shutdown */
engine = peas_engine_new ();
g_assert_true (engine == NULL);
}
int
main (int argc,
char **argv)
{
testing_init (&argc, &argv);
#define TEST(path, ftest) \
g_test_add ("/engine/" path, TestFixture, \
(gpointer) test_engine_##ftest, \
test_setup, test_runner, test_teardown)
#define TEST_FUNC(path, ftest) \
g_test_add_func ("/engine/" path, test_engine_##ftest)
TEST ("new", new);
TEST ("dispose", dispose);
TEST_FUNC ("get-default", get_default);
TEST ("load-plugin", load_plugin);
TEST ("load-plugin-with-dep", load_plugin_with_dep);
TEST ("load-plugin-with-self-dep", load_plugin_with_self_dep);
TEST ("load-plugin-with-nonexistent-dep", load_plugin_with_nonexistent_dep);
TEST ("unload-plugin", unload_plugin);
TEST ("unload-plugin-with-dep", unload_plugin_with_dep);
TEST ("unload-plugin-with-self-dep", unload_plugin_with_self_dep);
TEST ("unavailable-plugin", unavailable_plugin);
TEST ("not-loadable-plugin", not_loadable_plugin);
TEST ("plugin-list", plugin_list);
TEST ("loaded-plugins", loaded_plugins);
TEST ("enable-unkown-loader", enable_unkown_loader);
TEST ("enable-loader-multiple-times", enable_loader_multiple_times);
TEST ("nonexistent-search-path", nonexistent_search_path);
TEST_FUNC ("shutdown", shutdown);
TEST ("shutdown/subprocess", shutdown_subprocess);
#undef TEST
return testing_run_tests ();
}
|