]> sigrok.org Git - libsigrok.git/blobdiff - tests/check_output_all.c
Add a few unit tests for sr_trigger_*().
[libsigrok.git] / tests / check_output_all.c
index 497a24a6d32298c2fda8857dfb2c351b705d0672..1eadea193badd624b24c0db575ba4e8592512d20 100644 (file)
 
 #include <stdlib.h>
 #include <check.h>
-#include "../libsigrok.h"
+#include "../include/libsigrok/libsigrok.h"
 #include "lib.h"
 
 /* Check whether at least one output module is available. */
 START_TEST(test_output_available)
 {
-       struct sr_output_format **outputs;
+       const struct sr_output_module **outputs;
 
        outputs = sr_output_list();
        fail_unless(outputs != NULL, "No output modules found.");
 }
 END_TEST
 
+/* Check whether sr_output_id_get() works. */
+START_TEST(test_output_id)
+{
+       const struct sr_output_module **outputs;
+       const char *id;
+
+       outputs = sr_output_list();
+
+       id = sr_output_id_get(outputs[0]);
+       fail_unless(id != NULL, "No id found in output module.");
+}
+END_TEST
+
+/* Check whether sr_output_name_get() works. */
+START_TEST(test_output_name)
+{
+       const struct sr_output_module **outputs;
+       const char *name;
+
+       outputs = sr_output_list();
+
+       name = sr_output_name_get(outputs[0]);
+       fail_unless(name != NULL, "No name found in output module.");
+}
+END_TEST
+
+/* Check whether sr_output_description_get() works. */
+START_TEST(test_output_desc)
+{
+       const struct sr_output_module **outputs;
+       const char *desc;
+
+       outputs = sr_output_list();
+
+       desc = sr_output_description_get(outputs[0]);
+       fail_unless(desc != NULL, "No description found in output module.");
+}
+END_TEST
+
+/* Check whether sr_output_find() works. */
+START_TEST(test_output_find)
+{
+       const struct sr_output_module *omod;
+       const char *id;
+
+       omod = sr_output_find("bits");
+       fail_unless(omod != NULL, "Couldn't find the 'bits' output module.");
+       id = sr_output_id_get(omod);
+       fail_unless(!strcmp(id, "bits"), "That is not the 'bits' module!");
+}
+END_TEST
+
+/* Check whether sr_output_options_get() works. */
+START_TEST(test_output_options)
+{
+       const struct sr_option **opt;
+
+       opt = sr_output_options_get(sr_output_find("bits"));
+       fail_unless(opt != NULL, "Couldn't find 'bits' options.");
+       fail_unless(!strcmp((*opt)->id, "width"), "Wrong 'bits' option found!");
+}
+END_TEST
+
 Suite *suite_output_all(void)
 {
        Suite *s;
@@ -42,6 +105,11 @@ Suite *suite_output_all(void)
 
        tc = tcase_create("basic");
        tcase_add_test(tc, test_output_available);
+       tcase_add_test(tc, test_output_id);
+       tcase_add_test(tc, test_output_name);
+       tcase_add_test(tc, test_output_desc);
+       tcase_add_test(tc, test_output_find);
+       tcase_add_test(tc, test_output_options);
        suite_add_tcase(s, tc);
 
        return s;