os/security/contentmgmt/referencedrmagent/tcaf/scripts/ContentStep.script
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/contentmgmt/referencedrmagent/tcaf/scripts/ContentStep.script	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,411 @@
     1.4 +//
     1.5 +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +// All rights reserved.
     1.7 +// This component and the accompanying materials are made available
     1.8 +// under the terms of the License "Eclipse Public License v1.0"
     1.9 +// which accompanies this distribution, and is available
    1.10 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +//
    1.12 +// Initial Contributors:
    1.13 +// Nokia Corporation - initial contribution.
    1.14 +//
    1.15 +// Contributors:
    1.16 +//
    1.17 +// Description: 
    1.18 +//
    1.19 +
    1.20 +
    1.21 +LOAD_SUITE tcaf
    1.22 +
    1.23 +//! @file
    1.24 +//! @SYMTestCaseID 		SEC-CAF-CONT-0001
    1.25 +//! @SYMTestCaseDesc 		Get an attribute for a content object within a file
    1.26 +//! 				(Attribute)
    1.27 +//! @SYMREQ			REQ3679
    1.28 +//! @SYMTestStatus		Implemented
    1.29 +//! @SYMTestPriority		Normal
    1.30 +//! @SYMTestActions		Get a single attribute for a content object within a file
    1.31 +//! @SYMTestExpectedResults	Should return KErrNone
    1.32 +//! @SYMTestType		CIT
    1.33 +START_TESTCASE SEC-CAF-CONT-0001
    1.34 +RUN_TEST_STEP 100 tcaf CAFContentAttributeStep c:\tcaf\attributes.ini Attribute
    1.35 +END_TESTCASE SEC-CAF-CONT-0001
    1.36 +
    1.37 +//! @file
    1.38 +//! @SYMTestCaseID 		SEC-CAF-CONT-0002
    1.39 +//! @SYMTestCaseDesc 		Get a set of attributes for a content object within a file
    1.40 +//! 				(AttributeSet)
    1.41 +//! @SYMREQ			REQ3679
    1.42 +//! @SYMTestStatus		Implemented
    1.43 +//! @SYMTestPriority		Normal
    1.44 +//! @SYMTestActions		Get a set of attributes for a content object within a file
    1.45 +//! @SYMTestExpectedResults	Should return KErrNone
    1.46 +//! @SYMTestType		CIT
    1.47 +START_TESTCASE SEC-CAF-CONT-0002
    1.48 +RUN_TEST_STEP 100 tcaf CAFContentAttributeSetStep c:\tcaf\attributes.ini AttributeSet
    1.49 +END_TESTCASE SEC-CAF-CONT-0002
    1.50 +
    1.51 +//! @file
    1.52 +//! @SYMTestCaseID 		SEC-CAF-CONT-0003
    1.53 +//! @SYMTestCaseDesc 		Get a string attribute for a content object within a file
    1.54 +//! 				(String_Attribute)
    1.55 +//! @SYMREQ			REQ3679
    1.56 +//! @SYMTestStatus		Implemented
    1.57 +//! @SYMTestPriority		Normal
    1.58 +//! @SYMTestActions		Get a single string attribute for a content object within a file
    1.59 +//! @SYMTestExpectedResults	Should return KErrNone
    1.60 +//! @SYMTestType		CIT
    1.61 +START_TESTCASE SEC-CAF-CONT-0003
    1.62 +RUN_TEST_STEP 100 tcaf CAFContentStringAttributeStep c:\tcaf\attributes.ini StringAttribute
    1.63 +END_TESTCASE SEC-CAF-CONT-0003
    1.64 +
    1.65 +//! @file
    1.66 +//! @SYMTestCaseID 		SEC-CAF-CONT-3447
    1.67 +//! @SYMTestCaseDesc 		Get a string attribute for a content object within a valid gif file
    1.68 +//! @SYMDEF			PDEF104571
    1.69 +//! @SYMTestStatus		Implemented
    1.70 +//! @SYMTestPriority		Normal
    1.71 +//! @SYMTestActions		Get a single string attribute for a content object within a valid gif file
    1.72 +//! @SYMTestExpectedResults	A string attribute should successfully be returned
    1.73 +//! @SYMTestType		CT
    1.74 +START_TESTCASE SEC-CAF-CONT-3447
    1.75 +RUN_TEST_STEP 100 tcaf CAFContentStringAttributeStep c:\tcaf\attributes.ini StringAttributeGoodGif
    1.76 +END_TESTCASE SEC-CAF-CONT-3447
    1.77 +
    1.78 +//! @file
    1.79 +//! @SYMTestCaseID 		SEC-CAF-CONT-3448
    1.80 +//! @SYMTestCaseDesc 		Failure to return a string attribute for a content object within
    1.81 +//! 				an invalid gif file
    1.82 +//! @SYMDEF			PDEF104571
    1.83 +//! @SYMTestStatus		Implemented
    1.84 +//! @SYMTestPriority		Normal
    1.85 +//! @SYMTestActions		Attempt to get a single string attribute for a content object within an invalid gif file
    1.86 +//! @SYMTestExpectedResults	An  error should be returned
    1.87 +//! @SYMTestType		CT
    1.88 +START_TESTCASE SEC-CAF-CONT-3448
    1.89 +RUN_TEST_STEP 100 tcaf CAFContentStringAttributeStep c:\tcaf\attributes.ini StringAttributeErrorGif
    1.90 +END_TESTCASE SEC-CAF-CONT-3448
    1.91 +
    1.92 +//! @file
    1.93 +//! @SYMTestCaseID 		SEC-CAF-CONT-0004
    1.94 +//! @SYMTestCaseDesc 		Get a set of string attributes for a content object within a file
    1.95 +//! 				(String_AttributeSet)
    1.96 +//! @SYMREQ			REQ3679
    1.97 +//! @SYMTestStatus		Implemented
    1.98 +//! @SYMTestPriority		Normal
    1.99 +//! @SYMTestActions		Get a set of string attributes for a content object within a file
   1.100 +//! @SYMTestExpectedResults	Should return KErrNone
   1.101 +//! @SYMTestType		CIT
   1.102 +START_TESTCASE SEC-CAF-CONT-0004
   1.103 +RUN_TEST_STEP 100 tcaf CAFContentStringAttributeSetStep c:\tcaf\attributes.ini StringAttributeSet
   1.104 +END_TESTCASE SEC-CAF-CONT-0004
   1.105 +
   1.106 +//! @file
   1.107 +//! @SYMTestCaseID 		SEC-CAF-CONT-3449
   1.108 +//! @SYMTestCaseDesc 		Get a set of string attributes for a content object within a valid gif file
   1.109 +//! @SYMDEF			PDEF104571
   1.110 +//! @SYMTestStatus		Implemented
   1.111 +//! @SYMTestPriority		Normal
   1.112 +//! @SYMTestActions		Get a set of string attributes for a content object within a valid gif file
   1.113 +//! @SYMTestExpectedResults	A set of string attributes should successfully be returned
   1.114 +//! @SYMTestType		CT
   1.115 +START_TESTCASE SEC-CAF-CONT-3449
   1.116 +RUN_TEST_STEP 100 tcaf CAFContentStringAttributeSetStep c:\tcaf\attributes.ini StringAttributeSetGoodGif
   1.117 +END_TESTCASE SEC-CAF-CONT-3449
   1.118 +
   1.119 +//! @file
   1.120 +//! @SYMTestCaseID 		SEC-CAF-CONT-3450
   1.121 +//! @SYMTestCaseDesc 		Get a set of string attributes for a content object within an invalid gif file
   1.122 +//! @SYMDEF			PDEF104571
   1.123 +//! @SYMTestStatus		Implemented
   1.124 +//! @SYMTestPriority		Normal
   1.125 +//! @SYMTestActions		Get a set of string attributes for a content object within an invalid gif file
   1.126 +//! @SYMTestExpectedResults	An  error should be returned for the invalid gif file within the set
   1.127 +//! @SYMTestType		CT
   1.128 +START_TESTCASE SEC-CAF-CONT-3450
   1.129 +RUN_TEST_STEP 100 tcaf CAFContentStringAttributeSetStep c:\tcaf\attributes.ini StringAttributeSetErrorGif
   1.130 +END_TESTCASE SEC-CAF-CONT-3450
   1.131 +
   1.132 +//! @file
   1.133 +//! @SYMTestCaseID 		SEC-CAF-CONT-0005
   1.134 +//! @SYMTestCaseDesc 		Check attributes of a DRM file
   1.135 +//! 				(DRM_Attributes)
   1.136 +//! @SYMREQ			REQ3679
   1.137 +//! @SYMTestStatus		Implemented
   1.138 +//! @SYMTestPriority		Critical
   1.139 +//! @SYMTestActions		Check CAF attributes are the values expected
   1.140 +//! @SYMTestExpectedResults	Attributes should match expected values in INI file
   1.141 +//! @SYMTestType		CIT
   1.142 +START_TESTCASE SEC-CAF-CONT-0005
   1.143 +RUN_TEST_STEP 100 tcaf CAFAttributesStep c:\tcaf\attributes.ini CAF1Attributes
   1.144 +END_TESTCASE SEC-CAF-CONT-0005
   1.145 +
   1.146 +//! @file
   1.147 +//! @SYMTestCaseID 		SEC-CAF-CONT-0006
   1.148 +//! @SYMTestCaseDesc 		Check for notification of a status change
   1.149 +//! 				(NotifyStatusChange)
   1.150 +//! @SYMPREQ			PREQ783
   1.151 +//! @SYMTestStatus		Implemented
   1.152 +//! @SYMTestPriority		Critical
   1.153 +//! @SYMTestActions		Check status returned matches expected value
   1.154 +//! @SYMTestExpectedResults	Status changes should match expected result
   1.155 +//! @SYMTestType		CIT
   1.156 +START_TESTCASE SEC-CAF-CONT-0006
   1.157 +RUN_TEST_STEP 100 tcaf CAFContentNotifyStep c:\tcaf\ContentStep.ini NotifyStatusChange
   1.158 +END_TESTCASE SEC-CAF-CONT-0006
   1.159 +
   1.160 +//! @file
   1.161 +//! @SYMTestCaseID 		SEC-CAF-CONT-0007
   1.162 +//! @SYMTestCaseDesc 		Set a property within the test agent
   1.163 +//! 				(SetProperty_TestAgent)
   1.164 +//! @SYMPREQ			PREQ780
   1.165 +//! @SYMTestStatus		Implemented
   1.166 +//! @SYMTestPriority		Critical
   1.167 +//! @SYMTestActions		Check error returned matches expected value
   1.168 +//! @SYMTestExpectedResults	The property should be set correctly
   1.169 +//! @SYMTestType		CIT
   1.170 +START_TESTCASE SEC-CAF-CONT-0007
   1.171 +RUN_TEST_STEP 100 tcaf CAFContentSetPropertyStep c:\tcaf\ContentStep.ini SetPropertyDrm
   1.172 +END_TESTCASE SEC-CAF-CONT-0007
   1.173 +
   1.174 +//! @file
   1.175 +//! @SYMTestCaseID 		SEC-CAF-CONT-0008
   1.176 +//! @SYMTestCaseDesc 		Set a property within the agent
   1.177 +//! 				(SetProperty_F32Agent)
   1.178 +//! @SYMPREQ			PREQ780
   1.179 +//! @SYMTestStatus		Implemented
   1.180 +//! @SYMTestPriority		Critical
   1.181 +//! @SYMTestActions		Check error returned matches expected value
   1.182 +//! @SYMTestExpectedResults	The property should be set correctly
   1.183 +//! @SYMTestType		CIT
   1.184 +START_TESTCASE SEC-CAF-CONT-0008
   1.185 +RUN_TEST_STEP 100 tcaf CAFContentSetPropertyStep c:\tcaf\ContentStep.ini SetPropertyPlainText
   1.186 +END_TESTCASE SEC-CAF-CONT-0008
   1.187 +
   1.188 +//! @file
   1.189 +//! @SYMTestCaseID 		SEC-CAF-CONT-0009
   1.190 +//! @SYMTestCaseDesc 		Ask the agent to display information related to a content object
   1.191 +//! 				(DisplayInfo)
   1.192 +//! @SYMREQ			REQ3692
   1.193 +//! @SYMTestStatus		Implemented
   1.194 +//! @SYMTestPriority		Critical
   1.195 +//! @SYMTestActions		Agent should display information or return an error if it doesn't support that API
   1.196 +//! @SYMTestExpectedResults	Agent should return an error since information display is not supported
   1.197 +//! @SYMTestType		CIT
   1.198 +START_TESTCASE SEC-CAF-CONT-0009
   1.199 +RUN_TEST_STEP 100 tcaf CAFContentDisplayInfoStep c:\tcaf\ContentStep.ini DisplayInfo
   1.200 +END_TESTCASE SEC-CAF-CONT-0009
   1.201 +
   1.202 +//! @file
   1.203 +//! @SYMTestCaseID 		SEC-CAF-CONT-0010
   1.204 +//! @SYMTestCaseDesc 		Attempt to perform an extended function on a particular CAF agent
   1.205 +//! 				(AgentSpecific_Ok)
   1.206 +//! @SYMPREQ			PREQ780
   1.207 +//! @SYMTestStatus		Implemented
   1.208 +//! @SYMTestPriority		Critical
   1.209 +//! @SYMTestActions		Check error returned matches expected value
   1.210 +//! @SYMTestExpectedResults	Error returned matches expected value
   1.211 +//! @SYMTestType		CIT
   1.212 +START_TESTCASE SEC-CAF-CONT-0010
   1.213 +RUN_TEST_STEP 100 tcaf CAFContentAgentSpecificStep c:\tcaf\ContentStep.ini AgentSpecificDrm
   1.214 +END_TESTCASE SEC-CAF-CONT-0010
   1.215 +
   1.216 +//! @file
   1.217 +//! @SYMTestCaseID 		SEC-CAF-CONT-0011
   1.218 +//! @SYMTestCaseDesc 		Attempt to perform an extended function on the F32 Agent
   1.219 +//! 				(AgentSpecific_Fails)
   1.220 +//! @SYMPREQ			PREQ780
   1.221 +//! @SYMTestStatus		Implemented
   1.222 +//! @SYMTestPriority		Critical
   1.223 +//! @SYMTestActions		Check error returned matches expected value
   1.224 +//! @SYMTestExpectedResults	Error returned matches expected value
   1.225 +//! @SYMTestType		CIT
   1.226 +START_TESTCASE SEC-CAF-CONT-0011
   1.227 +RUN_TEST_STEP 100 tcaf CAFContentAgentSpecificStep c:\tcaf\ContentStep.ini AgentSpecificPlainText
   1.228 +END_TESTCASE SEC-CAF-CONT-0011
   1.229 +
   1.230 +//! @file
   1.231 +//! @SYMTestCaseID 		SEC-CAF-CONT-0012
   1.232 +//! @SYMTestCaseDesc 		Request rights for a given content object
   1.233 +//! 				(RequestRights)
   1.234 +//! @SYMPREQ			PREQ783
   1.235 +//! @SYMTestStatus		Implemented
   1.236 +//! @SYMTestPriority		Critical
   1.237 +//! @SYMTestActions		Check status returned matches expected value
   1.238 +//! @SYMTestExpectedResults	Status changes should match expected result
   1.239 +//! @SYMTestType		CIT
   1.240 +START_TESTCASE SEC-CAF-CONT-0012
   1.241 +RUN_TEST_STEP 100 tcaf CAFContentRequestRightsStep c:\tcaf\ContentStep.ini RequestRights
   1.242 +END_TESTCASE SEC-CAF-CONT-0012
   1.243 +
   1.244 +//! @file
   1.245 +//! @SYMTestCaseID 		SEC-CAF-CONT-0013
   1.246 +//! @SYMTestCaseDesc 		Find the embedded objects within a container in the file
   1.247 +//! 				(EmbeddedObjects)
   1.248 +//! @SYMREQ			REQ3679
   1.249 +//! @SYMTestStatus		Implemented
   1.250 +//! @SYMTestPriority		Critical
   1.251 +//! @SYMTestActions		List the embedded content objects within the file
   1.252 +//! @SYMTestExpectedResults	Number of embedded objects found matches expected number
   1.253 +//! @SYMTestType		CIT
   1.254 +START_TESTCASE SEC-CAF-CONT-0013
   1.255 +RUN_TEST_STEP 100 tcaf CAFContentEmbeddedObjectsStep c:\tcaf\ContentStep.ini EmbeddedObjects
   1.256 +END_TESTCASE SEC-CAF-CONT-0013
   1.257 +
   1.258 +//! @file
   1.259 +//! @SYMTestCaseID 		SEC-CAF-CONT-3451
   1.260 +//! @SYMTestCaseDesc 		Find the embedded objects within a valid gif file
   1.261 +//! @SYMDEF			PDEF104571
   1.262 +//! @SYMTestStatus		Implemented
   1.263 +//! @SYMTestPriority		Critical
   1.264 +//! @SYMTestActions		List the embedded content objects within a valid gif file.
   1.265 +//! @SYMTestExpectedResults	Returned error code matches that expected.
   1.266 +//! 				Number of embedded objects found matches the expected number.
   1.267 +//! @SYMTestType		CT
   1.268 +START_TESTCASE SEC-CAF-CONT-3451
   1.269 +RUN_TEST_STEP 100 tcaf CAFContentEmbeddedObjectsStep c:\tcaf\ContentStep.ini EmbeddedObjectsGoodGif
   1.270 +END_TESTCASE SEC-CAF-CONT-3451
   1.271 +
   1.272 +//! @file
   1.273 +//! @SYMTestCaseID 		SEC-CAF-CONT-3452
   1.274 +//! @SYMTestCaseDesc 		Find the embedded objects within an invalid gif file
   1.275 +//! @SYMDEF			PDEF104571
   1.276 +//! @SYMTestStatus		Implemented
   1.277 +//! @SYMTestPriority		Critical
   1.278 +//! @SYMTestActions		List the embedded content objects within an invalid gif file.
   1.279 +//! @SYMTestExpectedResults	Returned error code matches that expected.
   1.280 +//! 				Number of embedded objects found matches the expected number.
   1.281 +//! @SYMTestType		CT
   1.282 +START_TESTCASE SEC-CAF-CONT-3452
   1.283 +RUN_TEST_STEP 100 tcaf CAFContentEmbeddedObjectsStep c:\tcaf\ContentStep.ini EmbeddedObjectsErrorGif
   1.284 +END_TESTCASE SEC-CAF-CONT-3452
   1.285 +
   1.286 +//! @file
   1.287 +//! @SYMTestCaseID 		SEC-CAF-CONT-0014
   1.288 +//! @SYMTestCaseDesc 		List all embedded objects of a particular type
   1.289 +//! 				(EmbeddedObjectType)
   1.290 +//! @SYMREQ			REQ3679
   1.291 +//! @SYMTestStatus		Implemented
   1.292 +//! @SYMTestPriority		Critical
   1.293 +//! @SYMTestActions		List the embedded objects within a container that are of a certain type (content, containers etc)
   1.294 +//! @SYMTestExpectedResults	Number of embedded objects found matches the expected number
   1.295 +//! @SYMTestType		CIT
   1.296 +START_TESTCASE SEC-CAF-CONT-0014
   1.297 +RUN_TEST_STEP 100 tcaf CAFContentEmbeddedObjectTypeStep c:\tcaf\ContentStep.ini EmbeddedObjectType
   1.298 +END_TESTCASE SEC-CAF-CONT-0014
   1.299 +
   1.300 +//! @file
   1.301 +//! @SYMTestCaseID 		SEC-CAF-CONT-3453
   1.302 +//! @SYMTestCaseDesc 		List all embedded objects of a particular type for a valid gif file
   1.303 +//! @SYMDEF			PDEF104571
   1.304 +//! @SYMTestStatus		Implemented
   1.305 +//! @SYMTestPriority		Critical
   1.306 +//! @SYMTestActions		List the embedded objects within a container that are of a certain type (content, containers etc)
   1.307 +//! 				for a valid gif file.
   1.308 +//! @SYMTestExpectedResults	Returned error code matches that expected.
   1.309 +//! 				Number of embedded objects found matches the expected number.
   1.310 +//! @SYMTestType		CT
   1.311 +START_TESTCASE SEC-CAF-CONT-3453
   1.312 +RUN_TEST_STEP 100 tcaf CAFContentEmbeddedObjectTypeStep c:\tcaf\ContentStep.ini EmbeddedObjectTypeGoodGif
   1.313 +END_TESTCASE SEC-CAF-CONT-3453
   1.314 +
   1.315 +//! @file
   1.316 +//! @SYMTestCaseID 		SEC-CAF-CONT-3454
   1.317 +//! @SYMTestCaseDesc 		List all embedded objects of a particular type for an invalid gif file
   1.318 +//! @SYMDEF			PDEF104571
   1.319 +//! @SYMTestStatus		Implemented
   1.320 +//! @SYMTestPriority		Critical
   1.321 +//! @SYMTestActions		List the embedded objects within a container that are of a certain type (content, containers etc)
   1.322 +//! 				for an invalid gif file.
   1.323 +//! @SYMTestExpectedResults	Returned error code matches that expected.
   1.324 +//! 				Number of embedded objects found matches the expected number.
   1.325 +//! @SYMTestType		CT
   1.326 +START_TESTCASE SEC-CAF-CONT-3454
   1.327 +RUN_TEST_STEP 100 tcaf CAFContentEmbeddedObjectTypeStep c:\tcaf\ContentStep.ini EmbeddedObjectTypeErrorGif
   1.328 +END_TESTCASE SEC-CAF-CONT-3454
   1.329 +
   1.330 +//! @file
   1.331 +//! @SYMTestCaseID 		SEC-CAF-CONT-0015
   1.332 +//! @SYMTestCaseDesc 		Search for content objects of a particular type within the file
   1.333 +//! 				(Search_TestAgent)
   1.334 +//! @SYMREQ			REQ3679
   1.335 +//! @SYMTestStatus		Implemented
   1.336 +//! @SYMTestPriority		Critical
   1.337 +//! @SYMTestActions		Search for content objects of a particular type within the file
   1.338 +//! @SYMTestExpectedResults	Number of content objects found matches expected number
   1.339 +//! @SYMTestType		CIT
   1.340 +START_TESTCASE SEC-CAF-CONT-0015
   1.341 +RUN_TEST_STEP 100 tcaf CAFContentSearchStep c:\tcaf\ContentStep.ini SearchTestAgent
   1.342 +END_TESTCASE SEC-CAF-CONT-0015
   1.343 +
   1.344 +//! @file
   1.345 +//! @SYMTestCaseID 		SEC-CAF-CONT-0016
   1.346 +//! @SYMTestCaseDesc 		Search for content objects of a particular type within the file
   1.347 +//! 				(Search_F32Agent)
   1.348 +//! @SYMREQ			REQ3679
   1.349 +//! @SYMTestStatus		Implemented
   1.350 +//! @SYMTestPriority		Critical
   1.351 +//! @SYMTestActions		Search for content objects of a particular type within the file
   1.352 +//! @SYMTestExpectedResults	Number of content objects found matches expected number
   1.353 +//! @SYMTestType		CIT
   1.354 +START_TESTCASE SEC-CAF-CONT-0016
   1.355 +RUN_TEST_STEP 100 tcaf CAFContentSearchStep c:\tcaf\ContentStep.ini SearchF32Agent
   1.356 +END_TESTCASE SEC-CAF-CONT-0016
   1.357 +
   1.358 +//! @file
   1.359 +//! @SYMTestCaseID 		SEC-CAF-CONT-3455
   1.360 +//! @SYMTestCaseDesc 		Search for content objects of a particular type within a valid gif file
   1.361 +//! @SYMDEF			PDEF104571
   1.362 +//! @SYMTestStatus		Implemented
   1.363 +//! @SYMTestPriority		Critical
   1.364 +//! @SYMTestActions		Search for content objects of a particular type within the file
   1.365 +//! @SYMTestExpectedResults	Number of content objects found matches expected number
   1.366 +//! @SYMTestType		CT
   1.367 +START_TESTCASE SEC-CAF-CONT-3455
   1.368 +RUN_TEST_STEP 100 tcaf CAFContentSearchStep c:\tcaf\ContentStep.ini SearchF32AgentGoodGif
   1.369 +END_TESTCASE SEC-CAF-CONT-3455
   1.370 +
   1.371 +//! @file
   1.372 +//! @SYMTestCaseID 		SEC-CAF-CONT-3456
   1.373 +//! @SYMTestCaseDesc 		Search for content objects of a particular type within an invalid gif file
   1.374 +//! @SYMDEF			PDEF104571
   1.375 +//! @SYMTestStatus		Implemented
   1.376 +//! @SYMTestPriority		Critical
   1.377 +//! @SYMTestActions		Search for content objects of a particular type within the file
   1.378 +//! @SYMTestExpectedResults	Number of content objects found matches expected number
   1.379 +//! @SYMTestType		CT
   1.380 +START_TESTCASE SEC-CAF-CONT-3456
   1.381 +RUN_TEST_STEP 100 tcaf CAFContentSearchStep c:\tcaf\ContentStep.ini SearchF32AgentErrorGif
   1.382 +END_TESTCASE SEC-CAF-CONT-3456
   1.383 +
   1.384 +//! @file
   1.385 +//! @SYMTestCaseID 		SEC-CAF-CONT-0017
   1.386 +//! @SYMTestCaseDesc 		Open a container within a file
   1.387 +//! 				(Container_Ok)
   1.388 +//! @SYMREQ			REQ3679
   1.389 +//! @SYMTestStatus		Implemented
   1.390 +//! @SYMTestPriority		Critical
   1.391 +//! @SYMTestActions		Open a container within a file
   1.392 +//! @SYMTestExpectedResults	The container is opened successfully
   1.393 +//! @SYMTestType		CIT
   1.394 +START_TESTCASE SEC-CAF-CONT-0017
   1.395 +RUN_TEST_STEP 100 tcaf CAFContentContainerStep c:\tcaf\ContentStep.ini ContainerDrm
   1.396 +END_TESTCASE SEC-CAF-CONT-0017
   1.397 +
   1.398 +//! @file
   1.399 +//! @SYMTestCaseID 		SEC-CAF-CONT-0018
   1.400 +//! @SYMTestCaseDesc 		Attempt to open and close a container that does not exist
   1.401 +//! 				(Container_NotFound)
   1.402 +//! @SYMREQ			REQ3679
   1.403 +//! @SYMTestStatus		Implemented
   1.404 +//! @SYMTestPriority		Critical
   1.405 +//! @SYMTestActions		Open a container that does not exist
   1.406 +//! @SYMTestExpectedResults	Returns with KErrNotFound
   1.407 +//! @SYMTestType		CIT
   1.408 +START_TESTCASE SEC-CAF-CONT-0018
   1.409 +RUN_TEST_STEP 100 tcaf CAFContentContainerStep c:\tcaf\ContentStep.ini ContainerPlainText
   1.410 +END_TESTCASE SEC-CAF-CONT-0018
   1.411 +
   1.412 +
   1.413 +
   1.414 +