diff options
author | sanine <sanine.not@pm.me> | 2022-09-16 00:55:53 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-09-16 00:55:53 -0500 |
commit | d444d1c98fdefea6cf0aff50eb9b58d4dbcea6ed (patch) | |
tree | ad4f0fea5d8f0d0b581978d50debccb63b3e6b38 /src/import/import.test.c | |
parent | f2eb020c4199134e07632f3c6690d68381837b85 (diff) |
begin assimp bindings
Diffstat (limited to 'src/import/import.test.c')
-rw-r--r-- | src/import/import.test.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/import/import.test.c b/src/import/import.test.c new file mode 100644 index 0000000..efa6b84 --- /dev/null +++ b/src/import/import.test.c @@ -0,0 +1,44 @@ +#include <lua.h> +#include <lauxlib.h> +#include <honeysuckle.h> +#include "test/honey-test.h" + + +#include "import.c" + + +void test_push_vector() +{ + lua_State *L = luaL_newstate(); + struct aiVector3D v; + v.x = 1.5; + v.y = 2.0; + v.z = 3.6; + + push_vector(L, v); + + lily_assert_int_equal(lua_type(L, -1), LUA_TTABLE); + + lua_getfield(L, -1, "x"); + lily_assert_int_equal(lua_type(L, -1), LUA_TNUMBER); + lily_assert_float_equal(lua_tonumber(L, -1), 1.5, 0.1); + lua_pop(L, 1); + + lua_getfield(L, -1, "y"); + lily_assert_int_equal(lua_type(L, -1), LUA_TNUMBER); + lily_assert_float_equal(lua_tonumber(L, -1), 2.0, 0.1); + lua_pop(L, 1); + + lua_getfield(L, -1, "z"); + lily_assert_int_equal(lua_type(L, -1), LUA_TNUMBER); + lily_assert_float_equal(lua_tonumber(L, -1), 3.6, 0.1); + lua_pop(L, 1); + + lua_close(L); +} + + +void suite_import() +{ + lily_run_test(test_push_vector); +} |