#include #include #include #include #include #include #include #include #include #include "proftest.h" void sends_room_join(void **state) { prof_connect(); prof_input("/join testroom@conference.localhost"); assert_true(stbbr_last_received( "" "" "" "" )); } void sends_room_join_with_nick(void **state) { prof_connect(); prof_input("/join testroom@conference.localhost nick testnick"); assert_true(stbbr_last_received( "" "" "" "" )); } void sends_room_join_with_password(void **state) { prof_connect(); prof_input("/join testroom@conference.localhost password testpassword"); assert_true(stbbr_last_received( "" "" "testpassword" "" "" "" )); } void sends_room_join_with_nick_and_password(void **state) { prof_connect(); prof_input("/join testroom@conference.localhost nick testnick password testpassword"); assert_true(stbbr_last_received( "" "" "testpassword" "" "" "" )); } void shows_role_and_affiliation_on_join(void **state) { prof_connect(); stbbr_for_id("prof_join_4", "" "" "" "" "" "" "" ); prof_input("/join testroom@conference.localhost"); assert_true(prof_output_exact("-> You have joined the room as stabber, role: participant, affiliation: none")); } void shows_subject_on_join(void **state) { prof_connect(); stbbr_for_id("prof_join_4", "" "" "" "" "" "" "" ); prof_input("/join testroom@conference.localhost"); assert_true(prof_output_exact("-> You have joined the room as stabber, role: participant, affiliation: none")); stbbr_send( "" "Test room subject" "anothernick has set the subject to: Test room subject" "" ); assert_true(prof_output_regex("Room subject: .+Test room subject")); } void shows_history_message(void **state) { prof_connect(); stbbr_for_id("prof_join_4", "" "" "" "" "" "" "" ); prof_input("/join testroom@conference.localhost"); assert_true(prof_output_exact("-> You have joined the room as stabber, role: participant, affiliation: none")); stbbr_send( "" "an old message" "" "" "" ); assert_true(prof_output_regex("testoccupant: an old message")); } void shows_occupant_join(void **state) { prof_connect(); stbbr_for_id("prof_join_4", "" "" "" "" "" "" "" ); prof_input("/join testroom@conference.localhost"); assert_true(
#ifndef FRAMEBUFFER_H
#define FRAMEBUFFER_H

#include "common.h"

enum EnFrameBuferIoctl {
    FB_GET_WIDTH,
    FB_GET_HEIGHT,
    FB_GET_BITSPERPIXEL
};

void initializeFrameBuffer(uint8* p_address, uint8* v_address);

#endif // FRAMEBUFFER_H
ther message" "" ); prof_timeout(2); assert_false(prof_output_exact("<< room message: testroom@conference.localhost (win 2)")); prof_timeout_reset(); } void shows_no_message_in_console_when_window_not_focussed(void **state) { prof_connect(); prof_input("/console muc none"); assert_true(prof_output_exact("Console MUC messages set: none")); stbbr_for_id("prof_join_4", "" "" "" "" "" "" "" ); prof_input("/join testroom@conference.localhost"); assert_true(prof_output_exact("-> You have joined the room as stabber, role: participant, affiliation: none")); prof_input("/win 1"); assert_true(prof_output_exact("Profanity. Type /help for help information.")); stbbr_send( "" "a new message" "" ); prof_timeout(2); assert_false(prof_output_exact("testroom@conference.localhost (win 2)")); prof_timeout_reset(); }