Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
jami-daemon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
131
Issues
131
List
Boards
Labels
Service Desk
Milestones
Iterations
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
savoirfairelinux
jami-daemon
Commits
f8f07467
Commit
f8f07467
authored
Oct 09, 2008
by
Emmanuel Milou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add load/unload sip account tests
parent
81956b96
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
4 deletions
+40
-4
test/configurationTest.cpp
test/configurationTest.cpp
+36
-2
test/configurationTest.h
test/configurationTest.h
+4
-2
No files found.
test/configurationTest.cpp
View file @
f8f07467
...
...
@@ -18,6 +18,7 @@
*/
#include <stdio.h>
#include <sstream>
#include "configurationTest.h"
...
...
@@ -26,7 +27,7 @@ using std::endl;
void
ConfigurationTest
::
setUp
(){
// Load the default configuration
Manager
::
instance
().
initConfigFile
(
false
);
Manager
::
instance
().
initConfigFile
();
}
void
ConfigurationTest
::
testDefaultValueAudio
(){
...
...
@@ -63,7 +64,40 @@ void ConfigurationTest::testDefaultValueSignalisation(){
CPPUNIT_ASSERT
(
Manager
::
instance
().
getConfigString
(
SIGNALISATION
,
SEND_DTMF_AS
)
==
SIP_INFO_STR
);
}
void
ConfigurationTest
::
testLoadAccountMap
(){
void
ConfigurationTest
::
testLoadSIPAccount
(){
AccountMap
accounts
;
Account
*
current
;
std
::
ostringstream
ss
;
// Load the accounts from the user file
Manager
::
instance
().
loadAccountMap
();
// Save the account information
accounts
=
Manager
::
instance
().
_accountMap
;
AccountMap
::
iterator
iter
=
accounts
.
begin
();
while
(
iter
!=
accounts
.
end
()
){
current
=
iter
->
second
;
CPPUNIT_ASSERT
(
iter
->
first
==
current
->
getAccountID
()
);
CPPUNIT_ASSERT
(
0
==
current
->
getVoIPLink
()
);
iter
++
;
}
}
void
ConfigurationTest
::
testUnloadSIPAccount
(){
AccountMap
accounts
;
// Load the accounts from the user file
Manager
::
instance
().
loadAccountMap
();
// Unload the accounts
Manager
::
instance
().
unloadAccountMap
();
// Save the account information
accounts
=
Manager
::
instance
().
_accountMap
;
AccountMap
::
iterator
iter
=
accounts
.
begin
();
if
(
iter
!=
accounts
.
end
()
){
CPPUNIT_FAIL
(
"Unload account map failed
\n
"
);
}
}
test/configurationTest.h
View file @
f8f07467
...
...
@@ -48,7 +48,8 @@ class ConfigurationTest : public CppUnit::TestCase {
CPPUNIT_TEST
(
testDefaultValueAudio
);
CPPUNIT_TEST
(
testDefaultValuePreferences
);
CPPUNIT_TEST
(
testDefaultValueSignalisation
);
CPPUNIT_TEST
(
testLoadAccountMap
);
CPPUNIT_TEST
(
testLoadSIPAccount
);
CPPUNIT_TEST
(
testUnloadSIPAccount
);
CPPUNIT_TEST_SUITE_END
();
public:
...
...
@@ -80,7 +81,8 @@ class ConfigurationTest : public CppUnit::TestCase {
void
testDefaultValueSignalisation
();
void
testLoadAccountMap
();
void
testLoadSIPAccount
();
void
testUnloadSIPAccount
();
};
...
...
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