Files
libreoffice/extensions/qa/update/test_update.cxx
Jan Holesovsky b87fa222f1 online update: Unit testing framework + rewrite of load().
- introduce first two basic tests (to be improved)
- rewrite of UpdateInformationProvider::load() to use comphelper
- smaller splitting of functions to be able to unit test
2011-11-30 00:24:51 +01:00

160 lines
6.2 KiB
C++

/*
* Version: MPL 1.1 / GPLv3+ / LGPLv3+
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License or as specified alternatively below. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* Major Contributor(s):
* Copyright (C) 2011 Jan Holesovsky <kendy@suse.cz> (initial developer)
*
* All Rights Reserved.
*
* For minor contributions see the git repository.
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 3 or later (the "GPLv3+"), or
* the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
* in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
* instead of those above.
*/
#include <sal/config.h>
#include <sal/precppunit.hxx>
#include <test/bootstrapfixture.hxx>
#include <cppunit/TestAssert.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h>
#include <cppuhelper/bootstrap.hxx>
#include <com/sun/star/deployment/UpdateInformationEntry.hpp>
#include <com/sun/star/deployment/UpdateInformationProvider.hpp>
#include <com/sun/star/xml/dom/XNodeList.hpp>
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include "../../source/update/check/updatecheck.hxx"
#include "../../source/update/check/updateprotocol.hxx"
using namespace com::sun::star;
using namespace com::sun::star::xml;
namespace testupdate {
class Test : public test::BootstrapFixture
{
public:
virtual void setUp()
{
// so that comphelper::getProcessServiceFactory() works, m_xContext is
// set up, etc.
test::BootstrapFixture::setUp();
if ( !m_xProvider.is() )
m_xProvider = deployment::UpdateInformationProvider::create( m_xContext );
// repositories that we will be checking
m_aRepositoryList.realloc( 1 );
m_aRepositoryList[0] = getURLFromSrc( "/extensions/qa/update/simple.xml" );
}
virtual void tearDown()
{
m_xProvider.clear();
m_aRepositoryList.realloc( 0 );
test::BootstrapFixture::tearDown();
}
protected:
// test the getUpdateInformationEnumeration() method
void testGetUpdateInformationEnumeration()
{
::rtl::OUString aInstallSetID( RTL_CONSTASCII_USTRINGPARAM( "TODO" ) ); // unused when we do not have a 'feed'
uno::Reference< container::XEnumeration > aUpdateInfoEnumeration =
m_xProvider->getUpdateInformationEnumeration( m_aRepositoryList, aInstallSetID );
if ( !aUpdateInfoEnumeration.is() )
CPPUNIT_FAIL( "Calling getUpdateInformationEnumeration() with TODO failed." );
if ( !aUpdateInfoEnumeration->hasMoreElements() )
CPPUNIT_FAIL( "Should have more elements (this one is 1st)." );
deployment::UpdateInformationEntry aEntry;
if ( aUpdateInfoEnumeration->nextElement() >>= aEntry )
{
CPPUNIT_ASSERT( aEntry.UpdateDocument->getNodeName() == rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "description" ) ) );
uno::Reference< dom::XNodeList> xChildNodes = aEntry.UpdateDocument->getChildNodes();
CPPUNIT_ASSERT( xChildNodes.is() );
#if 0
for ( int i = 0; i < xChildNodes->getLength(); ++i )
{
fprintf( stderr, "node == %d\n", i );
uno::Reference< dom::XElement > xChildId( xChildNodes->item( i ), uno::UNO_QUERY );
if ( xChildId.is() )
{
fprintf( stderr, "Name == %s\n", rtl::OUStringToOString( xChildId->getNodeName(), RTL_TEXTENCODING_UTF8 ).getStr() );
fprintf( stderr, "Value == %s\n", rtl::OUStringToOString( xChildId->getNodeValue(), RTL_TEXTENCODING_UTF8 ).getStr() );
}
}
#endif
CPPUNIT_ASSERT( xChildNodes->getLength() == 13 );
//uno::Reference< dom::XElement > xChildId( xChildNodes->item( 0 ), uno::UNO_QUERY );
//CPPUNIT_ASSERT( xChildId.is() );
//CPPUNIT_ASSERT( xChildId->getNodeValue() == rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LibreOffice_3.4" ) ) );
//fprintf( stderr, "Attribute == %s\n", rtl::OUStringToOString( aEntry.UpdateDocument->getAttribute( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "test" ) ) ), RTL_TEXTENCODING_UTF8 ).getStr() );
//fprintf( stderr, "Value == %s\n", rtl::OUStringToOString( xChildId->getNodeValue(), RTL_TEXTENCODING_UTF8 ).getStr() );
// TODO check more deeply
}
else
CPPUNIT_FAIL( "Wrong type of the entry." );
}
// test the checkForUpdates() method
void testCheckForUpdates()
{
UpdateInfo aInfo;
rtl::Reference< UpdateCheck > aController( UpdateCheck::get() );
if ( checkForUpdates( aInfo, m_xContext, aController->getInteractionHandler(), m_xProvider,
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OS" ) ),
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Arch" ) ),
m_aRepositoryList,
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BuildID" ) ),
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "InstallSetID" ) ) ) )
{
//aController->setUpdateInfo( aInfo );
// TODO check the result
}
else
CPPUNIT_FAIL( "Calling checkForUpdates() failed." );
}
CPPUNIT_TEST_SUITE(Test);
CPPUNIT_TEST(testGetUpdateInformationEnumeration);
CPPUNIT_TEST(testCheckForUpdates);
CPPUNIT_TEST_SUITE_END();
private:
uno::Reference< deployment::XUpdateInformationProvider > m_xProvider;
uno::Sequence< rtl::OUString > m_aRepositoryList;
};
CPPUNIT_TEST_SUITE_REGISTRATION(testupdate::Test);
} // namespace testupdate
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */