summaryrefslogtreecommitdiffstats
path: root/test/parser/parser-test.h
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2013-05-15 15:28:57 +0800
committerJeremy Kerr <jk@ozlabs.org>2013-05-16 11:53:25 +0800
commit5d16719922866622fc0f42c570b9934f595e3c33 (patch)
tree5ab9638936aff0aec14d150cf0bef9cb244cbe82 /test/parser/parser-test.h
parentaed58c439015f7f7372d9ee70c767ed9dd366dd7 (diff)
downloadtalos-petitboot-5d16719922866622fc0f42c570b9934f595e3c33.tar.gz
talos-petitboot-5d16719922866622fc0f42c570b9934f595e3c33.zip
test: Replace parser tests with empty framework
This change is a major rework of the parser tests. Currently, the parser tests just run the parsers on each subdir of data/, but we don't actually check the results. Rather than just running parsers and expecting a certain fixed output, the new tests are arbitraty (short!) C programs. This allows us to set up the device configuration / discover context etc in whatever manner necessary, and check that the boot options that the parsers emit are correct. This change removes all of the old tests, and adds a new "null" test. Actual tests will be added in subsequent changes. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test/parser/parser-test.h')
-rw-r--r--test/parser/parser-test.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/parser/parser-test.h b/test/parser/parser-test.h
new file mode 100644
index 0000000..e17cbbc
--- /dev/null
+++ b/test/parser/parser-test.h
@@ -0,0 +1,29 @@
+#ifndef PARSER_TEST_H
+#define PARSER_TEST_H
+
+#include <stdlib.h>
+
+#include "device-handler.h"
+#include "resource.h"
+
+struct parser_test {
+ struct device_handler *handler;
+ struct discover_context *ctx;
+ struct {
+ void *buf;
+ size_t size;
+ } conf;
+};
+
+/* interface required for parsers */
+void __register_parser(struct parser *parser);
+
+/* test functions */
+struct discover_device *test_create_device(struct discover_context *ctx,
+ const char *name);
+
+void test_read_conf_file(struct parser_test *test, const char *filename);
+
+int test_run_parser(struct parser_test *test, const char *parser_name);
+
+#endif /* PARSER_TEST_H */
OpenPOWER on IntegriCloud