Criterion/samples/redirect.c

58 lines
1.1 KiB
C
Raw Permalink Normal View History

2015-09-11 02:16:54 +02:00
#include <criterion/criterion.h>
#include <criterion/redirect.h>
#include <stdio.h>
2015-09-11 03:16:50 +02:00
#include <ctype.h>
2015-09-11 02:16:54 +02:00
/* Testing stdout/stderr */
2015-09-11 03:16:50 +02:00
void redirect_all_std(void)
{
2015-09-11 02:16:54 +02:00
cr_redirect_stdout();
2015-09-11 03:16:50 +02:00
cr_redirect_stderr();
}
Test(redirect, test_outputs, .init = redirect_all_std) {
2015-09-11 02:16:54 +02:00
fprintf(stdout, "foo");
fflush(stdout);
cr_assert_stdout_eq_str("foo");
2015-09-11 03:16:50 +02:00
fprintf(stderr, "bar");
fflush(stderr);
cr_assert_stderr_eq_str("bar");
2015-09-11 03:16:50 +02:00
}
/* Testing general I/O with sample command-line rot13 */
2015-09-11 03:16:50 +02:00
char rot13_char(char c)
{
2015-09-11 03:16:50 +02:00
return isalpha(c) ? (c - 'a' + 13) % 26 + 'a' : c;
}
void rot13_io(void)
{
2015-09-11 03:16:50 +02:00
char buf[512];
size_t read;
2015-09-11 03:16:50 +02:00
while ((read = fread(buf, 1, sizeof (buf), stdin)) > 0) {
for (size_t i = 0; i < read; ++i)
buf[i] = rot13_char(buf[i]);
fwrite(buf, 1, read, stdout);
}
fflush(stdout);
}
Test(redirect, rot13, .init = cr_redirect_stdout) {
FILE *f_stdin = cr_get_redirected_stdin();
2015-09-11 03:16:50 +02:00
fprintf(f_stdin, "the quick brown fox jumps over the lazy dog");
fclose(f_stdin);
rot13_io();
2015-09-11 02:16:54 +02:00
cr_assert_stdout_eq_str("gur dhvpx oebja sbk whzcf bire gur ynml qbt");
2015-09-11 02:16:54 +02:00
}