os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/scripts/TE_EComSWITestWINSCW.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
// @file
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
PRINT Run ECom SWI Install-Plugin Te_EComSWISuite Suite Tests
sl@0
    19
sl@0
    20
LOAD_SUITE TE_EComSWITestSuite
sl@0
    21
LOAD_SUITE TEFPlatSec
sl@0
    22
sl@0
    23
DELAY 3000
sl@0
    24
sl@0
    25
sl@0
    26
START_TESTCASE SYSLIB-ECOM-CIT-1889-0001
sl@0
    27
//!@file
sl@0
    28
//!@SYMTestCaseID 			SYSLIB-ECOM-CIT-1889-0001
sl@0
    29
//!@SYMTestCaseDesc  		Verify that an ECom Plugin can be Installed, Queried and Used
sl@0
    30
//!                  		When it is Installed using Software Installer (SWI)
sl@0
    31
//!@SYMTestPriority  		High
sl@0
    32
//!@SYMTestActions   		(1) An ECom plugin which as packaged up into a .SIS is Installed Using SWI.
sl@0
    33
//!                  		(2)	The installed is queried for details of the plugins Implementation.
sl@0
    34
//!                  		(3) The test tries to Call ReturnInt(),a method implemented by the ECom plugin
sl@0
    35
//!							(4) The ECom plugin is uninstallesd suing SWI
sl@0
    36
//!
sl@0
    37
//!@SYMTestExpectedResults	(1) The plugin is installed.
sl@0
    38
//!                  		(2)	The information provided by ListImplementationL macthes the expected data.
sl@0
    39
//!                  		(3)	ReturnInt() returns 123456789	
sl@0
    40
//!                  		(4)	ECom unregisters plugin
sl@0
    41
sl@0
    42
 
sl@0
    43
	
sl@0
    44
	RUN_TEST_STEP 100 TE_EComSWITestSuite InstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini Install_WINSCWSISP1
sl@0
    45
	DELAY 3000
sl@0
    46
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckListImplUidStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CHECK_P1
sl@0
    47
	DELAY 500
sl@0
    48
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckCreateImpl_ImpId_DtorId_Step Z:\TEF_EComSWI\ECom-SWI-UsePlugin.ini UsePlugin1
sl@0
    49
	DELAY 180000
sl@0
    50
	RUN_TEST_STEP 100 TE_EComSWITestSuite UninstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini UnInstallWinP1
sl@0
    51
	DELAY 3000
sl@0
    52
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckListImplUidStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CHECK_P1_UNINSTALL
sl@0
    53
	
sl@0
    54
END_TESTCASE SYSLIB-ECOM-CIT-1889-0001
sl@0
    55
sl@0
    56
sl@0
    57
START_TESTCASE SYSLIB-ECOM-CIT-1890-0001
sl@0
    58
//!@SYMTestCaseID 			SYSLIB-ECOM-CIT-1890-0001
sl@0
    59
//!@SYMTestCaseDesc 		Verify that an ECom plugin that exists in the ROM (Z:) can be upgraded and downgraded
sl@0
    60
//!                 		by a plugin installed and unistalled on the RAM (C:\)  using SWI
sl@0
    61
//!                 
sl@0
    62
//!@SYMTestPriority 		High
sl@0
    63
//!@SYMTestActions  		
sl@0
    64
//!                 		(1)	ListImplmentaion is called on plugin v1.
sl@0
    65
//!                	 		(2)	CreatListImplmentaionL is called on Plugin v1 method ReturnInt().
sl@0
    66
//!							(3)	ECom Plugin is upgraded to  Version 2
sl@0
    67
//!                			(4)	ListImplmentaion is called on plugin v2.
sl@0
    68
//!                 		(5)	ReturnInt(), a method provided by the plugin is called on Plugin v2.
sl@0
    69
//!                 		(6)	Plugin V2 is Uninstalled
sl@0
    70
//!                 		(7)	ListImplmentaion is called on plugin v1.
sl@0
    71
//!                 
sl@0
    72
//!@SYMTestExpectedResults	(1) Plugin v1 exists on Z:\ drive and the specifed plugin attributes are returned.
sl@0
    73
//!                 		(2)	Int value is  returned from ReturnInt(), Plugin v1.
sl@0
    74
//!                 		(3)	Ecom server now deregisteres v1 and registers v2.
sl@0
    75
//!                 		(4) Plugin v2 exists on C:\ drive and the specifed plugin attributes are returned.
sl@0
    76
//!                 		(5)	Int value is  returned from ReturnInt(), Plugin v2.
sl@0
    77
//!                 		(6)	Ecom server now deregisteres v2 and registers v1. Also no plugin v2 files exist.
sl@0
    78
//!                 		(7)	Plugin attribute information for v1 is returned.
sl@0
    79
sl@0
    80
sl@0
    81
sl@0
    82
sl@0
    83
sl@0
    84
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckListImplUidStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CHECK_P3
sl@0
    85
	DELAY 500
sl@0
    86
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckCreateImpl_ImpId_DtorId_Step Z:\TEF_EComSWI\ECom-SWI-UsePlugin.ini UsePlugin3
sl@0
    87
	DELAY 3000
sl@0
    88
	RUN_TEST_STEP 100 TE_EComSWITestSuite InstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini InstallUpgrade_WINSCWSISP3
sl@0
    89
	DELAY 3000
sl@0
    90
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckListImplUidStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CHECK_P3_UPGRADE
sl@0
    91
	DELAY 500
sl@0
    92
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckCreateImpl_ImpId_DtorId_Step Z:\TEF_EComSWI\ECom-SWI-UsePlugin.ini UsePlugin3Upgrade
sl@0
    93
	DELAY 180000
sl@0
    94
	RUN_TEST_STEP 100 TE_EComSWITestSuite UninstallStepPackageName Z:\TEF_EComSWI\ECom-SWI-Install.ini UnInstallUpgradeWinP3
sl@0
    95
	DELAY 3000
sl@0
    96
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckListImplUidStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CHECK_P3
sl@0
    97
	DELAY 3000
sl@0
    98
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckCreateImpl_ImpId_DtorId_Step Z:\TEF_EComSWI\ECom-SWI-UsePlugin.ini UsePlugin3
sl@0
    99
	DELAY 500
sl@0
   100
	
sl@0
   101
END_TESTCASE SYSLIB-ECOM-CIT-1890-0001
sl@0
   102
sl@0
   103
sl@0
   104
START_TESTCASE SYSLIB-ECOM-CIT-1891-0001
sl@0
   105
//!@file
sl@0
   106
//!@SYMTestCaseID 	 		SYSLIB-ECOM-CIT-1891-0001
sl@0
   107
//!@SYMTestCaseDesc  		Verify that and Invalid ECom Plugin whose rss file has an incorrect dll  
sl@0
   108
//!                  		UID can be installed using SWI, but does not wok.
sl@0
   109
//!@SYMTestPriority  		High
sl@0
   110
//!@SYMTestActions   		(1) ECom Plugin is Installed
sl@0
   111
//!                  		(2)	Plugin queried for available implementation
sl@0
   112
//!                  		(3) Plugin is Uninstalled
sl@0
   113
//!                  
sl@0
   114
//!@SYMTestExpectedResults 	(1) The files are installed.
sl@0
   115
//!                  		(2)	Query returns no implementations are available.
sl@0
   116
//!                  		(3)	The files are removed
sl@0
   117
sl@0
   118
sl@0
   119
sl@0
   120
	RUN_TEST_STEP 100 TE_EComSWITestSuite InstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini Install_WINSCWSISP2
sl@0
   121
	DELAY 3000
sl@0
   122
	RUN_TEST_STEP 100 TE_EComSWITestSuite CheckListImplUidStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CHECK_P2
sl@0
   123
	DELAY 500
sl@0
   124
	RUN_TEST_STEP 100 TE_EComSWITestSuite UninstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini UnInstallWinP2
sl@0
   125
sl@0
   126
END_TESTCASE SYSLIB-ECOM-CIT-1891-0001
sl@0
   127
sl@0
   128
START_TESTCASE SYSLIB-ECOM-CIT-4011-0001 //CachedResolverUpgradeBySWI
sl@0
   129
//!@SYMTestCaseID 			SYSLIB-ECOM-CIT-4011-0001
sl@0
   130
//!@SYMTestCaseDesc  		Verify custom resolver caching do not interfere with SWI upgrading the resolver DLL.
sl@0
   131
//!@SYMTestPriority  		High
sl@0
   132
//!@SYMTestActions   		(1) Install version 2 of cachedcustomresolver so that the resolver is in RW drive.
sl@0
   133
//!                  		(2) Try to upgrade to version 9 while DLL is loaded.
sl@0
   134
//!                  		(3) Use the resolver to get it in cache.
sl@0
   135
//!                  		(4) Install version 9 of the resolver DLL.
sl@0
   136
//!							(5) Check ECom uses version 9 of the resolver.
sl@0
   137
//!							(6) Uninstall cachedcustomresolver.
sl@0
   138
//! NB: at step 2 SWI fails with -11 instead of the expected -21. This is because of windows dll locking mechanism and hence it is 
sl@0
   139
//! not necessary to run this particular test on winscw as we do not end up with the DLL upgraded or
sl@0
   140
//!     both the DLL and the .rsc upgraded. This may be a limitation of Windows.
sl@0
   141
//!     Any how cachedcustomresolver is completely uninstalled and version 2 reinstalled 
sl@0
   142
//!		to ensure we have the correct files.
sl@0
   143
//!
sl@0
   144
//!@SYMTestExpectedResults	(1) Version 2 is installed successfully.
sl@0
   145
//!                  		(2) SWI fails with KErrAccessDenied
sl@0
   146
//!                  		(3) ECom instantiates the correct version, i.e. 2.
sl@0
   147
//!                  		(4) Version 9 is successfully installed.
sl@0
   148
//!                  		(5) ECom instantiate the correct version.
sl@0
   149
//!                  		(6) Uninstall is successful.
sl@0
   150
//!@SYMCR					CR1182
sl@0
   151
sl@0
   152
sl@0
   153
	// Need a tef server with no capabilities to avoid platsec errors in listing custom resolvers
sl@0
   154
	RUN_TEST_STEP 100 TEFPlatSec SetCapabilities Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini MakeNoCapServer
sl@0
   155
	DELAY 2000
sl@0
   156
	LOAD_SUITE ecomswinocapserver
sl@0
   157
sl@0
   158
	RUN_TEST_STEP 100 TE_EComSWITestSuite ResolverInstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini Install_CustomResolver2
sl@0
   159
	RUN_TEST_STEP 100 ecomswinocapserver UseCustomResolverStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CheckVersion2
sl@0
   160
	//RUN_TEST_STEP 100 TE_EComSWITestSuite ResolverInstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini FailInstall_CustomResolver9
sl@0
   161
	RUN_TEST_STEP 100 TE_EComSWITestSuite ResolverUninstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini UnInstallCustomResolver
sl@0
   162
	RUN_TEST_STEP 100 TE_EComSWITestSuite ResolverInstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini Install_CustomResolver2
sl@0
   163
	RUN_TEST_STEP 100 ecomswinocapserver UseCustomResolverStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CheckVersion2
sl@0
   164
	RUN_TEST_STEP 100 TE_EComSWITestSuite ResolverInstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini Install_CustomResolver9
sl@0
   165
	RUN_TEST_STEP 100 ecomswinocapserver UseCustomResolverStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CheckVersion9
sl@0
   166
	RUN_TEST_STEP 100 TE_EComSWITestSuite ResolverUninstallStep Z:\TEF_EComSWI\ECom-SWI-Install.ini UnInstallCustomResolver
sl@0
   167
	RUN_TEST_STEP 100 ecomswinocapserver UseCustomResolverStep Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini CheckVersion1
sl@0
   168
	DELAY 4000
sl@0
   169
	RUN_TEST_STEP 100 TEFPlatSec Cleanup Z:\TEF_EComSWI\ECom-SWI-CheckPlugin.ini MakeNoCapServer
sl@0
   170
END_TESTCASE  SYSLIB-ECOM-CIT-4011-0001 //CachedResolverUpgradeBySWI