/* -*- mode: C -*- * * File: rec-write-comment-str.c * Date: Mon Nov 15 14:43:35 2010 * * GNU recutils - rec_write_comment_str unit tests. * */ /* Copyright (C) 2010-2022 Jose E. Marchesi */ /* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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, see . */ #include #include #include #include #include /*- * Test: rec_write_comment_str_nominal * Unit: rec_write_comment_str * Description: * + Write comments. */ START_TEST(rec_write_comment_str_nominal) { rec_comment_t comment; char *str; comment = rec_comment_new ("foo bar"); str = rec_write_comment_str (comment, REC_WRITER_NORMAL); rec_comment_destroy (comment); fail_if (strcmp (str, "#foo bar") != 0); free (str); comment = rec_comment_new (""); str = rec_write_comment_str (comment, REC_WRITER_NORMAL); fail_if (str == NULL); rec_comment_destroy (comment); fail_if (strcmp (str, "#") != 0); free (str); } END_TEST /*- * Test: rec_write_comment_str_sexp * Unit: rec_write_comment_str * Description: * + Write comments. */ START_TEST(rec_write_comment_str_sexp) { rec_comment_t comment; char *str; comment = rec_comment_new ("foo bar"); str = rec_write_comment_str (comment, REC_WRITER_SEXP); fail_if (str == NULL); rec_comment_destroy (comment); fail_if (strcmp (str, "(comment \"foo bar\")") != 0); free (str); comment = rec_comment_new (""); str = rec_write_comment_str (comment, REC_WRITER_SEXP); fail_if (str == NULL); rec_comment_destroy (comment); fail_if (strcmp (str, "(comment \"\")") != 0); free (str); } END_TEST /* * Test creation function */ TCase * test_rec_write_comment_str (void) { TCase *tc = tcase_create ("rec_write_comment_str"); tcase_add_test (tc, rec_write_comment_str_nominal); tcase_add_test (tc, rec_write_comment_str_sexp); return tc; } /* End of rec-write-comment-str.c */