2022-05-24 07:14:12 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2022-06-25 11:43:18 -04:00
|
|
|
#define KERNAUX_ACCESS_PROTECTED
|
2022-05-24 07:14:12 -04:00
|
|
|
|
2022-11-28 20:19:35 -05:00
|
|
|
#include <kernaux/macro.h>
|
2022-06-25 11:43:18 -04:00
|
|
|
#include <kernaux/printf.h>
|
2022-06-07 14:08:47 -04:00
|
|
|
|
2022-05-24 07:14:12 -04:00
|
|
|
#include <assert.h>
|
2022-06-25 11:43:18 -04:00
|
|
|
#include <stddef.h>
|
2022-05-24 07:14:12 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define BUFFER_SIZE 1024
|
|
|
|
|
2022-11-26 14:04:36 -05:00
|
|
|
static const char *const data = "foobar";
|
|
|
|
|
2022-05-24 07:14:12 -04:00
|
|
|
static char buffer[BUFFER_SIZE];
|
|
|
|
static size_t buffer_index;
|
|
|
|
|
2022-11-28 20:19:35 -05:00
|
|
|
static void test_putc(char c, KERNAUX_UNUSED void *arg)
|
2022-05-24 07:14:12 -04:00
|
|
|
{
|
|
|
|
if (buffer_index >= BUFFER_SIZE) {
|
|
|
|
printf("Buffer overflow!\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2022-06-25 11:43:18 -04:00
|
|
|
buffer[buffer_index++] = c;
|
2022-05-24 07:14:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test(const char *const expected, const char *const format, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
memset(buffer, '\0', sizeof(buffer));
|
|
|
|
buffer_index = 0;
|
|
|
|
va_start(va, format);
|
2022-11-26 14:04:36 -05:00
|
|
|
result = kernaux_vfprintf(test_putc, (void*)data, format, va);
|
2022-05-24 07:14:12 -04:00
|
|
|
va_end(va);
|
2022-12-01 14:42:43 -05:00
|
|
|
|
|
|
|
printf("Exp: %s\n", expected);
|
|
|
|
printf("Got: %s\n\n", buffer);
|
|
|
|
|
2022-05-24 07:14:12 -04:00
|
|
|
assert((size_t)result == strlen(expected));
|
|
|
|
assert(strcmp(expected, buffer) == 0);
|
|
|
|
|
|
|
|
memset(buffer, '\0', sizeof(buffer));
|
|
|
|
buffer_index = 0;
|
|
|
|
va_start(va, format);
|
|
|
|
result = kernaux_vsnprintf(buffer, sizeof(buffer), format, va);
|
|
|
|
va_end(va);
|
2022-12-01 14:42:43 -05:00
|
|
|
|
2022-05-24 07:14:12 -04:00
|
|
|
assert((size_t)result == strlen(expected));
|
|
|
|
assert(strcmp(expected, buffer) == 0);
|
|
|
|
}
|
|
|
|
|
2022-06-20 14:01:56 -04:00
|
|
|
void test_main()
|
2022-05-24 07:14:12 -04:00
|
|
|
{
|
2022-05-24 07:51:08 -04:00
|
|
|
memset(buffer, '\0', sizeof(buffer));
|
|
|
|
buffer_index = 0;
|
2022-11-26 14:04:36 -05:00
|
|
|
kernaux_fprintf(test_putc, (void*)data, "Hello, World!");
|
2022-05-24 07:51:08 -04:00
|
|
|
assert(strcmp("Hello, World!", buffer) == 0);
|
|
|
|
|
2022-05-24 07:14:12 -04:00
|
|
|
{% for case in cases %}
|
2022-05-24 07:51:08 -04:00
|
|
|
{% if case.float %}
|
|
|
|
#ifdef ENABLE_FLOAT
|
|
|
|
{% endif %}
|
2022-05-24 07:14:12 -04:00
|
|
|
test({{ escape_str(case.result) }}, {{ escape_str(fmt(case.args)) }}{{ values(case.args) }});
|
2022-05-24 07:51:08 -04:00
|
|
|
{% if case.float %}
|
|
|
|
#endif
|
2022-05-24 07:14:12 -04:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
}
|