aboutsummaryrefslogtreecommitdiff
path: root/tests/main.c
blob: f555e16719080b20f8cdfecfd6064a77d67fbce1 (plain)
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#include "../include/compiler.h"
#include "../include/std/hash_map.h"
#include "../include/std/hash.h"
#include "../include/std/log.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <GLFW/glfw3.h>

static int num_threads = 0;
static int num_successful_tests = 0;
static int num_tests_run = 0;

#define REQUIRE_EQ_INT(expected, actual) do{\
    if((expected) != (actual)) {\
        fprintf(stderr, "%s:%d: Assert failed (%s vs %s).\nExpected %d, got %d.\n", __FILE__, __LINE__, #expected, #actual, (expected), (actual));\
        exit(1);\
    }\
}while(0)

static CHECK_RESULT int test_hash_map(void) {
    ArenaAllocator arena_allocator;
    HashMapType(BufferView, int) hash_map;
    int value;
    bool has_key;
    unsigned char i;

    return_if_error(arena_allocator_init(&arena_allocator));
    cleanup_if_error(hash_map_init(&hash_map, &arena_allocator, sizeof(int), hash_map_compare_string, amal_hash_string));

    value = 34;
    return_if_error(hash_map_insert(&hash_map, create_buffer_view("hello", 5), &value));
    value = 50;
    for(i = 0; i < 128; ++i)
        return_if_error(hash_map_insert(&hash_map, create_buffer_view((const char*)&i, 1), &value));
    return_if_error(hash_map_insert(&hash_map, create_buffer_view("hellp", 5), &value));
    has_key = hash_map_get(&hash_map, create_buffer_view("hello", 5), &value);
    if(!has_key) {
        fprintf(stderr, "Missing value for key \"hello\" in hash map\n");
        exit(1);
    }
    REQUIRE_EQ_INT(34, value);

    cleanup:
    arena_allocator_deinit(&arena_allocator);
    return 0;
}

#define FAIL_TEST(name) do { fprintf(stderr, "Test failed: %s\n", (name)); return; } while(0)
#define FAIL_TEST_CLEANUP(name) do { fprintf(stderr, "Test failed: %s\n", (name)); goto cleanup; } while(0)

typedef struct {
    char *filepath;
    char *expected_error;
    bool got_expected_error;
} ErrorExpectedData;

typedef struct {
    char *filepath;
} ErrorUnexpectedData;

static void error_callback_assert(const char *err_msg, int err_msg_len, void *userdata) {
    ErrorExpectedData *expected_data;
    int expected_err_msg_len;
    expected_data = userdata;
    expected_err_msg_len = strlen(expected_data->expected_error);

    if(expected_data->got_expected_error) {
        fprintf(stderr, "We got the error we expected but also got additional error:\n%.*s\n", err_msg_len, err_msg);
        FAIL_TEST(expected_data->filepath);
    }

    if(err_msg_len != expected_err_msg_len || strncmp(err_msg, expected_data->expected_error, expected_err_msg_len) != 0) {
        fprintf(stderr, "Expected error message:\n%.*s\n", expected_err_msg_len, expected_data->expected_error);
        fprintf(stderr, "Actual error message:\n%.*s\n", err_msg_len, err_msg);
        fprintf(stderr, "a: %d, b: %d\n", expected_err_msg_len, err_msg_len);
        FAIL_TEST(expected_data->filepath);
    }

    expected_data->got_expected_error = bool_true;
}
#if 0
static void error_callback(const char *err_msg, int err_msg_len, void *userdata) {
    ErrorUnexpectedData *data;
    data = userdata;
    fprintf(stderr, "Test failed: %s with error: %.*s\n", data->filepath, err_msg_len, err_msg);
    exit(1);
}
#endif
static char* get_full_path(const char *filepath) {
    #define PATH_LEN 4096
    char *buf;
    int len;
    int filepath_len;

    buf = malloc(PATH_LEN);
    buf[PATH_LEN - 1] = '\0';
    getcwd(buf, PATH_LEN);

    len = strlen(buf);
    filepath_len = strlen(filepath);

    buf[len++] = '/';
    memcpy(buf + len, filepath, filepath_len);
    buf[len + filepath_len] = '\0';
    return buf;
}

static char* join_str(const char *str1, const char *str2, char delimiter) {
    char *buf;
    int len1;
    int len2;

    len1 = strlen(str1);
    len2 = strlen(str2);
    buf = malloc(len1 + 1 + len2 + 1);

    memcpy(buf, str1, len1);
    buf[len1] = delimiter;
    memcpy(buf + len1 + 1, str2, len2);
    buf[len1 + 1 + len2] = '\0';
    return buf;
}

static CHECK_RESULT int get_thread_count_env_var(int *thread_count) {
    char *threads;
    threads = getenv("THREADS");
    if(!threads)
        return -1;
    *thread_count = atoi(threads);
    return 0;
}

static int print_extern(void) {
    printf("hello from amalgam extern func, print_extern!\n");
    return 0;
}

static int print_extern_num(i64 num) {
    printf("hello from amalgam extern func, print_extern_num, value: %ld!\n", num);
    return 0;
}

static void test_load_gl(void) {
    #if 0
    GLFWwindow* window;

    /* Initialize the library */
    if (!glfwInit())
        FAIL_TEST(full_path);

    /* Create a windowed mode window and its OpenGL context */
    window = glfwCreateWindow(640, 480, "Hello World", NULL, NULL);
    if (!window) {
        glfwTerminate();
        FAIL_TEST(full_path);
    }

    /* Make the window's context current */
    glfwMakeContextCurrent(window);

    /* Loop until the user closes the window */
    while (!glfwWindowShouldClose(window))
    {
        /* Render here */
        glClear(GL_COLOR_BUFFER_BIT);
        glClearColor(1.0f, 0.0f, 0.0f, 1.0f);

        /* Swap front and back buffers */
        glfwSwapBuffers(window);

        /* Poll for and process events */
        glfwPollEvents();
    }

    glfwTerminate();
    #endif
    char *full_path = get_full_path("tests/glfw.amal");
    amal_compiler_options options;
    amal_program program;
    int result;

    amal_compiler_options_init(&options);
    options.num_threads = num_threads;
    ++num_tests_run;

    if(amal_program_init(&program) != 0) {
        fprintf(stderr, "Failed to initialize amal program\n");
        FAIL_TEST_CLEANUP(full_path);
    }

    if(amal_program_register_extern_func(&program, create_buffer_view_auto("glfwInit"), glfwInit, 0) != 0) {
        fprintf(stderr, "Unexpected error (alloc failure)\n");
        FAIL_TEST_CLEANUP(full_path);
    }
    if(amal_program_register_extern_func(&program, create_buffer_view_auto("glfwTerminate"), glfwTerminate, 0) != 0) {
        fprintf(stderr, "Unexpected error (alloc failure)\n");
        FAIL_TEST_CLEANUP(full_path);
    }
    if(amal_program_register_extern_func(&program, create_buffer_view_auto("glfwCreateWindow"), glfwCreateWindow, sizeof(int) + sizeof(int) + sizeof(const char*) + sizeof(void*) + sizeof(void*)) != 0) {
        fprintf(stderr, "Unexpected error (alloc failure)\n");
        FAIL_TEST_CLEANUP(full_path);
    }
    if(amal_program_register_extern_func(&program, create_buffer_view_auto("glfwWindowShouldClose"), glfwWindowShouldClose, sizeof(void*)) != 0) {
        fprintf(stderr, "Unexpected error (alloc failure)\n");
        FAIL_TEST_CLEANUP(full_path);
    }

    result = amal_compiler_load_file(&options, &program, full_path);
    if(result != AMAL_COMPILER_OK) {
        fprintf(stderr, "Failed to load file %s, result: %d\n", full_path, result);
        FAIL_TEST_CLEANUP(full_path);
    }

    result = amal_program_run(&program);
    if(result != 0) {
        fprintf(stderr, "Failed to run the program %s, result: %d\n", full_path, result);
        FAIL_TEST_CLEANUP(full_path);
    }

    fprintf(stderr, "Test succeeded as expected: %s\n", full_path);
    ++num_successful_tests;

    cleanup:
    amal_program_deinit(&program);
    free(full_path);
}

static void test_load(const char *filepath) {
    amal_compiler_options options;
    amal_program program;
    char *full_path;
    int result;

    amal_compiler_options_init(&options);
    options.num_threads = num_threads;
    ++num_tests_run;
    full_path = get_full_path(filepath);

    if(amal_program_init(&program) != 0) {
        fprintf(stderr, "Failed to initialize amal program\n");
        FAIL_TEST_CLEANUP(full_path);
    }

    if(amal_program_register_extern_func(&program, create_buffer_view_auto("print_extern"), print_extern, 0) != 0) {
        fprintf(stderr, "Unexpected error (alloc failure)\n");
        FAIL_TEST_CLEANUP(full_path);
    }
    if(amal_program_register_extern_func(&program, create_buffer_view_auto("print_extern_num"), print_extern_num, sizeof(i64)) != 0) {
        fprintf(stderr, "Unexpected error (alloc failure)\n");
        FAIL_TEST_CLEANUP(full_path);
    }
    if(amal_program_register_extern_func(&program, create_buffer_view_auto("printf"), printf, sizeof(const char*)) != 0) {
        fprintf(stderr, "Unexpected error (alloc failure)\n");
        FAIL_TEST_CLEANUP(full_path);
    }

    result = amal_compiler_load_file(&options, &program, filepath);
    if(result != AMAL_COMPILER_OK) {
        fprintf(stderr, "Failed to load file %s, result: %d\n", full_path, result);
        FAIL_TEST_CLEANUP(full_path);
    }

    result = amal_program_run(&program);
    if(result != 0) {
        fprintf(stderr, "Failed to run the program %s, result: %d\n", full_path, result);
        FAIL_TEST_CLEANUP(full_path);
    }

    fprintf(stderr, "Test succeeded as expected: %s\n", full_path);
    ++num_successful_tests;

    cleanup:
    amal_program_deinit(&program);
    free(full_path);
}

static void test_load_error(const char *filepath, const char *expected_error) {
    amal_compiler_options options;
    amal_program program;
    ErrorExpectedData expected_data;

    amal_compiler_options_init(&options);
    options.num_threads = num_threads;
    ++num_tests_run;
    options.error_callback = error_callback_assert;

    expected_data.filepath = get_full_path(filepath);
    if(expected_error) {
        expected_data.expected_error = join_str(expected_data.filepath, expected_error, ':');
        expected_data.got_expected_error = bool_false;
    }
    options.error_callback_userdata = &expected_data;

    if(amal_program_init(&program) != 0) {
        fprintf(stderr, "Failed to initialize amal program\n");
        FAIL_TEST_CLEANUP(expected_data.filepath);
    }
    if(amal_compiler_load_file(&options, &program, filepath) == AMAL_COMPILER_OK) {
        fprintf(stderr, "Successfully loaded file when it was expected to fail\n");
        FAIL_TEST_CLEANUP(expected_data.filepath);
    }

    if(expected_error && !expected_data.got_expected_error) {
        fprintf(stderr, "Didn't get expected error message:\n%s\n", expected_error);
        FAIL_TEST_CLEANUP(expected_data.filepath);
    }

    fprintf(stderr, "Test failed as expected: %s\n", expected_data.filepath);
    ++num_successful_tests;

    cleanup:
    amal_program_deinit(&program);
    free(expected_data.filepath);
    if(expected_error)
        free(expected_data.expected_error);
}

static void run_all_tests(void) {
    test_load("tests/main.amal");
    test_load("tests/utf8bom.amal");
    test_load("tests/bytecode.amal");
    test_load("tests/binop.amal");

    test_load_error("tests/errors/duplicate_declaration.amal", 
        "2:7: error: Variable with the name main was declared twice in the same scope\n"
        "const main = fn {}\n"
        "      ^\n");
    test_load_error("tests/errors/pub_in_closure.amal", 
        "2:5: error: Only declarations in global structs can be public\n"
        "    pub const num = 45;\n"
        "    ^\n");
    test_load_error("tests/errors/closure_no_lhs.amal", 
        "1:1: error: Expected string, variable, closure, struct, function call or import\n"
        "fn {}\n"
        "^\n");
    test_load_error("tests/errors/const_assign.amal", 
        "3:5: error: Can't assign to a const value\n"
        "    value = 34;\n"
        "    ^\n");
    test_load_error("tests/errors/arithmetic_incompatible_types.amal", 
        "4:28: error: Can't cast type \"str\" to type \"i64\"\n"
        "    const value3 = value + value2;\n"
        "                           ^\n"
        "4:20: error: Left-hand side is of type i64\n"
        "    const value3 = value + value2;\n"
        "          ^\n"
        "4:28: error: Right-hand side is of type str\n"
        "    const value3 = value + value2;\n"
        "                           ^\n");
    test_load_error("tests/errors/non_arithmetic_type_arithmetic.amal", 
        "3:20: error: Arithmetic operation can only be performed with the types i8, u8, i16, u16, i32, u32, i64, u64, isize and usize\n"
        "   const value2 = value + value;\n"
        "                  ^\n");
    test_load_error("tests/errors/empty_body_regular_func.amal",
        "1:15: error: Expected function declaration. Only extern functions can have empty declarations.\n"
        "    const func: fn;\n"
        "                  ^\n");
    test_load_error("tests/errors/declaration_no_type.amal",
        "1:8: error: A variable can't be declared without a type or assignment\n"
        "   const a;\n"
        "          ^\n");
    test_load_error("tests/errors/declaration_no_type_extern.amal",
        "1:15: error: A variable can't be declared without a type or assignment\n"
        "   extern const a;\n"
        "                 ^\n");
    test_load_error("tests/errors/no_main_func.amal", NULL);
    test_load_error("tests/errors/closure_duplicate_param_name.amal", "TODO: Add expected error here");
    test_load_error("tests/errors/extern_closure_one_return_value.amal", "TODO: Add expected error here");
    test_load_error("tests/errors/too_long_var_name.amal", "TODO: Add expected error here");
    test_load_error("tests/errors/incorrect_main.amal", "TODO: Add expected error here");
}

/* TODO: Restrict variables in global scope to const */
int main(int argc, char **argv) {
    int result;
    result = get_thread_count_env_var(&num_threads);
    if(result != 0)
        num_threads = 0;

    if(num_threads < 0) {
        amal_log_error("Environment variable THREADS contains invalid number for threads. THREADS has to be at least 0 (0 = use the number of available threads on the system)");
        exit(1);
    }

    /* Sanity check */
    return_if_error(test_hash_map());

    /* Run all tests */
    if(argc == 1) {
        run_all_tests();
    } else if(argc == 2) {
        if(strcmp(argv[1], "opengl") == 0)
            test_load_gl();
        else
            test_load(argv[1]);
    } else {
        fprintf(stderr, "usage: test [test-file-path]\n");
        fprintf(stderr, "If you run test without any files then all tests will run.\n");
        fprintf(stderr, "examples:\n");
        fprintf(stderr, "  test\n");
        fprintf(stderr, "  test tests/main.amal\n");
        exit(1);
    }

    fprintf(stderr, "##### %d/%d tests succeeded #####\n", num_successful_tests, num_tests_run);
    return 0;
}