os/persistentdata/featuremgmt/featureregistry/test/helper/maketestconfig/maketestconfig.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Constants used in test configuration files.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
 @test
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef MAKETESTCONFIG_H
sl@0
    25
#define MAKETESTCONFIG_H
sl@0
    26
sl@0
    27
#include <e32cmn.h>
sl@0
    28
sl@0
    29
// Naming scheme for feature ID constants in small valid config test:
sl@0
    30
//
sl@0
    31
// UNFeat = unsupported feature not in default=supported range (need not be listed in config file)
sl@0
    32
// URFeat = unsupported feature in default=supported range (must be listed in config file)
sl@0
    33
// SNFeat = supported feature not in default=supported range (must be listed in config file)
sl@0
    34
// SRFeat = supported feature in default=supported range (need not be listed in config file)
sl@0
    35
// LoFeat = low-feature-Id of default=supported range
sl@0
    36
// HiFeat = high-feature-Id of default=supported range
sl@0
    37
// Id = TInt identifier
sl@0
    38
// St = status word
sl@0
    39
sl@0
    40
const TUint32 KFeatRegTest1_01_UNFeatId = 0x12345679;
sl@0
    41
const TUint32 KFeatRegTest1_02_SNFeatId = 0x12345678;
sl@0
    42
const TUint32 KFeatRegTest1_02_SNFeatSt = 0x41; // low-bit set = supported, other bits to retrieve through API
sl@0
    43
const TUint32 KFeatRegTest1_03_LoFeatId = 0x20000000;
sl@0
    44
const TUint32 KFeatRegTest1_04_HiFeatId = 0x20000FFF;
sl@0
    45
const TUint32 KFeatRegTest1_05_URFeatId = 0x20000100;
sl@0
    46
const TUint32 KFeatRegTest1_05_URFeatSt = 0x2;	// low-bit not set = unsupported, 2nd bit set = upgradable
sl@0
    47
const TUint32 KFeatRegTest1_06_SRFeatId = 0x20000123;
sl@0
    48
const TUint32 KFeatRegTest_DummyRangeId = 0x2FFFFFFF;
sl@0
    49
sl@0
    50
// Parameters for large valid config test:
sl@0
    51
// start, stop & increment of features added to config file
sl@0
    52
// plus "not supported" bit to alternate support of queried features.
sl@0
    53
const TUint32 KFeatRegTest2_01_FirstId	= 0x00000000;
sl@0
    54
const TUint32 KFeatRegTest2_02_LastId	= 0xFF000000;
sl@0
    55
const TUint32 KFeatRegTest2_03_IncrId	= 0x00010000;
sl@0
    56
const TUint32 KFeatRegTest2_04_numTestFeatures = 0x100;
sl@0
    57
// listed features are not supported if following bit set (alternately with above increment):
sl@0
    58
const TUint32 KFeatRegTest2_05_NotSupportedBit = 0x01000000;
sl@0
    59
// default=supported ranges have following bit set:
sl@0
    60
const TUint32 KFeatRegTest2_06_DefSupportedBit = 0x20000000;
sl@0
    61
const TUint32 KFeatRegTest2_07_rangeCount = 4;
sl@0
    62
sl@0
    63
#endif