os/persistentdata/featuremgmt/featureregistry/test/helper/maketestconfig/maketestconfig.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featureregistry/test/helper/maketestconfig/maketestconfig.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,63 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Constants used in test configuration files.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 + @internalComponent
    1.24 + @test
    1.25 +*/
    1.26 +
    1.27 +#ifndef MAKETESTCONFIG_H
    1.28 +#define MAKETESTCONFIG_H
    1.29 +
    1.30 +#include <e32cmn.h>
    1.31 +
    1.32 +// Naming scheme for feature ID constants in small valid config test:
    1.33 +//
    1.34 +// UNFeat = unsupported feature not in default=supported range (need not be listed in config file)
    1.35 +// URFeat = unsupported feature in default=supported range (must be listed in config file)
    1.36 +// SNFeat = supported feature not in default=supported range (must be listed in config file)
    1.37 +// SRFeat = supported feature in default=supported range (need not be listed in config file)
    1.38 +// LoFeat = low-feature-Id of default=supported range
    1.39 +// HiFeat = high-feature-Id of default=supported range
    1.40 +// Id = TInt identifier
    1.41 +// St = status word
    1.42 +
    1.43 +const TUint32 KFeatRegTest1_01_UNFeatId = 0x12345679;
    1.44 +const TUint32 KFeatRegTest1_02_SNFeatId = 0x12345678;
    1.45 +const TUint32 KFeatRegTest1_02_SNFeatSt = 0x41; // low-bit set = supported, other bits to retrieve through API
    1.46 +const TUint32 KFeatRegTest1_03_LoFeatId = 0x20000000;
    1.47 +const TUint32 KFeatRegTest1_04_HiFeatId = 0x20000FFF;
    1.48 +const TUint32 KFeatRegTest1_05_URFeatId = 0x20000100;
    1.49 +const TUint32 KFeatRegTest1_05_URFeatSt = 0x2;	// low-bit not set = unsupported, 2nd bit set = upgradable
    1.50 +const TUint32 KFeatRegTest1_06_SRFeatId = 0x20000123;
    1.51 +const TUint32 KFeatRegTest_DummyRangeId = 0x2FFFFFFF;
    1.52 +
    1.53 +// Parameters for large valid config test:
    1.54 +// start, stop & increment of features added to config file
    1.55 +// plus "not supported" bit to alternate support of queried features.
    1.56 +const TUint32 KFeatRegTest2_01_FirstId	= 0x00000000;
    1.57 +const TUint32 KFeatRegTest2_02_LastId	= 0xFF000000;
    1.58 +const TUint32 KFeatRegTest2_03_IncrId	= 0x00010000;
    1.59 +const TUint32 KFeatRegTest2_04_numTestFeatures = 0x100;
    1.60 +// listed features are not supported if following bit set (alternately with above increment):
    1.61 +const TUint32 KFeatRegTest2_05_NotSupportedBit = 0x01000000;
    1.62 +// default=supported ranges have following bit set:
    1.63 +const TUint32 KFeatRegTest2_06_DefSupportedBit = 0x20000000;
    1.64 +const TUint32 KFeatRegTest2_07_rangeCount = 4;
    1.65 +
    1.66 +#endif