#include #include #include "contact_list.h" static void beforetest(void) { contact_list_clear(); } static void empty_list_when_none_added(void) { contact_list_t *list = get_contact_list(); assert_int_equals(0, list->size); } static void contains_one_element(void) { contact_list_add("James", NULL, NULL); contact_list_t *list = get_contact_list(); assert_int_equals(1, list->size); } static void first_element_correct(void) { contact_list_add("James", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; assert_string_equals("James", james->name); } static void contains_two_elements(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_t *list = get_contact_list(); assert_int_equals(2, list->size); } static void first_and_second_elements_correct(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; contact_t *dave = list->contacts[1]; assert_string_equals("James", james->name); assert_string_equals("Dave", dave->name); } static void contains_three_elements(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_t *list = get_contact_list(); assert_int_equals(3, list->size); } static void first_three_elements_correct(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; contact_t *dave = list->contacts[1]; contact_t *bob = list->contacts[2]; assert_string_equals("James", james->name); assert_string_equals("Dave", dave->name); assert_string_equals("Bob", bob->name); } static void add_twice_at_beginning_adds_once(void) { contact_list_add("James", NULL, NULL); contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; contact_t *dave = list->contacts[1]; contact_t *bob = list->contacts[2]; assert_int_equals(3, list->size); assert_string_equals("James", james->name); assert_string_equals("Dave", dave->name); assert_string_equals("Bob", bob->name); } static void add_twice_in_middle_adds_once(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("James", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; contact_t *dave = list->contacts[1]; contact_t *bob = list->contacts[2]; assert_int_equals(3, list->size); assert_string_equals("James", james->name); assert_string_equals("Dave", dave->name); assert_string_equals("Bob", bob->name); } static void add_twice_at_end_adds_once(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_add("James", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; contact_t *dave = list->contacts[1]; contact_t *bob = list->contacts[2]; assert_int_equals(3, list->size); assert_string_equals("James", james->name); assert_string_equals("Dave", dave->name); assert_string_equals("Bob", bob->name); } static void remove_when_none_does_nothing(void) { contact_list_remove("James"); contact_list_t *list = get_contact_list(); assert_int_equals(0, list->size); } static void remove_when_one_removes(void) { contact_list_add("James", NULL, NULL); contact_list_remove("James"); contact_list_t *list = get_contact_list(); assert_int_equals(0, list->size); } static void remove_first_when_two(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_remove("James"); contact_list_t *list = get_contact_list(); assert_int_equals(1, list->size); contact_t *dave = list->contacts[0]; assert_string_equals("Dave", dave->name); } static void remove_second_when_two(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_remove("Dave"); contact_list_t *list = get_contact_list(); assert_int_equals(1, list->size); contact_t *james = list->contacts[0]; assert_string_equals("James", james->name); } static void remove_first_when_three(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_remove("James"); contact_list_t *list = get_contact_list(); assert_int_equals(2, list->size); contact_t *dave = list->contacts[0]; contact_t *bob = list->contacts[1]; assert_string_equals("Dave", dave->name); assert_string_equals("Bob", bob->name); } static void remove_second_when_three(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_remove("Dave"); contact_list_t *list = get_contact_list(); assert_int_equals(2, list->size); contact_t *james = list->contacts[0]; contact_t *bob = list->contacts[1]; assert_string_equals("James", james->name); assert_string_equals("Bob", bob->name); } static void remove_third_when_three(void) { contact_list_add("James", NULL, NULL); contact_list_add("Dave", NULL, NULL); contact_list_add("Bob", NULL, NULL); contact_list_remove("Bob"); contact_list_t *list = get_contact_list(); assert_int_equals(2, list->size); contact_t *james = list->contacts[0]; contact_t *dave = list->contacts[1]; assert_string_equals("James", james->name); assert_string_equals("Dave", dave->name); } static void test_show_when_value(void) { contact_list_add("James", "away", NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; assert_string_equals("away", james->show); } static void test_show_online_when_no_value(void) { contact_list_add("James", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; assert_string_equals("online", james->show); } static void test_show_online_when_empty_string(void) { contact_list_add("James", "", NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; assert_string_equals("online", james->show); } static void test_status_when_value(void) { contact_list_add("James", NULL, "I'm not here right now"); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; assert_string_equals("I'm not here right now", james->status); } static void test_status_when_no_value(void) { contact_list_add("James", NULL, NULL); contact_list_t *list = get_contact_list(); contact_t *james = list->contacts[0]; assert_is_null(james->status); } void register_contact_list_tests(void) { TEST_MODULE("contact_list tests"); BEFORETEST(beforetest); TEST(empty_list_when_none_added); TEST(contains_one_element); TEST(first_element_correct); TEST(contains_two_elements); TEST(first_and_second_elements_correct); TEST(contains_three_elements); TEST(first_three_elements_correct); TEST(add_twice_at_beginning_adds_once); TEST(add_twice_in_middle_adds_once); TEST(add_twice_at_end_adds_once); TEST(remove_when_none_does_nothing); TEST(remove_when_one_removes); TEST(remove_first_when_two); TEST(remove_second_when_two); TEST(remove_first_when_three); TEST(remove_second_when_three); TEST(remove_third_when_three); TEST(test_show_when_value); TEST(test_show_online_when_no_value); TEST(test_show_online_when_empty_string); TEST(test_status_when_value); TEST(test_status_when_no_value); }