/* -*- mode: C -*- * * File: rec-write-field-str.c * Date: Mon Nov 15 14:21:12 2010 * * GNU recutils - rec_write_field_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_field_str_nominal * Unit: rec_write_field_str * Description: * + Write fields. */ START_TEST(rec_write_field_str_nominal) { rec_field_t field; char *str; field = rec_field_new ("foo", "value"); fail_if (field == NULL); str = rec_write_field_str (field, REC_WRITER_NORMAL); fail_if (str == NULL); rec_field_destroy (field); fail_if (strcmp (str, "foo: value") != 0); free (str); } END_TEST /*- * Test: rec_write_field_str_sexp * Unit: rec_write_field_str * Description: * + Write fields. */ START_TEST(rec_write_field_str_sexp) { rec_field_t field; char *str; field = rec_field_new ("foo", "value"); fail_if (field == NULL); str = rec_write_field_str (field, REC_WRITER_SEXP); fail_if (str == NULL); rec_field_destroy (field); fail_if (strcmp (str, "(field \"foo\" \"value\")") != 0); free (str); } END_TEST /* * Test creation function */ TCase * test_rec_write_field_str (void) { TCase *tc = tcase_create ("rec_write_field_str"); tcase_add_test (tc, rec_write_field_str_nominal); tcase_add_test (tc, rec_write_field_str_sexp); return tc; } /* End of rec-write-field-str.c */