os/ossrv/lowlevellibsandfws/apputils/test/tef/ssnd/scripts/tef_ssnd.script
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-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
//
sl@0
    15
sl@0
    16
LOAD_SUITE tef_ssnd
sl@0
    17
LOAD_SUITE BURTestServer
sl@0
    18
LOAD_SUITE TEFPlatSec
sl@0
    19
sl@0
    20
//! make up a .wav file
sl@0
    21
RUN_UTILS MkDir c:\tef_bafl\
sl@0
    22
RUN_UTILS CopyFile z:\tef_bafl\tef_ssnd.ini c:\tef_bafl\tef_ssnd.wav
sl@0
    23
RUN_UTILS MakeReadWrite c:\tef_bafl\tef_ssnd.wav
sl@0
    24
sl@0
    25
START_TESTCASE SYSLIB-BAFL-CT-3354 //CapabilityTest
sl@0
    26
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3354
sl@0
    27
//!@SYMTestCaseDesc  		Test BaSystemSound::SetSoundL enforces caller has WDD capability
sl@0
    28
//!@SYMTestPriority  		High
sl@0
    29
//!@SYMTestActions   		1. Invoke SetSoundL from the original test server.
sl@0
    30
//!							2. Use setcap to make a test server without WDD.
sl@0
    31
//!							3. Invoke SetSoundL from the setcap test server.
sl@0
    32
//!@SYMTestExpectedResults	The original server successfully sets the sound while the
sl@0
    33
//!							setcap one fails with -46 KErrPermissionDenied.
sl@0
    34
//! @SYMDEF					DEF095280
sl@0
    35
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
    36
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1
sl@0
    37
	RUN_TEST_STEP 100 TEFPlatSec SetCapabilities z:\tef_bafl\tef_ssnd.ini Missing_WDD
sl@0
    38
	DELAY 1000
sl@0
    39
	LOAD_SUITE tef_ssnd_nocap
sl@0
    40
	RUN_TEST_STEP !Error=-46 100 tef_ssnd_nocap SetSound z:\tef_bafl\tef_ssnd.ini Sound2
sl@0
    41
	RUN_TEST_STEP 100 TEFPlatSec Cleanup z:\tef_bafl\tef_ssnd.ini Missing_WDD
sl@0
    42
END_TESTCASE  SYSLIB-BAFL-CT-3354 //CapabilityTest
sl@0
    43
sl@0
    44
START_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID
sl@0
    45
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3355
sl@0
    46
//!@SYMTestCaseDesc  		Test coping with transaction commit fail
sl@0
    47
//!							when two threads set the same sound at the same time.
sl@0
    48
//!@SYMTestPriority  		High
sl@0
    49
//!@SYMTestActions   		Run 2 concurrent threads to set two sounds with the same BaSystemSoundType, i.e. same ID.
sl@0
    50
//!@SYMTestExpectedResults	1. Both threads use SetSoundL successfully. 
sl@0
    51
//!                         2. One of them encounters transaction commit fail and must retry.
sl@0
    52
//!							3. The two sounds are saved in the same key slot in CentRep
sl@0
    53
//!							   because they have the same ID.
sl@0
    54
//! @SYMDEF					DEF095280
sl@0
    55
sl@0
    56
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
    57
	CONCURRENT
sl@0
    58
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterSameSsndId
sl@0
    59
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker1
sl@0
    60
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker2
sl@0
    61
	CONSECUTIVE
sl@0
    62
END_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID
sl@0
    63
sl@0
    64
START_TESTCASE SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID
sl@0
    65
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3356
sl@0
    66
//!@SYMTestCaseDesc  		Test coping with transaction commit fail when three
sl@0
    67
//!							threads set different sounds simultaneously.
sl@0
    68
//!@SYMTestPriority  		High
sl@0
    69
//!@SYMTestActions   		Run 3 concurrent threads to set three sounds with different IDs.
sl@0
    70
//!@SYMTestExpectedResults	1. All threads use SetSoundL successfully.
sl@0
    71
//!							2. Two workers encounter transaction commit fail and must retry.
sl@0
    72
//!							3. The three sounds are saved in different key slots in CentRep.
sl@0
    73
//! @SYMDEF					DEF095280
sl@0
    74
sl@0
    75
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
    76
sl@0
    77
	CONCURRENT
sl@0
    78
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId
sl@0
    79
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1
sl@0
    80
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2
sl@0
    81
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
sl@0
    82
	CONSECUTIVE
sl@0
    83
END_TESTCASE  SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID
sl@0
    84
sl@0
    85
START_TESTCASE SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING
sl@0
    86
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3357
sl@0
    87
//!@SYMTestCaseDesc  		When CentRep transaction is used, first one to commit will fail 
sl@0
    88
//!							all other transactions on the same repository. This test guards
sl@0
    89
//!							future maintenance work from re-engineering the set sound algorithm
sl@0
    90
//!							on writes that seem to have no dependency on other writes.
sl@0
    91
//!@SYMTestPriority  		High
sl@0
    92
//!@SYMTestActions   		Run 3 concurrent threads to set three existing sounds.
sl@0
    93
//!@SYMTestExpectedResults	1. All threads use SetSoundL successfully.
sl@0
    94
//!							2. Two workers encounter transaction commit fail and must retry.
sl@0
    95
//!							3. The three sounds are saved in different key slots in CentRep.
sl@0
    96
//! @SYMDEF					DEF095280
sl@0
    97
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
    98
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker1
sl@0
    99
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker2
sl@0
   100
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker3
sl@0
   101
sl@0
   102
	CONCURRENT
sl@0
   103
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId
sl@0
   104
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
sl@0
   105
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1
sl@0
   106
	RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2
sl@0
   107
	CONSECUTIVE
sl@0
   108
END_TESTCASE  SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING
sl@0
   109
sl@0
   110
START_TESTCASE SYSLIB-BAFL-CT-3388 //BackupRestore
sl@0
   111
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3388
sl@0
   112
//!@SYMTestCaseDesc  		Test sound settings are saved and restored by Backup Restore.
sl@0
   113
//!@SYMTestPriority  		High
sl@0
   114
//!@SYMTestActions   		Create some sounds, backup, reset repository and
sl@0
   115
//!							check the sounds are not there.
sl@0
   116
//!							Restore and check the sounds are there. 
sl@0
   117
//!@SYMTestExpectedResults	After reset, the sound is not in CentRep. Restore brings it back.
sl@0
   118
//! @SYMDEF					DEF095280
sl@0
   119
sl@0
   120
sl@0
   121
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   122
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1
sl@0
   123
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
sl@0
   124
	RUN_TEST_STEP -1 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer
sl@0
   125
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   126
	RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1
sl@0
   127
	RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
sl@0
   128
	RUN_TEST_STEP -1 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer
sl@0
   129
	RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1
sl@0
   130
	RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
sl@0
   131
END_TESTCASE  SYSLIB-BAFL-CT-3388 //BackupRestore
sl@0
   132
sl@0
   133
START_TESTCASE SYSLIB-BAFL-CT-3389 //LockoutByBackup
sl@0
   134
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3389
sl@0
   135
//!@SYMTestCaseDesc  		Test correct error code is returned to clients when CentRep server is
sl@0
   136
//!							locked out by Backup.
sl@0
   137
//!@SYMTestPriority  		High
sl@0
   138
//!@SYMTestActions   		Run a thread to continuously set a series of sounds and read them back.
sl@0
   139
//!							Start secure backup concurrently. 
sl@0
   140
//!@SYMTestExpectedResults	All reads are successful. Some SetSoundL encounter KErrServerBusy.
sl@0
   141
//! @SYMDEF					DEF095280
sl@0
   142
sl@0
   143
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   144
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound
sl@0
   145
sl@0
   146
	CONCURRENT
sl@0
   147
	RUN_TEST_STEP 240 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer
sl@0
   148
	RUN_TEST_STEP 240 tef_ssnd LockoutTest
sl@0
   149
	CONSECUTIVE
sl@0
   150
sl@0
   151
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   152
END_TESTCASE  SYSLIB-BAFL-CT-3389 //LockoutByBackup
sl@0
   153
sl@0
   154
START_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore
sl@0
   155
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3390
sl@0
   156
//!@SYMTestCaseDesc  		Test correct error code is returned to clients when CentRep server is
sl@0
   157
//!							locked out by Restore.
sl@0
   158
//!@SYMTestPriority  		High
sl@0
   159
//!@SYMTestActions   		Run a thread to continuously set a series of sounds and read them back.
sl@0
   160
//!							Start Restore concurrently. 
sl@0
   161
//!@SYMTestExpectedResults	Bothe Get and Set encounter KErrServerBusy.
sl@0
   162
//! @SYMDEF					DEF095280
sl@0
   163
sl@0
   164
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   165
	RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound
sl@0
   166
sl@0
   167
	CONCURRENT
sl@0
   168
	RUN_TEST_STEP 240 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer
sl@0
   169
	RUN_TEST_STEP 240 tef_ssnd LockoutTest
sl@0
   170
	CONSECUTIVE
sl@0
   171
sl@0
   172
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   173
END_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore
sl@0
   174
sl@0
   175
START_TESTCASE  SYSLIB-BAFL-CT-3391 //CorruptedEntry
sl@0
   176
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3391
sl@0
   177
//!@SYMTestCaseDesc  		Test GetSound can detect corrupted or tempered entries in repository.
sl@0
   178
//!@SYMTestPriority  		High
sl@0
   179
//!@SYMTestActions   		1. Add a sound in repository.
sl@0
   180
//!							2. Fetch the setting from CentRep.
sl@0
   181
//!							3. Corrupt the soundtype field and save it in CentRep.
sl@0
   182
//!							4. Call GetSound.
sl@0
   183
//!							5. Repeat steps 3 and 4 on the sound category field.
sl@0
   184
//!							6. Repeat steps 3 and 4 on the path length field.
sl@0
   185
//!							7. Restore the original setting and call GetSound.
sl@0
   186
//!@SYMTestExpectedResults	The GetSound at step 7 is successful. All the other
sl@0
   187
//!                         GetSound calls fail with KErrCorrupt
sl@0
   188
//! @SYMDEF					DEF095280
sl@0
   189
sl@0
   190
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   191
	RUN_TEST_STEP 100 tef_ssnd CorruptSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
sl@0
   192
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   193
END_TESTCASE  SYSLIB-BAFL-CT-3391 //CorruptedEntry
sl@0
   194
sl@0
   195
START_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI
sl@0
   196
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3392
sl@0
   197
//!@SYMTestCaseDesc  		Test BaSystemSound::SystemSoundFile still return the old filename.
sl@0
   198
//!@SYMTestPriority  		High
sl@0
   199
//!@SYMTestActions   		Call the API.
sl@0
   200
//!@SYMTestExpectedResults	C:\system\data\syssnd.dat is returned.
sl@0
   201
//! @SYMDEF					DEF095280
sl@0
   202
sl@0
   203
	RUN_TEST_STEP 100 tef_ssnd SystemSoundFileTest
sl@0
   204
END_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI
sl@0
   205
sl@0
   206
START_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap
sl@0
   207
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3393
sl@0
   208
//!@SYMTestCaseDesc  		Test BaSystemSound can detect rogue applications creating extra entries
sl@0
   209
//!                         which will interfere with SetSoundL.
sl@0
   210
//!@SYMTestPriority  		High
sl@0
   211
//!@SYMTestActions   		Create a entry at key position 7 and then call SetSoundL.
sl@0
   212
//!@SYMTestExpectedResults	SetSoundL fails with KErrCorrupt.
sl@0
   213
//! @SYMDEF					DEF095280
sl@0
   214
sl@0
   215
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   216
	RUN_TEST_STEP 100 tef_ssnd GapTest
sl@0
   217
	RUN_TEST_STEP 100 tef_ssnd ResetDb
sl@0
   218
END_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap
sl@0
   219
sl@0
   220
START_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath
sl@0
   221
//!@SYMTestCaseID 			SYSLIB-BAFL-CT-3394
sl@0
   222
//!@SYMTestCaseDesc  		Test BaSystemSound::SetSoundL panic if sound filename has no path info.
sl@0
   223
//!@SYMTestPriority  		High
sl@0
   224
//!@SYMTestActions   		Setup a file based sound with no path info in the filename.
sl@0
   225
//!							Then invoke SetSoundL.
sl@0
   226
//!@SYMTestExpectedResults	Panic 14
sl@0
   227
//! @SYMDEF					DEF095280
sl@0
   228
sl@0
   229
	RUN_PANIC_STEP 100 tef_ssnd SoundFileNoPathTest
sl@0
   230
END_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath
sl@0
   231
sl@0
   232
// cleanup
sl@0
   233
RUN_UTILS DeleteFile c:\tef_bafl\tef_ssnd.wav