summaryrefslogtreecommitdiff
path: root/tubes/qa
diff options
context:
space:
mode:
Diffstat (limited to 'tubes/qa')
-rw-r--r--tubes/qa/test-config.ini.example5
-rw-r--r--tubes/qa/test_manager.cxx192
2 files changed, 0 insertions, 197 deletions
diff --git a/tubes/qa/test-config.ini.example b/tubes/qa/test-config.ini.example
deleted file mode 100644
index 2d03ca8f3bb1..000000000000
--- a/tubes/qa/test-config.ini.example
+++ /dev/null
@@ -1,5 +0,0 @@
-# Locally-configured Jabber accounts used by Tubes test suite. These accounts
-# must both be signed in and on each others' contact lists for the tests to
-# work.
-offerer=libo1@localhost.localdomain
-accepter=libo2@localhost.localdomain
diff --git a/tubes/qa/test_manager.cxx b/tubes/qa/test_manager.cxx
deleted file mode 100644
index 11b653eb0ce1..000000000000
--- a/tubes/qa/test_manager.cxx
+++ /dev/null
@@ -1,192 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#include <sal/types.h>
-
-#include <cppunit/TestFixture.h>
-#include <cppunit/extensions/HelperMacros.h>
-#include <cppunit/plugin/TestPlugIn.h>
-
-#include <rtl/bootstrap.hxx>
-#include <rtl/string.hxx>
-#include <rtl/ustring.hxx>
-#include <tubes/collaboration.hxx>
-#include <tubes/manager.hxx>
-#include <unotools/localfilehelper.hxx>
-
-#include <telepathy-glib/telepathy-glib.h>
-
-class TeleConference;
-
-namespace {
-
-class TestTeleTubes: public CppUnit::TestFixture
-{
-public:
-
- virtual void setUp() override;
- virtual void tearDown() override;
-
- void testSession();
-
- // There is only one method because the code in setUp
- // and tearDown is expected to be executed only once.
- CPPUNIT_TEST_SUITE( TestTeleTubes );
- CPPUNIT_TEST( testSession );
- CPPUNIT_TEST_SUITE_END();
-};
-
-class TestCollaboration;
-// static, not members, so they actually survive cppunit test iteration
-static TestCollaboration* mpCollaboration1 = nullptr;
-static TestCollaboration* mpCollaboration2 = nullptr;
-//static bool mbFileSentSuccess = false;
-static bool mbPacketReceived = false;
-static OUString maTestConfigIniURL;
-static OString maOffererIdentifier;
-static OString maAccepterIdentifier;
-
-class TestCollaboration : public Collaboration
-{
- virtual void EndCollaboration() const override {}
- virtual void PacketReceived( const OString& rPacket ) const override
- {
- CPPUNIT_ASSERT( rPacket == "from 1 to 2");
- mbPacketReceived = true;
- }
- virtual void SaveAndSendFile( TpContact* ) const override {}
- virtual void StartCollaboration( TeleConference* ) override {}
-};
-
-gboolean timed_out( void * )
-{
- CPPUNIT_ASSERT_MESSAGE( "Test took longer than ten seconds!", false);
-
- return FALSE;
-}
-
-void TestTeleTubes::setUp()
-{
- g_timeout_add_seconds (10, timed_out, nullptr);
- maTestConfigIniURL = "file://" +
- OUString::createFromAscii( getenv("SRCDIR") ) + "/tubes/qa/test-config.ini";
- rtl::Bootstrap aTestConfig( maTestConfigIniURL );
-
- TeleManager::addSuffixToNames( "TeleTest");
-
- OUString aOffererIdentifier;
- CPPUNIT_ASSERT_MESSAGE( "See README for how to set up test-config.ini",
- aTestConfig.getFrom("offerer", aOffererIdentifier));
- maOffererIdentifier = OUStringToOString( aOffererIdentifier, RTL_TEXTENCODING_UTF8);
-
- OUString aAccepterIdentifier;
- CPPUNIT_ASSERT_MESSAGE( "See README for how to set up test-config.ini",
- aTestConfig.getFrom("accepter", aAccepterIdentifier));
- maAccepterIdentifier = OUStringToOString( aAccepterIdentifier, RTL_TEXTENCODING_UTF8);
-
- mpCollaboration1 = new TestCollaboration();
- mpCollaboration2 = new TestCollaboration();
-
- CPPUNIT_ASSERT( TeleManager::init( true));
-}
-
-/* FIXME: do we need the possibility to pass function to Collaboration::SendFile() ?
-static void lcl_FileSent( bool success, void * )
-{
- mbFileSentSuccess = success;
-}
-*/
-
-void TestTeleTubes::testSession()
-{
- // First try to get account and contact
- AccountContactPairV pairs = TeleManager::getContacts();
- /* Both our accounts are meant to be signed in, and they both should be
- * capable of LibreOffice tubes because this test runs after we register
- * our handler. */
- CPPUNIT_ASSERT_MESSAGE(
- "Make sure both your test accounts are signed in "
- "and are on each other's contact lists",
- pairs.size() > 0 );
-
- TpAccount* mpOffererAccount = nullptr;
- TpContact* mpAccepterContact = nullptr;
-
- for (AccountContactPairV::size_type i = 0; i < pairs.size(); i++)
- {
- AccountContactPair pair = pairs[i];
-
- if (tp_account_get_normalized_name (pair.first) == maOffererIdentifier &&
- tp_contact_get_identifier (pair.second) == maAccepterIdentifier)
- {
- mpOffererAccount = pair.first;
- g_object_ref (mpOffererAccount);
- mpAccepterContact = pair.second;
- g_object_ref (mpAccepterContact);
- }
- g_object_unref (pair.first);
- g_object_unref (pair.second);
- }
-
- CPPUNIT_ASSERT_MESSAGE(
- "Couldn't find offerer account. "
- "Make sure both your test accounts are signed in "
- "and are on each other's contact lists",
- mpOffererAccount);
- CPPUNIT_ASSERT_MESSAGE(
- "Couldn't find accepter contact. "
- "Make sure both your test accounts are signed in "
- "and are on each other's contact lists",
- mpAccepterContact);
-
- // Now we can start session
- TeleConference* pConference = nullptr;
- pConference = TeleManager::startBuddySession( mpOffererAccount, mpAccepterContact);
- CPPUNIT_ASSERT( pConference != nullptr);
- mpCollaboration1->SetConference( pConference );
- mpCollaboration1->SendFile( mpAccepterContact, maTestConfigIniURL );
-
- g_object_unref(mpOffererAccount);
- mpOffererAccount = nullptr;
- g_object_unref(mpAccepterContact);
- mpAccepterContact = nullptr;
-
- //while (!mbFileSentSuccess)
- // g_main_context_iteration( NULL, TRUE);
-
- // This checks that the file was received and msCurrentUUID set (see manager.cxx)
- while (!TeleManager::hasWaitingConference())
- g_main_context_iteration( nullptr, TRUE);
-
- pConference = TeleManager::getConference();
- CPPUNIT_ASSERT( pConference != nullptr);
- mpCollaboration2->SetConference( pConference );
-
- mpCollaboration1->SendPacket( "from 1 to 2");
-
- while (!mbPacketReceived)
- g_main_context_iteration( nullptr, TRUE);
-}
-
-void TestTeleTubes::tearDown()
-{
- // Closes the TeleConference in destructor:
- delete mpCollaboration1;
- delete mpCollaboration2;
-
- TeleManager::finalize();
-}
-
-CPPUNIT_TEST_SUITE_REGISTRATION( TestTeleTubes);
-
-}
-
-CPPUNIT_PLUGIN_IMPLEMENT();
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */