2012-05-26 14:23:18 +00:00
|
|
|
|
/*-
|
2017-05-01 15:02:58 +00:00
|
|
|
|
* Copyright (c) 2012-2017 Dag-Erling Smørgrav
|
2012-05-26 14:23:18 +00:00
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
2013-09-07 16:15:30 +00:00
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2012-05-26 14:23:18 +00:00
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote
|
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
|
* permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*
|
2017-05-01 15:02:58 +00:00
|
|
|
|
* $OpenPAM: t_openpam_readlinev.c 938 2017-04-30 21:34:42Z des $
|
2012-05-26 14:23:18 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include "config.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <err.h>
|
2017-02-19 21:00:46 +00:00
|
|
|
|
#include <stdint.h>
|
2012-05-26 14:23:18 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2017-02-19 21:00:46 +00:00
|
|
|
|
#include <cryb/test.h>
|
|
|
|
|
|
2012-05-26 14:23:18 +00:00
|
|
|
|
#include <security/pam_appl.h>
|
|
|
|
|
#include <security/openpam.h>
|
|
|
|
|
|
|
|
|
|
#include "openpam_impl.h"
|
2017-02-19 21:00:46 +00:00
|
|
|
|
|
|
|
|
|
#define T_FUNC(n, d) \
|
|
|
|
|
static const char *t_ ## n ## _desc = d; \
|
|
|
|
|
static int t_ ## n ## _func(OPENPAM_UNUSED(char **desc), \
|
|
|
|
|
OPENPAM_UNUSED(void *arg))
|
|
|
|
|
|
|
|
|
|
#define T(n) \
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_add_test(&t_ ## n ## _func, NULL, "%s", t_ ## n ## _desc)
|
2012-05-26 14:23:18 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Read a line from the temp file and verify that the result matches our
|
|
|
|
|
* expectations: whether a line was read at all, how many and which words
|
|
|
|
|
* it contained, how many lines were read (in case of quoted or escaped
|
|
|
|
|
* newlines) and whether we reached the end of the file.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2013-09-07 16:15:30 +00:00
|
|
|
|
orlv_expect(struct t_file *tf, const char **expectedv, int lines, int eof)
|
2012-05-26 14:23:18 +00:00
|
|
|
|
{
|
|
|
|
|
int expectedc, gotc, i, lineno = 0;
|
|
|
|
|
char **gotv;
|
2017-02-19 21:00:46 +00:00
|
|
|
|
int ret;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 1;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
expectedc = 0;
|
|
|
|
|
if (expectedv != NULL)
|
|
|
|
|
while (expectedv[expectedc] != NULL)
|
|
|
|
|
++expectedc;
|
2013-09-07 16:15:30 +00:00
|
|
|
|
gotv = openpam_readlinev(tf->file, &lineno, &gotc);
|
|
|
|
|
if (t_ferror(tf))
|
|
|
|
|
err(1, "%s(): %s", __func__, tf->name);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
if (expectedv != NULL && gotv == NULL) {
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_printv("expected %d words, got nothing\n", expectedc);
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 0;
|
|
|
|
|
} else if (expectedv == NULL && gotv != NULL) {
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_printv("expected nothing, got %d words\n", gotc);
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 0;
|
|
|
|
|
} else if (expectedv != NULL && gotv != NULL) {
|
2012-05-26 14:23:18 +00:00
|
|
|
|
if (expectedc != gotc) {
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_printv("expected %d words, got %d\n",
|
2012-05-26 14:23:18 +00:00
|
|
|
|
expectedc, gotc);
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 0;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < gotc; ++i) {
|
|
|
|
|
if (strcmp(expectedv[i], gotv[i]) != 0) {
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_printv("word %d: expected <<%s>>, "
|
2012-05-26 14:23:18 +00:00
|
|
|
|
"got <<%s>>\n", i, expectedv[i], gotv[i]);
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 0;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-19 21:00:46 +00:00
|
|
|
|
FREEV(gotc, gotv);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
if (lineno != lines) {
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_printv("expected to advance %d lines, advanced %d lines\n",
|
2012-05-26 14:23:18 +00:00
|
|
|
|
lines, lineno);
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 0;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
}
|
2013-09-07 16:15:30 +00:00
|
|
|
|
if (eof && !t_feof(tf)) {
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_printv("expected EOF, but didn't get it\n");
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 0;
|
|
|
|
|
} else if (!eof && t_feof(tf)) {
|
2017-05-01 15:02:58 +00:00
|
|
|
|
t_printv("didn't expect EOF, but got it anyway\n");
|
2017-02-19 21:00:46 +00:00
|
|
|
|
ret = 0;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
}
|
2017-02-19 21:00:46 +00:00
|
|
|
|
return (ret);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
|
* Commonly-used lines
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static const char *empty[] = {
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const char *hello[] = {
|
|
|
|
|
"hello",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const char *hello_world[] = {
|
|
|
|
|
"hello",
|
|
|
|
|
"world",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2017-02-19 21:00:46 +00:00
|
|
|
|
static const char *numbers[] = {
|
|
|
|
|
"zero", "one", "two", "three", "four", "five", "six", "seven",
|
|
|
|
|
"eight", "nine", "ten", "eleven", "twelve", "thirteen", "fourteen",
|
|
|
|
|
"fifteen", "sixteen", "seventeen", "nineteen", "twenty",
|
|
|
|
|
"twenty-one", "twenty-two", "twenty-three", "twenty-four",
|
|
|
|
|
"twenty-five", "twenty-six", "twenty-seven", "twenty-eight",
|
|
|
|
|
"twenty-nine", "thirty", "thirty-one", "thirty-two", "thirty-three",
|
|
|
|
|
"thirty-four", "thirty-five", "thirty-six", "thirty-seven",
|
|
|
|
|
"thirty-eight", "thirty-nine", "fourty", "fourty-one", "fourty-two",
|
|
|
|
|
"fourty-three", "fourty-four", "fourty-five", "fourty-six",
|
|
|
|
|
"fourty-seven", "fourty-eight", "fourty-nine", "fifty", "fifty-one",
|
|
|
|
|
"fifty-two", "fifty-three", "fifty-four", "fifty-five", "fifty-six",
|
|
|
|
|
"fifty-seven", "fifty-eight", "fifty-nine", "sixty", "sixty-one",
|
|
|
|
|
"sixty-two", "sixty-three",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2012-05-26 14:23:18 +00:00
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
|
* Lines without words
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
T_FUNC(empty_input, "empty input")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
ret = orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
T_FUNC(empty_line, "empty line")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, "\n");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
T_FUNC(unterminated_empty_line, "unterminated empty line")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, " ");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
T_FUNC(whitespace, "whitespace")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, " \n");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
T_FUNC(comment, "comment")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, "# comment\n");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
T_FUNC(whitespace_before_comment, "whitespace before comment")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, " # comment\n");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-19 21:00:46 +00:00
|
|
|
|
T_FUNC(line_continuation_within_whitespace, "line continuation within whitespace")
|
|
|
|
|
{
|
|
|
|
|
struct t_file *tf;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, "%s \\\n %s\n", hello_world[0], hello_world[1]);
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, hello_world, 2 /*lines*/, 0 /*eof*/) &&
|
|
|
|
|
orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-26 14:23:18 +00:00
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
|
* Simple words
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
T_FUNC(one_word, "one word")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, "hello\n");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, hello, 1 /*lines*/, 0 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
T_FUNC(two_words, "two words")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, "hello world\n");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, hello_world, 1 /*lines*/, 0 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-19 21:00:46 +00:00
|
|
|
|
T_FUNC(many_words, "many words")
|
|
|
|
|
{
|
|
|
|
|
struct t_file *tf;
|
|
|
|
|
const char **word;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
for (word = numbers; *word; ++word)
|
|
|
|
|
t_fprintf(tf, " %s", *word);
|
|
|
|
|
t_fprintf(tf, "\n");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, numbers, 1 /*lines*/, 0 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-26 14:23:18 +00:00
|
|
|
|
T_FUNC(unterminated_line, "unterminated line")
|
|
|
|
|
{
|
2013-09-07 16:15:30 +00:00
|
|
|
|
struct t_file *tf;
|
2012-05-26 14:23:18 +00:00
|
|
|
|
int ret;
|
|
|
|
|
|
2013-09-07 16:15:30 +00:00
|
|
|
|
tf = t_fopen(NULL);
|
|
|
|
|
t_fprintf(tf, "hello world");
|
|
|
|
|
t_frewind(tf);
|
|
|
|
|
ret = orlv_expect(tf, hello_world, 0 /*lines*/, 1 /*eof*/);
|
|
|
|
|
t_fclose(tf);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
return (ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
|
* Boilerplate
|
|
|
|
|
*/
|
|
|
|
|
|
2017-02-19 21:00:46 +00:00
|
|
|
|
static int
|
2012-05-26 14:23:18 +00:00
|
|
|
|
t_prepare(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
(void)argc;
|
|
|
|
|
(void)argv;
|
2017-02-19 21:00:46 +00:00
|
|
|
|
|
|
|
|
|
T(empty_input);
|
|
|
|
|
T(empty_line);
|
|
|
|
|
T(unterminated_empty_line);
|
|
|
|
|
T(whitespace);
|
|
|
|
|
T(comment);
|
|
|
|
|
T(whitespace_before_comment);
|
|
|
|
|
T(line_continuation_within_whitespace);
|
|
|
|
|
|
|
|
|
|
T(one_word);
|
|
|
|
|
T(two_words);
|
|
|
|
|
T(many_words);
|
|
|
|
|
T(unterminated_line);
|
|
|
|
|
|
|
|
|
|
return (0);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-19 21:00:46 +00:00
|
|
|
|
int
|
|
|
|
|
main(int argc, char *argv[])
|
2012-05-26 14:23:18 +00:00
|
|
|
|
{
|
2017-02-19 21:00:46 +00:00
|
|
|
|
|
|
|
|
|
t_main(t_prepare, NULL, argc, argv);
|
2012-05-26 14:23:18 +00:00
|
|
|
|
}
|