79 lines
1.6 KiB
C
79 lines
1.6 KiB
C
#include "greatest.h"
|
|
#include "../input.h"
|
|
|
|
TEST one_pass(void) {
|
|
struct libscomm_input in;
|
|
char s[] = "Arg 1\tArg \r\v\t!\n";
|
|
char *p = s;
|
|
struct libscomm_line l;
|
|
|
|
libscomm_reset(&in);
|
|
ASSERT_EQ(libscomm_read(&in, &p, &l), LIBSCOMM_COMPLETE);
|
|
ASSERT_EQ(l.len, 3);
|
|
ASSERT_EQ(l.name, 0);
|
|
ASSERT_EQ(*p, 0);
|
|
ASSERT_EQ(p, &s[sizeof s - 1]);
|
|
|
|
ASSERT_STR_EQ(l.buf[0], "Arg 1");
|
|
ASSERT_STR_EQ(l.buf[1], "Arg \r\v");
|
|
ASSERT_STR_EQ(l.buf[2], "!");
|
|
|
|
PASS();
|
|
}
|
|
|
|
TEST single_arg_too_large(void) {
|
|
struct libscomm_input in;
|
|
struct libscomm_line l;
|
|
char s[LIBSCOMM_MAXBUF + 12];
|
|
char *p;
|
|
size_t i;
|
|
int ostate;
|
|
|
|
for (i = 0; i < sizeof s; i++)
|
|
s[i] = 'a';
|
|
s[sizeof s - 2] = '\n';
|
|
s[sizeof s - 1] = 0;
|
|
p = s;
|
|
|
|
libscomm_reset(&in);
|
|
ASSERT_EQ(libscomm_read(&in, &p, &l), LIBSCOMM_OVERFLOW);
|
|
ASSERT_EQ(in.len, 0);
|
|
|
|
/* state values are opaque. */
|
|
ostate = in.state;
|
|
libscomm_reset(&in);
|
|
ASSERT_EQ(ostate, in.state);
|
|
PASS();
|
|
}
|
|
|
|
TEST arg_limit(void) {
|
|
struct libscomm_input in;
|
|
struct libscomm_line l;
|
|
char s[] = " 1\t 2\t 3\t 4\t 5\t 6\t 7\t 8\t 9\t 10\t 11\t 12\t 13\t 14\t 15\t 16\t 17\t 18\t 19\t 20\t 21\t 22\t 23\t 24\t 25\t 26\t 27\t 28\t 29\t 30\t 31\t 32\n";
|
|
char *p = s;
|
|
char tbuf[10];
|
|
int i;
|
|
|
|
libscomm_reset(&in);
|
|
ASSERT_EQ(libscomm_read(&in, &p, &l), LIBSCOMM_COMPLETE);
|
|
ASSERT_EQ(l.name, 0);
|
|
ASSERT_EQ(l.len, LIBSCOMM_MAXARG);
|
|
|
|
for (i = 1; i <= l.len; i++) {
|
|
sprintf(tbuf, " %d", i);
|
|
ASSERT_STR_EQ(l.buf[i-1], tbuf);
|
|
}
|
|
|
|
PASS();
|
|
}
|
|
|
|
GREATEST_MAIN_DEFS();
|
|
|
|
int main(int argc, char *argv[]) {
|
|
GREATEST_MAIN_BEGIN();
|
|
RUN_TEST(one_pass);
|
|
RUN_TEST(single_arg_too_large);
|
|
RUN_TEST(arg_limit);
|
|
GREATEST_MAIN_END();
|
|
}
|