mirror of https://github.com/cutefishos/appmotor
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			122 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			122 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C++
		
	
/***************************************************************************
 | 
						|
**
 | 
						|
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 | 
						|
** All rights reserved.
 | 
						|
** Contact: Nokia Corporation (directui@nokia.com)
 | 
						|
**
 | 
						|
** This file is part of applauncherd
 | 
						|
**
 | 
						|
** If you have questions regarding the use of this file, please contact
 | 
						|
** Nokia at directui@nokia.com.
 | 
						|
**
 | 
						|
** This library is free software; you can redistribute it and/or
 | 
						|
** modify it under the terms of the GNU Lesser General Public
 | 
						|
** License version 2.1 as published by the Free Software Foundation
 | 
						|
** and appearing in the file LICENSE.LGPL included in the packaging
 | 
						|
** of this file.
 | 
						|
**
 | 
						|
****************************************************************************/
 | 
						|
 | 
						|
#include "ut_boosterfactory.h"
 | 
						|
#include "boosterfactory.h"
 | 
						|
#include "booster.h"
 | 
						|
#include "mbooster.h"
 | 
						|
#include "qtbooster.h"
 | 
						|
#include "wrtbooster.h"
 | 
						|
#include "monitorbooster.h"
 | 
						|
 | 
						|
void Ut_BoosterFactory::initTestCase()
 | 
						|
{}
 | 
						|
 | 
						|
void Ut_BoosterFactory::cleanupTestCase()
 | 
						|
{}
 | 
						|
 | 
						|
void Ut_BoosterFactory::testCreate()
 | 
						|
{
 | 
						|
    Booster * booster = BoosterFactory::create('q');
 | 
						|
    QVERIFY(dynamic_cast<QtBooster *>(booster));
 | 
						|
    delete booster;
 | 
						|
 | 
						|
    booster = BoosterFactory::create('m');
 | 
						|
    QVERIFY(dynamic_cast<MBooster *>(booster));
 | 
						|
    delete booster;
 | 
						|
 | 
						|
    booster = BoosterFactory::create('w');
 | 
						|
    QVERIFY(dynamic_cast<WRTBooster *>(booster));
 | 
						|
    delete booster;
 | 
						|
 | 
						|
    booster = BoosterFactory::create('k');
 | 
						|
    QVERIFY(dynamic_cast<MonitorBooster *>(booster));
 | 
						|
    delete booster;
 | 
						|
 | 
						|
    for (int i = 0; i < 256; i++)
 | 
						|
    {
 | 
						|
        unsigned char t = static_cast<unsigned char>(i);
 | 
						|
        if (t != 'q' && t != 'm' && t != 'w' && t != 'k')
 | 
						|
        {
 | 
						|
            QVERIFY(!BoosterFactory::create(t));
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void Ut_BoosterFactory::testSetProcessIdToBooster()
 | 
						|
{
 | 
						|
    BoosterFactory::setProcessIdToBooster('q', 123);
 | 
						|
    QVERIFY(QtBooster::processId() == 123);
 | 
						|
 | 
						|
    BoosterFactory::setProcessIdToBooster('m', 234);
 | 
						|
    QVERIFY(MBooster::processId() == 234);
 | 
						|
 | 
						|
    BoosterFactory::setProcessIdToBooster('w', 345);
 | 
						|
    QVERIFY(WRTBooster::processId() == 345);
 | 
						|
}
 | 
						|
 | 
						|
void Ut_BoosterFactory::testGetBoosterTypeForPid()
 | 
						|
{
 | 
						|
    BoosterFactory::setProcessIdToBooster('q', 1);
 | 
						|
    BoosterFactory::setProcessIdToBooster('m', 2);
 | 
						|
    BoosterFactory::setProcessIdToBooster('w', 3);
 | 
						|
    BoosterFactory::setProcessIdToBooster('k', 4);
 | 
						|
 | 
						|
    QVERIFY(BoosterFactory::getBoosterTypeForPid(1) == 'q');
 | 
						|
    QVERIFY(BoosterFactory::getBoosterTypeForPid(2) == 'm');
 | 
						|
    QVERIFY(BoosterFactory::getBoosterTypeForPid(3) == 'w');
 | 
						|
    QVERIFY(BoosterFactory::getBoosterTypeForPid(4) == 'k');
 | 
						|
 | 
						|
    QVERIFY(BoosterFactory::getBoosterTypeForPid(0) == 0);
 | 
						|
 | 
						|
    for (int i = 0; i < 256; i++)
 | 
						|
    {
 | 
						|
        unsigned char t = static_cast<unsigned char>(i);
 | 
						|
        if (t != 'q' && t != 'm' && t != 'w' && t != 'k')
 | 
						|
        {
 | 
						|
            BoosterFactory::setProcessIdToBooster(t, 1000);
 | 
						|
            QVERIFY(BoosterFactory::getBoosterTypeForPid(1000) == 0);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void Ut_BoosterFactory::testGetBoosterPidForType()
 | 
						|
{
 | 
						|
    BoosterFactory::setProcessIdToBooster('q', 145);
 | 
						|
    BoosterFactory::setProcessIdToBooster('m', 245);
 | 
						|
    BoosterFactory::setProcessIdToBooster('w', 345);
 | 
						|
    BoosterFactory::setProcessIdToBooster('k', 445);
 | 
						|
 | 
						|
    QVERIFY(BoosterFactory::getBoosterPidForType('q') == 145);
 | 
						|
    QVERIFY(BoosterFactory::getBoosterPidForType('m') == 245);
 | 
						|
    QVERIFY(BoosterFactory::getBoosterPidForType('w') == 345);
 | 
						|
    QVERIFY(BoosterFactory::getBoosterPidForType('k') == 0);   // shouldn't be used!!!
 | 
						|
 | 
						|
    for (int i = 0; i < 256; i++)
 | 
						|
    {
 | 
						|
        unsigned char t = static_cast<unsigned char>(i);
 | 
						|
        if (t != 'q' && t != 'm' && t != 'w' && t != 'k')
 | 
						|
        {
 | 
						|
            QVERIFY(BoosterFactory::getBoosterPidForType(t) == 0);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
QTEST_APPLESS_MAIN(Ut_BoosterFactory);
 |