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
96f21ef1
Commit
96f21ef1
authored
Sep 25, 2017
by
Benjamin REIS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add conference tester
parent
ec1c1dbb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
94 additions
and
1 deletion
+94
-1
tester/CMakeLists.txt
tester/CMakeLists.txt
+2
-1
tester/conference-tester.cpp
tester/conference-tester.cpp
+90
-0
tester/liblinphone_tester.h
tester/liblinphone_tester.h
+1
-0
tester/tester.c
tester/tester.c
+1
-0
No files found.
tester/CMakeLists.txt
View file @
96f21ef1
...
...
@@ -198,6 +198,7 @@ set(SOURCE_FILES_C
set
(
SOURCE_FILES_CXX
clonable-object-tester.cpp
conference-event-tester.cpp
conference-tester.cpp
cpim-tester.cpp
events-db-tester.cpp
property-container-tester.cpp
...
...
@@ -211,7 +212,7 @@ if(APPLE)
endif
()
# TODO: Remove me later!
list
(
REMOVE_ITEM STRICT_OPTIONS_CPP
"-Wconversion"
"-Werror=conversion"
)
list
(
REMOVE_ITEM STRICT_OPTIONS_CPP
"-Wconversion"
"-Werror=conversion"
"-Wcast-align"
"-Werror=cast-align"
)
bc_apply_compile_flags
(
SOURCE_FILES_C STRICT_OPTIONS_CPP STRICT_OPTIONS_C
)
bc_apply_compile_flags
(
SOURCE_FILES_CXX STRICT_OPTIONS_CPP STRICT_OPTIONS_CXX
)
...
...
tester/conference-tester.cpp
0 → 100644
View file @
96f21ef1
/*
* conference-event-tester.cpp
* Copyright (C) 2017 Belledonne Communications SARL
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "linphone/core.h"
#include "private.h"
#include "liblinphone_tester.h"
#include "conference/conference-listener.h"
#include "conference/local-conference.h"
#include "conference/remote-conference.h"
using
namespace
LinphonePrivate
;
using
namespace
std
;
static
string
first_invite
=
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
?>"
"<resource-lists xmlns:xsi=
\"
http://www.w3.org/2001/XMLSchema-instance
\"
xmlns=
\"
urn:ietf:params:xml:ns:resource-lists
\"
>"
"<list>"
" <entry uri=
\"
sip:alice@sip.linphone.org
\"
/>"
" <entry uri=
\"
sip:bob@sip.linphone.org
\"
display-name=
\"
Le Bricoleur
\"
/>"
" <entry uri=
\"
sip:john-doe@sip.linphone.org
\"
/>"
" <entry uri=
\"
sip:anne-onyme@sip.linphone.org
\"
/>"
" <entry uri=
\"
sip:sarah-bache@sip.linphone.org
\"
display-name=
\"
Sarah
\"
/>"
"</list>"
"</resource-lists>"
;
static
string
alice_addr
=
"sip:alice@sip.linphone.org"
;
static
string
bob_addr
=
"sip:bob@sip.linphone.org"
;
static
string
john_addr
=
"sip:john-doe@sip.linphone.org"
;
static
string
anne_addr
=
"sip:anne-onyme@sip.linphone.org"
;
static
string
sarah_addr
=
"sip:sarah-bache@sip.linphone.org"
;
static
string
bob_name
=
"Le Bricoleur"
;
static
string
sarah_name
=
"Sarah"
;
void
first_invite_parsing
()
{
LinphoneCoreManager
*
marie
=
linphone_core_manager_new
(
"marie_rc"
);
Address
marie_identity
(
linphone_address_as_string_uri_only
(
marie
->
identity
));
LocalConference
localConf
(
marie
->
lc
,
marie_identity
);
list
<
shared_ptr
<
Address
>>
addresses
=
localConf
.
parseResourceLists
(
first_invite
);
BC_ASSERT_EQUAL
(
addresses
.
size
(),
5
,
int
,
"%d"
);
if
(
addresses
.
size
()
!=
5
)
{
goto
end
;
}
BC_ASSERT_TRUE
(
addresses
.
front
()
->
asStringUriOnly
()
==
alice_addr
);
addresses
.
pop_front
();
BC_ASSERT_TRUE
(
addresses
.
front
()
->
asStringUriOnly
()
==
bob_addr
);
BC_ASSERT_TRUE
(
addresses
.
front
()
->
getDisplayName
()
==
bob_name
);
addresses
.
pop_front
();
BC_ASSERT_TRUE
(
addresses
.
front
()
->
asStringUriOnly
()
==
john_addr
);
addresses
.
pop_front
();
BC_ASSERT_TRUE
(
addresses
.
front
()
->
asStringUriOnly
()
==
anne_addr
);
addresses
.
pop_front
();
BC_ASSERT_TRUE
(
addresses
.
front
()
->
asStringUriOnly
()
==
sarah_addr
);
BC_ASSERT_TRUE
(
addresses
.
front
()
->
getDisplayName
()
==
sarah_name
);
addresses
.
pop_front
();
end:
linphone_core_manager_destroy
(
marie
);
}
test_t
conference_tests
[]
=
{
TEST_NO_TAG
(
"First invite parsing"
,
first_invite_parsing
)
};
test_suite_t
conference_test_suite
=
{
"Conference"
,
nullptr
,
nullptr
,
liblinphone_tester_before_each
,
liblinphone_tester_after_each
,
sizeof
(
conference_tests
)
/
sizeof
(
conference_tests
[
0
]),
conference_tests
};
tester/liblinphone_tester.h
View file @
96f21ef1
...
...
@@ -44,6 +44,7 @@ extern test_suite_t call_test_suite;
extern
test_suite_t
call_video_test_suite
;
extern
test_suite_t
clonable_object_test_suite
;
extern
test_suite_t
conference_event_test_suite
;
extern
test_suite_t
conference_test_suite
;
extern
test_suite_t
cpim_test_suite
;
extern
test_suite_t
dtmf_test_suite
;
extern
test_suite_t
event_test_suite
;
...
...
tester/tester.c
View file @
96f21ef1
...
...
@@ -565,6 +565,7 @@ void liblinphone_tester_add_suites() {
bc_tester_add_suite
(
&
stun_test_suite
);
bc_tester_add_suite
(
&
event_test_suite
);
bc_tester_add_suite
(
&
conference_event_test_suite
);
bc_tester_add_suite
(
&
conference_test_suite
);
bc_tester_add_suite
(
&
flexisip_test_suite
);
bc_tester_add_suite
(
&
remote_provisioning_test_suite
);
bc_tester_add_suite
(
&
quality_reporting_test_suite
);
...
...
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