|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // __ACTION_INFO_BEGIN__ |
|
15 // [Action Name] |
|
16 // RemoveDefaultSmtpService |
|
17 // [Action Parameters] |
|
18 // smtpClientMtm <input>: CSmtpClientMtm |
|
19 // [Action Description] |
|
20 // RemoveDefaultSmtpService Test Action is intended to remove the default SMTP |
|
21 // service |
|
22 // [APIs Used] |
|
23 // CSmtpClientMtm::RemoveDefaultServiceL |
|
24 // __ACTION_INFO_END__ |
|
25 // |
|
26 // |
|
27 |
|
28 // system #includes |
|
29 #include <smtcmtm.h> |
|
30 |
|
31 // user #includes |
|
32 #include "CMtfTestActionRemoveDefaultSmtpService.h" |
|
33 #include "TMtfTestParameterType.h" |
|
34 #include "CMtfTestCase.h" |
|
35 #include "CMtfTestActionParameters.h" |
|
36 |
|
37 /** |
|
38 Function : NewL |
|
39 Description : |
|
40 @internalTechnology |
|
41 @param : aTestCase - CMtfTestCase for the CMtfTestAction base class |
|
42 @param : aActionParams - CMtfTestActionParameters |
|
43 @return : CMtfTestAction* - a base class pointer to the newly created CMtfTestActionRemoveDefaultSmtpService object |
|
44 @pre none |
|
45 @post none |
|
46 */ |
|
47 CMtfTestAction* CMtfTestActionRemoveDefaultSmtpService::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters) |
|
48 { |
|
49 CMtfTestActionRemoveDefaultSmtpService* self = new (ELeave) CMtfTestActionRemoveDefaultSmtpService(aTestCase); |
|
50 CleanupStack::PushL(self); |
|
51 self->ConstructL(aActionParameters); |
|
52 CleanupStack::Pop(self); |
|
53 return self; |
|
54 } |
|
55 |
|
56 /** |
|
57 Function : CMtfTestActionRemoveDefaultSmtpService |
|
58 Description : Constructor |
|
59 @internalTechnology |
|
60 @param : aTestCase - CMtfTestCase for the CMtfTestAction base class |
|
61 @return : N/A |
|
62 @pre none |
|
63 @post none |
|
64 */ |
|
65 CMtfTestActionRemoveDefaultSmtpService::CMtfTestActionRemoveDefaultSmtpService(CMtfTestCase& aTestCase) : CMtfSynchronousTestAction(aTestCase) |
|
66 { |
|
67 } |
|
68 |
|
69 /** |
|
70 Function : ~CMtfTestActionRemoveDefaultSmtpService |
|
71 Description : Destructor |
|
72 @internalTechnology |
|
73 @param : |
|
74 @return : |
|
75 @pre |
|
76 @post |
|
77 */ |
|
78 CMtfTestActionRemoveDefaultSmtpService::~CMtfTestActionRemoveDefaultSmtpService() |
|
79 { |
|
80 } |
|
81 |
|
82 /** |
|
83 Function : ExecuteActionL |
|
84 Description : Entry point for the this test action in the test framework |
|
85 @internalTechnology |
|
86 @param : none |
|
87 @return : void |
|
88 @pre none |
|
89 @post none |
|
90 */ |
|
91 void CMtfTestActionRemoveDefaultSmtpService::ExecuteActionL() |
|
92 { |
|
93 TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionRemoveDefaultSmtpService); |
|
94 CSmtpClientMtm* smtpClientMtm = reinterpret_cast<CSmtpClientMtm*> |
|
95 (ObtainParameterReferenceL<CBaseMtm>(TestCase(), ActionParameters().Parameter(0))); |
|
96 TRAPD( error, smtpClientMtm->RemoveDefaultServiceL() ); |
|
97 if (error != KErrNone) |
|
98 { |
|
99 // Failed |
|
100 TestCase().ERR_PRINTF2(_L("Failed to remove default SMTP service error(%d)"), error); |
|
101 TestCase().SetTestStepResult(EFail); |
|
102 } |
|
103 TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionRemoveDefaultSmtpService); |
|
104 TestCase().ActionCompletedL(*this); |
|
105 |
|
106 } |
|
107 |
|
108 |