1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-04-23 06:32:02 +02:00
jami-client-qt/tests/unittests/contact_unittest.cpp
Ming Rui Zhang e2dbc33ac0 test: enhance the google unit tests of the client
1. Move JAMI_DATA_HOME, JAMI_CONFIG_HOME, JAMI_CACHE_HOME
   setup into individual test main entry
2. Use google test assertion macros instead of Qt
3. Add QT_QPA_FONTDIR to avoid QFont warnings
4. Tests will now fail if the env variables cannot be set

Change-Id: I63f6498d26b646d8ebc60799d8797fd5f13b54f9
2021-07-29 14:17:45 -04:00

107 lines
3.7 KiB
C++

/*
* Copyright (C) 2021 by Savoir-faire Linux
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
*
* 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 <https://www.gnu.org/licenses/>.
*/
#include "globaltestenvironment.h"
TestEnvironment globalEnv;
/*!
* Test fixture for AccountAdapter testing
*/
class ContactFixture : public ::testing::Test
{
public:
// Prepare unit test context. Called at
// prior each unit test execution
void SetUp() override {}
// Close unit test context. Called
// after each unit test ending
void TearDown() override {}
};
/*!
* WHEN Add an SIP contact.
* THEN ContactAdded signal should be emitted once.
*/
TEST_F(ContactFixture, AddSIPContactTest)
{
// AccountAdded signal spy
QSignalSpy accountAddedSpy(&globalEnv.lrcInstance->accountModel(),
&lrc::api::NewAccountModel::accountAdded);
// Create SIP Acc
globalEnv.accountAdapter->createSIPAccount(QVariantMap());
accountAddedSpy.wait();
EXPECT_EQ(accountAddedSpy.count(), 1);
QList<QVariant> accountAddedArguments = accountAddedSpy.takeFirst();
EXPECT_TRUE(accountAddedArguments.at(0).type() == QVariant::String);
// Select the created account
globalEnv.lrcInstance->set_currentAccountId(accountAddedArguments.at(0).toString());
// Make sure the account setup is done
QSignalSpy accountStatusChangedSpy(&globalEnv.lrcInstance->accountModel(),
&lrc::api::NewAccountModel::accountStatusChanged);
accountStatusChangedSpy.wait();
EXPECT_GE(accountStatusChangedSpy.count(), 1);
// ModelUpdated signal spy
QSignalSpy modelUpdatedSpy(globalEnv.lrcInstance->getCurrentContactModel(),
&lrc::api::ContactModel::modelUpdated);
// Add temp contact test
globalEnv.lrcInstance->getCurrentConversationModel()->setFilter("test");
modelUpdatedSpy.wait();
EXPECT_EQ(modelUpdatedSpy.count(), 1);
QList<QVariant> modelUpdatedArguments = modelUpdatedSpy.takeFirst();
EXPECT_TRUE(modelUpdatedArguments.at(0).type() == QVariant::String);
// Get conversation id
auto convId = globalEnv.lrcInstance
->getConversationFromPeerUri(modelUpdatedArguments.at(0).toString())
.uid;
ASSERT_EQ(convId.isEmpty(), false);
// ContactAdded signal spy
QSignalSpy contactAddedSpy(globalEnv.lrcInstance->getCurrentContactModel(),
&lrc::api::ContactModel::contactAdded);
globalEnv.lrcInstance->getCurrentConversationModel()->makePermanent(convId);
contactAddedSpy.wait();
EXPECT_EQ(contactAddedSpy.count(), 1);
// Remove the account
QSignalSpy accountRemovedSpy(&globalEnv.lrcInstance->accountModel(),
&lrc::api::NewAccountModel::accountRemoved);
globalEnv.lrcInstance->accountModel().removeAccount(
globalEnv.lrcInstance->get_currentAccountId());
accountRemovedSpy.wait();
EXPECT_EQ(accountRemovedSpy.count(), 1);
auto accountListSize = globalEnv.lrcInstance->accountModel().getAccountList().size();
ASSERT_EQ(accountListSize, 0);
}