Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
liblinphone
Commits
a3f728d8
Commit
a3f728d8
authored
Nov 26, 2014
by
Guillaume BIENKOWSKI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test the history range function thoroughly
parent
e87403f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
+54
-0
tester/message_tester.c
tester/message_tester.c
+54
-0
No files found.
tester/message_tester.c
View file @
a3f728d8
...
...
@@ -1024,6 +1024,59 @@ static void message_storage_migration() {
remove
(
tmp_db
);
}
static
void
history_message_count_helper
(
LinphoneChatRoom
*
chatroom
,
int
x
,
int
y
,
int
expected
){
MSList
*
messages
=
linphone_chat_room_get_history_range
(
chatroom
,
x
,
y
);
int
size
=
ms_list_size
(
messages
);
if
(
expected
!=
size
){
ms_warning
(
"History retrieved from %d to %d returned %d records, but expected %d"
,
x
,
y
,
size
,
expected
);
}
CU_ASSERT_EQUAL
(
size
,
expected
);
ms_list_free_with_data
(
messages
,
(
void
(
*
)(
void
*
))
linphone_chat_message_unref
);
}
static
void
history_range_full_test
(){
LinphoneCoreManager
*
marie
=
linphone_core_manager_new
(
"marie_rc"
);
LinphoneAddress
*
jehan_addr
=
linphone_address_new
(
"<sip:Jehan@sip.linphone.org>"
);
LinphoneChatRoom
*
chatroom
;
char
src_db
[
256
];
char
tmp_db
[
256
];
snprintf
(
src_db
,
sizeof
(
src_db
),
"%s/messages.db"
,
liblinphone_tester_file_prefix
);
snprintf
(
tmp_db
,
sizeof
(
tmp_db
),
"%s/tmp.db"
,
liblinphone_tester_writable_dir_prefix
);
CU_ASSERT_EQUAL_FATAL
(
message_tester_copy_file
(
src_db
,
tmp_db
),
0
);
linphone_core_set_chat_database_path
(
marie
->
lc
,
tmp_db
);
chatroom
=
linphone_core_get_chat_room
(
marie
->
lc
,
jehan_addr
);
CU_ASSERT_PTR_NOT_NULL
(
chatroom
);
if
(
chatroom
){
// We have 20 tests to perform to fully qualify the function, here they are:
history_message_count_helper
(
chatroom
,
0
,
0
,
1
);
history_message_count_helper
(
chatroom
,
-
1
,
0
,
1
);
history_message_count_helper
(
chatroom
,
0
,
-
1
,
1270
);
history_message_count_helper
(
chatroom
,
1
,
3
,
3
);
history_message_count_helper
(
chatroom
,
3
,
1
,
1270
-
3
);
history_message_count_helper
(
chatroom
,
10
,
10
,
1
);
history_message_count_helper
(
chatroom
,
-
1
,
-
1
,
1270
);
history_message_count_helper
(
chatroom
,
-
1
,
-
2
,
1270
);
history_message_count_helper
(
chatroom
,
-
2
,
-
1
,
1270
);
history_message_count_helper
(
chatroom
,
3
,
-
1
,
1270
-
3
);
history_message_count_helper
(
chatroom
,
1
,
-
3
,
1270
-
1
);
history_message_count_helper
(
chatroom
,
2
,
-
2
,
1270
-
2
);
history_message_count_helper
(
chatroom
,
2
,
0
,
1270
-
2
);
history_message_count_helper
(
chatroom
,
0
,
2
,
3
);
history_message_count_helper
(
chatroom
,
-
1
,
3
,
4
);
history_message_count_helper
(
chatroom
,
-
2
,
2
,
3
);
history_message_count_helper
(
chatroom
,
-
3
,
1
,
2
);
}
linphone_core_manager_destroy
(
marie
);
linphone_address_destroy
(
jehan_addr
);
remove
(
tmp_db
);
}
static
void
history_messages_count
()
{
LinphoneCoreManager
*
marie
=
linphone_core_manager_new
(
"marie_rc"
);
LinphoneAddress
*
jehan_addr
=
linphone_address_new
(
"<sip:Jehan@sip.linphone.org>"
);
...
...
@@ -1107,6 +1160,7 @@ test_t message_tests[] = {
#ifdef MSG_STORAGE_ENABLED
,{
"Database migration"
,
message_storage_migration
}
,{
"History count"
,
history_messages_count
}
,{
"History range"
,
history_range_full_test
}
#endif
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment