X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=t%2Fsrc%2Fupdate_gom.c;h=f529f66e3d9e5c62ec02dfd42268742c00664614;hb=0ba899a49684fbb62d6f1baea4309e716d170d16;hp=58c3877ef33567d118341b10c0e0f6ca93ab11cf;hpb=dca63be420951cd7d9e9301e1e9f9578ea90ff73;p=gedcom-parse.git diff --git a/t/src/update_gom.c b/t/src/update_gom.c index 58c3877..f529f66 100644 --- a/t/src/update_gom.c +++ b/t/src/update_gom.c @@ -213,6 +213,116 @@ int test_date_functions() return 0; } +int test_record_add_delete_functions() +{ + struct family* fam1; + struct individual* ind1; + struct multimedia* mm1; + struct note* note1; + struct repository* repo1; + struct source* sour1; + struct submitter* subm2; + struct submission* subn1; + struct user_rec* user1; + struct xref_value* xr; + int result; + char* value; + const char* new_nr_of_children = "3"; + const char* note_text = "This is some text"; + + fam1 = gom_add_family("@FAM1@"); + if (!fam1) return 201; + + value = gom_set_string(&fam1->nr_of_children, new_nr_of_children); + if (value == NULL) + return 202; + if (strcmp(value, new_nr_of_children)) + return 203; + + ind1 = gom_add_individual("@FAM1@"); + if (ind1) return 204; + + ind1 = gom_add_individual("@IND1@"); + if (!ind1) return 205; + + mm1 = gom_add_multimedia("@OBJ1@"); + if (!mm1) return 206; + + note1 = gom_add_note("@NOTE1@"); + if (!note1) return 207; + + value = gom_set_string(¬e1->text, note_text); + if (value == NULL) + return 208; + if (strcmp(value, note_text)) + return 209; + + repo1 = gom_add_repository("@REPO1@"); + if (!repo1) return 210; + + sour1 = gom_add_source("@SOUR1@"); + if (!sour1) return 211; + + subm2 = gom_add_submitter("@SUBMITTER@"); + if (subm2) return 212; + + subm2 = gom_add_submitter("@SUBM2@"); + if (!subm2) return 213; + + subn1 = gom_add_submission("@SUBMISSION@"); + if (!subn1) return 214; + + user1 = gom_add_user_rec("@USER1@", "WRTAG"); + if (user1) return 215; + + user1 = gom_add_user_rec("@USER1@", "_TAG"); + if (!user1) return 216; + + xr = gom_make_individual_link(ind1); + if (!xr) return 217; + + xr = gom_set_xref_value(&(fam1->husband), xr); + if (!xr) return 218; + + output(0, "Intermediate output:\n"); + show_data(); + + result = gom_delete_individual(ind1); + if (result == 0) return 251; + + xr = gom_set_xref_value(&(fam1->husband), NULL); + if (xr) return 252; + + result = gom_delete_individual(ind1); + if (result != 0) return 253; + + result = gom_delete_family(fam1); + if (result != 0) return 250; + + result = gom_delete_multimedia(mm1); + if (result != 0) return 254; + + result = gom_delete_note(note1); + if (result != 0) return 255; + + result = gom_delete_repository(repo1); + if (result != 0) return 256; + + result = gom_delete_source(sour1); + if (result != 0) return 257; + + result = gom_delete_submitter(subm2); + if (result != 0) return 258; + + result = gom_delete_submission(subn1); + if (result != 0) return 259; + + result = gom_delete_user_rec(user1); + if (result != 0) return 260; + + return 0; +} + int main(int argc, char* argv[]) { int result; @@ -258,6 +368,8 @@ int main(int argc, char* argv[]) result |= test_string_functions(); if (result == 0) result |= test_date_functions(); + if (result == 0) + result |= test_record_add_delete_functions(); if (result == 0) { output(1, "Test succeeded\n"); }