mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Improved clean-up logic.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7184 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
3e4a1ed5b5
commit
fb0cb0476a
1 changed files with 18 additions and 11 deletions
|
@ -237,18 +237,25 @@ public abstract class SmackTestCase extends TestCase {
|
|||
super.tearDown();
|
||||
|
||||
for (int i = 0; i < getMaxConnections(); i++) {
|
||||
try {
|
||||
// If not connected, connect so that we can delete the account.
|
||||
if (!getConnection(i).isConnected()) {
|
||||
XMPPConnection con = getConnection(i);
|
||||
con.connect();
|
||||
con.login(getUsername(i), getUsername(i));
|
||||
}
|
||||
else if (!getConnection(i).isAuthenticated()) {
|
||||
getConnection(i).login(getUsername(i), getUsername(i));
|
||||
}
|
||||
// Delete the created account for the test
|
||||
getConnection(i).getAccountManager().deleteAccount();
|
||||
}
|
||||
catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
if (getConnection(i).isConnected()) {
|
||||
// Delete the created account for the test
|
||||
try {
|
||||
getConnection(i).getAccountManager().deleteAccount();
|
||||
}
|
||||
catch (XMPPException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
if (getConnection(i).isConnected()) {
|
||||
// Close the connection
|
||||
getConnection(i).disconnect();
|
||||
}
|
||||
// Close the connection
|
||||
getConnection(i).disconnect();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue