1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-07 18:04:15 -04:00
profanity/test_prof_history.c

96 lines
2.5 KiB
C
Raw Normal View History

2012-04-29 20:09:42 -04:00
#include <stdio.h>
#include <head-unit.h>
#include "prof_history.h"
2012-04-29 21:36:45 -04:00
void previous_on_empty_returns_current(void)
2012-04-29 20:09:42 -04:00
{
PHistory history = p_history_new(10);
2012-04-29 21:36:45 -04:00
char *item = p_history_previous(history, "inp");
2012-04-29 20:09:42 -04:00
2012-04-29 21:36:45 -04:00
assert_string_equals("inp", item);
2012-04-29 20:09:42 -04:00
}
void next_on_empty_returns_null(void)
{
PHistory history = p_history_new(10);
2012-04-29 21:36:45 -04:00
char *item = p_history_next(history, "inp");
2012-04-29 20:09:42 -04:00
assert_is_null(item);
}
void previous_once_returns_last(void)
{
PHistory history = p_history_new(10);
p_history_append(history, "Hello");
2012-04-29 21:36:45 -04:00
char *item = p_history_previous(history, "inp");
2012-04-29 20:09:42 -04:00
assert_string_equals("Hello", item);
}
void previous_twice_when_one_returns_first(void)
{
PHistory history = p_history_new(10);
p_history_append(history, "Hello");
2012-04-29 21:36:45 -04:00
char *item1 = p_history_previous(history, NULL);
char *item2 = p_history_previous(history, item1);
2012-04-29 20:09:42 -04:00
2012-04-29 21:36:45 -04:00
assert_string_equals("Hello", item2);
}
void previous_always_stops_at_first(void)
{
PHistory history = p_history_new(10);
p_history_append(history, "Hello");
char *item1 = p_history_previous(history, NULL);
char *item2 = p_history_previous(history, item1);
char *item3 = p_history_previous(history, item2);
char *item4 = p_history_previous(history, item3);
char *item5 = p_history_previous(history, item4);
char *item6 = p_history_previous(history, item5);
assert_string_equals("Hello", item6);
}
void previous_goes_to_correct_element(void)
{
PHistory history = p_history_new(10);
p_history_append(history, "Hello");
p_history_append(history, "world");
p_history_append(history, "whats");
p_history_append(history, "going");
p_history_append(history, "on");
p_history_append(history, "here");
char *item1 = p_history_previous(history, NULL);
char *item2 = p_history_previous(history, item1);
char *item3 = p_history_previous(history, item2);
assert_string_equals("going", item3);
}
void prev_then_next_returns_null(void)
{
PHistory history = p_history_new(10);
p_history_append(history, "Hello");
char *item1 = p_history_previous(history, NULL);
char *item2 = p_history_next(history, item1);
assert_is_null(item2);
2012-04-29 20:09:42 -04:00
}
void register_prof_history_tests(void)
{
TEST_MODULE("prof_history tests");
2012-04-29 21:36:45 -04:00
TEST(previous_on_empty_returns_current);
2012-04-29 20:09:42 -04:00
TEST(next_on_empty_returns_null);
TEST(previous_once_returns_last);
TEST(previous_twice_when_one_returns_first);
2012-04-29 21:36:45 -04:00
TEST(previous_always_stops_at_first);
TEST(previous_goes_to_correct_element);
TEST(prev_then_next_returns_null);
2012-04-29 20:09:42 -04:00
}