1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/*
* test_list_elements.c
*
* Tests the CIF API's list value manipulation functions
* cif_value_get_element_at(), cif_value_set_element_at,
* cif_value_insert_element_at(), cif_value_remove_element_at(),
* and cif_value_get_element_count().
*
* Copyright 2014, 2015 John C. Bollinger
*
*
* This file is part of the CIF API.
*
* The CIF API is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The CIF API 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the CIF API. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include "../cif.h"
#include "assert_value.h"
#include "test.h"
int main(void) {
char test_name[80] = "test_list_elements";
cif_value_tp *value = NULL;
cif_value_tp *element1 = NULL;
cif_value_tp *element2 = NULL;
cif_value_tp *element3 = NULL;
UChar *text1;
size_t count;
double d1;
U_STRING_DECL(value_text, "value text", 11);
U_STRING_DECL(value_text2, "value text 2", 13);
U_STRING_INIT(value_text, "value text", 11);
U_STRING_INIT(value_text2, "value text 2", 13);
TESTHEADER(test_name);
/* Start with an empty list value */
TEST(cif_value_create(CIF_LIST_KIND, &value), CIF_OK, test_name, 1);
TEST((value == NULL), 0, test_name, 2);
TEST(cif_value_kind(value), CIF_LIST_KIND, test_name, 3);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 4);
TEST(count, 0, test_name, 5);
/* Test wrong-index actions on an empty list */
TEST(cif_value_get_element_at(value, 0, &element1), CIF_INVALID_INDEX, test_name, 6);
TEST(cif_value_get_element_at(value, -1, &element1), CIF_INVALID_INDEX, test_name, 7);
TEST(cif_value_create(CIF_UNK_KIND, &element1), CIF_OK, test_name, 8);
TEST(cif_value_set_element_at(value, 0, element1), CIF_INVALID_INDEX, test_name, 9);
TEST(cif_value_set_element_at(value, -1, element1), CIF_INVALID_INDEX, test_name, 10);
/* element1 is valid and independent */
/* error results for wrong-type arguments */
TEST(cif_value_kind(element1), CIF_UNK_KIND, test_name, 12);
TEST(cif_value_get_element_at(element1, 0, &element2), CIF_ARGUMENT_ERROR, test_name, 13);
TEST(cif_value_set_element_at(element1, 0, element2), CIF_ARGUMENT_ERROR, test_name, 14);
cif_value_free(element1);
TEST(cif_value_create(CIF_TABLE_KIND, &element1), CIF_OK, test_name, 15);
TEST(cif_value_kind(element1), CIF_TABLE_KIND, test_name, 16);
TEST(cif_value_get_element_at(element1, 0, &element2), CIF_ARGUMENT_ERROR, test_name, 17);
TEST(cif_value_set_element_at(element1, 0, element2), CIF_ARGUMENT_ERROR, test_name, 18);
cif_value_free(element1);
TEST(cif_value_create(CIF_CHAR_KIND, &element1), CIF_OK, test_name, 19);
TEST(cif_value_kind(element1), CIF_CHAR_KIND, test_name, 20);
TEST(cif_value_get_element_at(element1, 0, &element2), CIF_ARGUMENT_ERROR, test_name, 21);
TEST(cif_value_set_element_at(element1, 0, element2), CIF_ARGUMENT_ERROR, test_name, 22);
cif_value_free(element1);
TEST(cif_value_create(CIF_NUMB_KIND, &element1), CIF_OK, test_name, 23);
TEST(cif_value_kind(element1), CIF_NUMB_KIND, test_name, 24);
TEST(cif_value_get_element_at(element1, 0, &element2), CIF_ARGUMENT_ERROR, test_name, 25);
TEST(cif_value_set_element_at(element1, 0, element2), CIF_ARGUMENT_ERROR, test_name, 26);
cif_value_free(element1);
TEST(cif_value_create(CIF_NA_KIND, &element1), CIF_OK, test_name, 27);
TEST(cif_value_kind(element1), CIF_NA_KIND, test_name, 28);
TEST(cif_value_get_element_at(element1, 0, &element2), CIF_ARGUMENT_ERROR, test_name, 29);
TEST(cif_value_set_element_at(element1, 0, element2), CIF_ARGUMENT_ERROR, test_name, 30);
cif_value_free(element1);
/* insertion and retrieval */
/* element 0 */
TEST(cif_value_create(CIF_UNK_KIND, &element1), CIF_OK, test_name, 31);
TEST(cif_value_init_numb(element1, 17.25, 0.125, 3, 5), CIF_OK, test_name, 32);
TEST(cif_value_insert_element_at(value, 0, element1), CIF_OK, test_name, 33);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 34);
TEST(count, 1, test_name, 35);
TEST(cif_value_get_element_at(value, 0, &element2), CIF_OK, test_name, 36);
/* element pointers should be unequal */
TEST(element1 == element2, 0, test_name, 37);
/* element values should be equal */
TEST(!assert_values_equal(element1, element2), 0, test_name, 38);
cif_value_free(element1);
/* cif_value_get_element() should be returning a pointer to its internal value object, not to a clone */
TEST(cif_value_get_element_at(value, 0, &element1), CIF_OK, test_name, 39);
TEST(element1 != element2, 0, test_name, 40);
/* element1 and element2 both belong to the list value */
/* element 1 */
TEST(cif_value_create(CIF_NA_KIND, &element1), CIF_OK, test_name, 41);
TEST(cif_value_insert_element_at(value, 1, element1), CIF_OK, test_name, 42);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 43);
TEST(count, 2, test_name, 44);
TEST(cif_value_get_element_at(value, 1, &element3), CIF_OK, test_name, 45);
TEST(element3 == element1, 0, test_name, 46);
TEST(element3 == element2, 0, test_name, 47);
TEST(cif_value_kind(element3), CIF_NA_KIND, test_name, 48);
TEST(cif_value_get_element_at(value, 0, &element3), CIF_OK, test_name, 49);
TEST(cif_value_kind(element3), CIF_NUMB_KIND, test_name, 50);
TEST(cif_value_get_number(element3, &d1), CIF_OK, test_name, 51);
TEST(d1 != 17.25, 0, test_name, 52);
/* element2 and element3 both belong to the list value */
/* element1 is valid and independent */
/* element 0.5 */
TEST(cif_value_copy_char(element1, value_text), CIF_OK, test_name, 53);
TEST(cif_value_insert_element_at(value, 1, element1), CIF_OK, test_name, 54);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 55);
TEST(count, 3, test_name, 56);
TEST(cif_value_get_element_at(value, 1, &element3), CIF_OK, test_name, 57);
TEST(element3 == element1, 0, test_name, 58);
TEST(element3 == element2, 0, test_name, 59);
TEST(cif_value_kind(element3), CIF_CHAR_KIND, test_name, 60);
TEST(cif_value_get_text(element3, &text1), CIF_OK, test_name, 61);
TEST(u_strcmp(text1, value_text), 0, test_name, 62);
cif_value_free(element1);
free(text1);
/* element2 and element3 both belong to the list value */
/* element1 is invalid (freed) */
/* element -0 */
TEST(cif_value_insert_element_at(value, 0, NULL), CIF_OK, test_name, 63);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 64);
TEST(count, 4, test_name, 65);
TEST(cif_value_get_element_at(value, 0, &element3), CIF_OK, test_name, 66);
TEST(cif_value_init_numb(element3, 42.0, 0.0, 0, 5), CIF_OK, test_name, 67);
TEST(cif_value_kind(element3), CIF_NUMB_KIND, test_name, 68);
TEST(cif_value_get_number(element3, &d1), CIF_OK, test_name, 69);
TEST(d1 != 42.0, 0, test_name, 74);
/* element2 and element3 both belong to the list value */
/* element1 is invalid (freed) */
/* test setting an element to itself */
TEST(cif_value_get_element_at(value, 1, &element1), CIF_OK, test_name, 77);
TEST(cif_value_set_element_at(value, 1, element1), CIF_OK, test_name, 78);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 79);
TEST(count, 4, test_name, 80);
TEST(cif_value_get_element_at(value, 1, &element2), CIF_OK, test_name, 81);
TEST(element1 != element2, 0, test_name, 82);
/* element1, element2, and element3 all belong to the list value */
/* test shortcut for setting an unknown value */
TEST(cif_value_set_element_at(value, 2, NULL), CIF_OK, test_name, 83);
TEST(cif_value_get_element_at(value, 2, &element1), CIF_OK, test_name, 84);
TEST(cif_value_kind(element1), CIF_UNK_KIND, test_name, 85);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 86);
TEST(count, 4, test_name, 87);
/* test setting an existing value */
TEST(cif_value_create(CIF_UNK_KIND, &element3), CIF_OK, test_name, 88);
TEST(cif_value_copy_char(element3, value_text2), CIF_OK, test_name, 89);
TEST(cif_value_set_element_at(value, 2, element3), CIF_OK, test_name, 90);
TEST(cif_value_get_element_at(value, 2, &element1), CIF_OK, test_name, 91);
TEST(element1 == element3, 0, test_name, 92);
TEST(cif_value_get_text(element1, &text1), CIF_OK, test_name, 93);
TEST(u_strcmp(text1, value_text2), 0, test_name, 94);
cif_value_free(element3);
/* element1 and element2 both belong to the list value */
/* element3 is invalid (freed) */
/* test removing the last value */
TEST(cif_value_get_element_at(value, 3, &element3), CIF_OK, test_name, 95);
TEST(cif_value_remove_element_at(value, 3, &element2), CIF_OK, test_name, 96);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 97);
TEST(count, 3, test_name, 98);
TEST(element2 != element3, 0, test_name, 99);
cif_value_free(element2);
/* element1 belongs to the list value */
/* element2 and element3 are invalid (freed) */
/* test removing a middle value */
TEST(cif_value_get_element_at(value, 0, &element1), CIF_OK, test_name, 100);
TEST(cif_value_get_element_at(value, 2, &element2), CIF_OK, test_name, 101);
TEST(cif_value_remove_element_at(value, 1, NULL), CIF_OK, test_name, 102);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 103);
TEST(count, 2, test_name, 104);
TEST(cif_value_get_element_at(value, 0, &element3), CIF_OK, test_name, 105);
TEST(element1 != element3, 0, test_name, 106);
TEST(cif_value_get_element_at(value, 1, &element3), CIF_OK, test_name, 107);
TEST(element2 != element3, 0, test_name, 108);
/* element1, element2, and element3 all belong to the list value */
/* test removing the first value */
TEST(cif_value_remove_element_at(value, 0, NULL), CIF_OK, test_name, 109);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 110);
TEST(count, 1, test_name, 111);
TEST(cif_value_get_element_at(value, 0, &element3), CIF_OK, test_name, 112);
TEST(element2 != element3, 0, test_name, 113);
/* test removing the only value */
TEST(cif_value_remove_element_at(value, 0, NULL), CIF_OK, test_name, 114);
TEST(cif_value_get_element_count(value, &count), CIF_OK, test_name, 115);
TEST(count, 0, test_name, 116);
cif_value_free(value);
return 0;
}
|