mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-12 18:01:14 +01:00
4ae947ff99
- Structure unit tests into multiple modules - Add setup/teardown of fixtures - Add ability to capture and check stdout and stderr - Add mock handling to Makefile
112 lines
2.7 KiB
C
112 lines
2.7 KiB
C
/*
|
|
* boxes - Command line filter to draw/remove ASCII boxes around text
|
|
* Copyright (c) 1999-2021 Thomas Jensen and the boxes contributors
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License, version 2, as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*/
|
|
|
|
/*
|
|
* Mocks of boxes' global variables.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <locale.h>
|
|
#include <uniconv.h>
|
|
#include "boxes.h"
|
|
#include "unicode.h"
|
|
#include "tools.h"
|
|
|
|
design_t *designs = NULL;
|
|
|
|
int num_designs = 0;
|
|
|
|
opt_t opt;
|
|
|
|
input_t input;
|
|
|
|
char **collect_out = NULL;
|
|
int collect_out_size = 0;
|
|
|
|
char **collect_err = NULL;
|
|
int collect_err_size = 0;
|
|
|
|
|
|
void collect_reset()
|
|
{
|
|
for (int i = 0; i < collect_out_size; i++) {
|
|
BFREE(collect_out[i]);
|
|
}
|
|
BFREE(collect_out);
|
|
|
|
for (int i = 0; i < collect_err_size; i++) {
|
|
BFREE(collect_err[i]);
|
|
}
|
|
BFREE(collect_err);
|
|
|
|
collect_out_size = 0;
|
|
collect_err_size = 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* Mock of the `fprintf()` function which records its output instead of printing it. Assumes that no output string will
|
|
* be longer than 512 characters.
|
|
* @param __stream `stdout` or `stderr`
|
|
* @param __format the format string, followed by the arguments
|
|
*/
|
|
void __wrap_fprintf(FILE *__stream, const char *__format, ...)
|
|
{
|
|
char **collect = __stream == stdout ? collect_out : collect_err;
|
|
int collect_size = __stream == stdout ? collect_out_size : collect_err_size;
|
|
collect = (char **) realloc(collect, ++collect_size * sizeof(char *));
|
|
|
|
char *s = (char *) malloc(512);
|
|
va_list va;
|
|
va_start(va, __format);
|
|
vsprintf(s, __format, va);
|
|
va_end(va);
|
|
collect[collect_size - 1] = s;
|
|
|
|
if (__stream == stdout) {
|
|
collect_out = collect;
|
|
collect_out_size = collect_size;
|
|
}
|
|
else {
|
|
collect_err = collect;
|
|
collect_err_size = collect_size;
|
|
}
|
|
}
|
|
|
|
|
|
void setup_mocks()
|
|
{
|
|
setlocale(LC_ALL, "");
|
|
encoding = check_encoding("UTF-8", locale_charset());
|
|
collect_reset();
|
|
}
|
|
|
|
|
|
void teardown()
|
|
{
|
|
collect_reset();
|
|
}
|
|
|
|
|
|
/*EOF*/ /* vim: set cindent sw=4: */
|