mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-15 08:56:38 -05:00
test: simplify the logger test a bit
The tests using this function use the pw_log* macros which invoke whichever logger pipewire has set. Since the default logging implementation supports logging to a file anyway, let's just use that instead of having to load the plugin ourselves.
This commit is contained in:
parent
f1f5cbc0a6
commit
2b65fb36f2
1 changed files with 9 additions and 15 deletions
|
|
@ -131,28 +131,18 @@ PWTEST(logger_no_ansi)
|
||||||
static void
|
static void
|
||||||
test_log_levels(enum spa_log_level level)
|
test_log_levels(enum spa_log_level level)
|
||||||
{
|
{
|
||||||
struct pwtest_spa_plugin *plugin;
|
|
||||||
void *iface;
|
|
||||||
char fname[PATH_MAX];
|
char fname[PATH_MAX];
|
||||||
struct spa_dict_item items[2];
|
|
||||||
struct spa_dict info;
|
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
bool above_level_found = false;
|
bool above_level_found = false;
|
||||||
bool below_level_found = false;
|
bool below_level_found = false;
|
||||||
bool current_level_found = false;
|
bool current_level_found = false;
|
||||||
|
char *oldenv = getenv("PIPEWIRE_LOG");
|
||||||
|
|
||||||
|
pwtest_mkstemp(fname);
|
||||||
|
setenv("PIPEWIRE_LOG", fname, 1);
|
||||||
|
|
||||||
pw_init(0, NULL);
|
pw_init(0, NULL);
|
||||||
pwtest_mkstemp(fname);
|
|
||||||
items[0] = SPA_DICT_ITEM_INIT(SPA_KEY_LOG_FILE, fname);
|
|
||||||
items[1] = SPA_DICT_ITEM_INIT(SPA_KEY_LOG_COLORS, "true");
|
|
||||||
info = SPA_DICT_INIT(items, 2);
|
|
||||||
plugin = pwtest_spa_plugin_new();
|
|
||||||
iface = pwtest_spa_plugin_load_interface(plugin, "support/libspa-support",
|
|
||||||
SPA_NAME_SUPPORT_LOG, SPA_TYPE_INTERFACE_Log,
|
|
||||||
&info);
|
|
||||||
pwtest_ptr_notnull(iface);
|
|
||||||
pw_log_set(iface);
|
|
||||||
|
|
||||||
/* current level is whatever the iteration is. Log one line
|
/* current level is whatever the iteration is. Log one line
|
||||||
* with our level, one with a level above (should never show up)
|
* with our level, one with a level above (should never show up)
|
||||||
|
|
@ -189,8 +179,12 @@ test_log_levels(enum spa_log_level level)
|
||||||
pwtest_bool_true(current_level_found);
|
pwtest_bool_true(current_level_found);
|
||||||
pwtest_bool_true(below_level_found);
|
pwtest_bool_true(below_level_found);
|
||||||
}
|
}
|
||||||
pwtest_spa_plugin_destroy(plugin);
|
|
||||||
pw_deinit();
|
pw_deinit();
|
||||||
|
|
||||||
|
if (oldenv)
|
||||||
|
setenv("PIPEWIRE_LOG", oldenv, 1);
|
||||||
|
else
|
||||||
|
unsetenv("PIPEWIRE_LOG");
|
||||||
}
|
}
|
||||||
|
|
||||||
PWTEST(logger_levels)
|
PWTEST(logger_levels)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue