Hash :
0b6258db
Author :
Thomas de Grivel
Date :
2023-04-10T00:21:10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
/* c3
* Copyright 2022,2023 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include <string.h>
#include "../libc3/cfn.h"
#include "../libc3/list.h"
#include "../libc3/sym.h"
#include "../libc3/tag.h"
#include "test.h"
/* 1 */
bool cfn_test_not (bool a);
/* 2 */
void cfn_test_apply ();
void cfn_test_copy ();
void cfn_test_init_clean ();
void cfn_test_link ();
void cfn_test_prep_cif ();
/* 3 */
void cfn_test ();
void cfn_test ()
{
cfn_test_init_clean();
cfn_test_copy();
cfn_test_link();
cfn_test_prep_cif();
cfn_test_apply();
}
void cfn_test_apply ()
{
s_list *args;
s_tag result;
s_cfn a;
cfn_init(&a, sym_1("cfn_test_not"),
list_1("(:bool)"),
sym_1("bool"));
cfn_link(&a);
cfn_prep_cif(&a);
args = list_new(NULL, NULL);
tag_init_bool(&args->tag, false);
TEST_EQ(cfn_apply(&a, args, &result), &result);
TEST_EQ(result.type.type, TAG_BOOL);
TEST_EQ(result.data.bool, true);
list_delete_all(args);
cfn_clean(&a);
}
void cfn_test_copy ()
{
s_cfn a;
s_list *a_arg_types;
s_cfn b;
s_list *b_arg_types;
cfn_init(&a, sym_1("cfn_test_not"),
list_1("(:bool)"),
sym_1("bool"));
TEST_EQ(cfn_copy(&a, &b), &b);
TEST_EQ(a.name, b.name);
TEST_EQ(a.ptr.p, b.ptr.p);
TEST_EQ(a.arity, b.arity);
TEST_EQ(a.result_type, b.result_type);
TEST_EQ(a.arg_result, b.arg_result);
a_arg_types = a.arg_types;
b_arg_types = b.arg_types;
while (a_arg_types && b_arg_types) {
TEST_EQ(a_arg_types->tag.type.type, TAG_SYM);
TEST_EQ(a_arg_types->tag.type.type, b_arg_types->tag.type.type);
TEST_EQ(a_arg_types->tag.data.sym, b_arg_types->tag.data.sym);
a_arg_types = list_next(a_arg_types);
b_arg_types = list_next(b_arg_types);
}
TEST_EQ(a.cif.abi, b.cif.abi);
TEST_EQ(a.cif.nargs, b.cif.nargs);
TEST_EQ(memcmp(a.cif.arg_types, b.cif.arg_types,
a.cif.nargs * sizeof(ffi_type *)), 0);
TEST_EQ(a.cif.rtype, b.cif.rtype);
TEST_EQ(a.cif.bytes, b.cif.bytes);
TEST_EQ(a.cif.flags, b.cif.flags);
cfn_clean(&b);
cfn_clean(&a);
}
void cfn_test_init_clean ()
{
s_cfn a;
TEST_EQ(cfn_init(&a, sym_1("cfn_test_not"),
list_1("(:bool)"),
sym_1("bool")), &a);
TEST_EQ(a.name, sym_1("cfn_test_not"));
TEST_EQ(a.ptr.f, 0);
TEST_EQ(a.ptr.p, 0);
TEST_EQ(a.arity, 1);
TEST_EQ(a.result_type, sym_1("bool"));
TEST_EQ(a.arg_result, false);
TEST_EQ(a.arg_types->tag.type.type, TAG_SYM);
TEST_EQ(a.arg_types->tag.data.sym, sym_1("bool"));
TEST_EQ(a.arg_types->next.type.type, TAG_LIST);
TEST_EQ(a.arg_types->next.data.list, NULL);
TEST_EQ(a.cif.abi, 0);
TEST_EQ(a.cif.nargs, 0);
TEST_EQ(a.cif.arg_types, 0);
TEST_EQ(a.cif.rtype, 0);
TEST_EQ(a.cif.bytes, 0);
TEST_EQ(a.cif.flags, 0);
cfn_clean(&a);
test_ok();
}
void cfn_test_link ()
{
s_cfn a;
s_cfn b;
cfn_init(&a, sym_1("cfn_test_not"),
list_1("(:bool)"),
sym_1("bool"));
b = a;
TEST_EQ(cfn_link(&a), &a);
TEST_EQ(a.name, b.name);
TEST_EQ(a.ptr.f, &cfn_test_not);
TEST_EQ(a.arity, b.arity);
TEST_EQ(a.result_type, b.result_type);
TEST_EQ(a.arg_result, b.arg_result);
TEST_EQ(a.arg_types, b.arg_types);
TEST_EQ(a.cif.abi, b.cif.abi);
TEST_EQ(a.cif.nargs, b.cif.nargs);
TEST_EQ(a.cif.arg_types, b.cif.arg_types);
TEST_EQ(a.cif.rtype, b.cif.rtype);
TEST_EQ(a.cif.bytes, b.cif.bytes);
TEST_EQ(a.cif.flags, b.cif.flags);
cfn_clean(&a);
}
bool cfn_test_not (bool a)
{
return a ? false : true;
}
void cfn_test_prep_cif ()
{
s_cfn a;
s_cfn b;
cfn_init(&a, sym_1("cfn_test_not"),
list_1("(:bool)"),
sym_1("bool"));
b = a;
TEST_EQ(cfn_prep_cif(&a), &a);
TEST_EQ(a.name, b.name);
TEST_EQ(a.ptr.f, b.ptr.f);
TEST_EQ(a.ptr.p, b.ptr.p);
TEST_EQ(a.arity, b.arity);
TEST_EQ(a.result_type, b.result_type);
TEST_EQ(a.arg_result, b.arg_result);
TEST_EQ(a.arg_types, b.arg_types);
TEST_EQ(a.cif.nargs, 1);
TEST_ASSERT(a.cif.arg_types);
TEST_EQ(a.cif.arg_types[0], &ffi_type_uint8);
TEST_EQ(a.cif.rtype, &ffi_type_uint8);
cfn_clean(&a);
}