summaryrefslogtreecommitdiffstats
path: root/test/tests.h
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-02-25 21:50:08 -0600
committerDudemanguy <random342@airmail.cc>2023-03-02 15:45:27 +0000
commit9db818279aa63d071f2bca369235285314444dcd (patch)
tree9aafc5cf73e19ae8ea69751c060cab9766a6b9a4 /test/tests.h
parent61532421571f972f076b3700d7ae468c0a0438c0 (diff)
downloadmpv-9db818279aa63d071f2bca369235285314444dcd.tar.bz2
mpv-9db818279aa63d071f2bca369235285314444dcd.tar.xz
test: integrate unittests with meson
This reworks all of mpv's unit tests so they are compiled as separate executables (optional) and run via meson test. Because most of the tests are dependant on mpv's internals, existing compiled objects are leveraged to create static libs and used when necessary. As an aside, a function was moved into video/out/gpu/utils for sanity's sake (otherwise most of vo would have been needed). As a plus, meson multithreads running tests automatically and also the output no longer pollutes the source directory. There are tests that can break due to ffmpeg changes, so they require a specific minimum libavutil version to be built.
Diffstat (limited to 'test/tests.h')
-rw-r--r--test/tests.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/test/tests.h b/test/tests.h
deleted file mode 100644
index 8b2eb98174..0000000000
--- a/test/tests.h
+++ /dev/null
@@ -1,87 +0,0 @@
-#pragma once
-
-#include <float.h>
-#include <inttypes.h>
-#include <math.h>
-
-#include "common/common.h"
-
-struct MPContext;
-
-bool run_tests(struct MPContext *mpctx);
-
-struct test_ctx {
- struct mpv_global *global;
- struct mp_log *log;
-
- // Path for ref files, without trailing "/".
- const char *ref_path;
-
- // Path for result files, without trailing "/".
- const char *out_path;
-};
-
-struct unittest {
- // This is used to select the test on command line with --unittest=<name>.
- const char *name;
-
- // Cannot run without additional arguments supplied.
- bool is_complex;
-
- // Entrypoints. There are various for various purposes. Only 1 of them must
- // be set.
-
- // Entrypoint for tests which have a simple dependency on the mpv core. The
- // core is sufficiently initialized at this point.
- void (*run)(struct test_ctx *ctx);
-};
-
-extern const struct unittest test_chmap;
-extern const struct unittest test_gl_video;
-extern const struct unittest test_img_format;
-extern const struct unittest test_json;
-extern const struct unittest test_linked_list;
-extern const struct unittest test_repack_sws;
-extern const struct unittest test_repack_zimg;
-extern const struct unittest test_repack;
-extern const struct unittest test_paths;
-
-#define assert_true(x) assert(x)
-#define assert_false(x) assert(!(x))
-#define assert_int_equal(a, b) \
- assert_int_equal_impl(__FILE__, __LINE__, (a), (b))
-#define assert_string_equal(a, b) \
- assert_string_equal_impl(__FILE__, __LINE__, (a), (b))
-#define assert_float_equal(a, b, tolerance) \
- assert_float_equal_impl(__FILE__, __LINE__, (a), (b), (tolerance))
-
-// Assert that memcmp(a,b,s)==0, or hexdump output on failure.
-#define assert_memcmp(a, b, s) \
- assert_memcmp_impl(__FILE__, __LINE__, (a), (b), (s))
-
-// Require that the files "ref" and "new" are the same. The paths can be
-// relative to ref_path and out_path respectively. If they're not the same,
-// the output of "diff" is shown, the err message (if not NULL), and the test
-// fails.
-#define assert_text_files_equal(ctx, ref, new, err) \
- assert_text_files_equal_impl(__FILE__, __LINE__, (ctx), (ref), (new), (err))
-
-void assert_int_equal_impl(const char *file, int line, int64_t a, int64_t b);
-void assert_string_equal_impl(const char *file, int line,
- const char *a, const char *b);
-void assert_float_equal_impl(const char *file, int line,
- double a, double b, double tolerance);
-void assert_text_files_equal_impl(const char *file, int line,
- struct test_ctx *ctx, const char *ref,
- const char *new, const char *err);
-void assert_memcmp_impl(const char *file, int line,
- const void *a, const void *b, size_t size);
-
-// Open a new file in the out_path. Always succeeds.
-FILE *test_open_out(struct test_ctx *ctx, const char *name);
-
-// Sorted list of valid imgfmts. Call init_imgfmts_list() before use.
-extern int imgfmts[];
-extern int num_imgfmts;
-
-void init_imgfmts_list(void);