os/persistentdata/loggingservices/eventlogger/test/src/t_logservercrash.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2010 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 // T_LOGSERVCRASH.CPP
    15 // This tests the fix implemented for DEF047320
    16 // 
    17 #include <s32file.h>
    18 #include <e32math.h>
    19 #include "t_logutil2.h"
    20 #include <logview.h>
    21 
    22 RTest TheTest(_L("t_logservercrash"));
    23 
    24 const TInt KTestEventNum = 10;
    25 const TLogDurationType KTestDurationType1 = 1;
    26 const TLogDuration KTestDuration1 = 0x1234;
    27 const TLogFlags KTestFlags1 = 0x5;
    28 const TLogLink KTestLink1 = 0x1234;
    29 
    30 _LIT(KTestRemoteParty1, "Remote Party");
    31 _LIT(KTestDirection1, "Direction");
    32 _LIT(KTestStatus1, "Status");
    33 _LIT(KTestSubject1, "Subject");
    34 _LIT(KTestNumber1, "TheNumber");
    35 _LIT8(KTestData1, "ABCDEFGH");
    36 
    37 TBool TheMatchingIsEnabled = EFalse;
    38 
    39 
    40 #define SERVER_NAME _L("LogServ*")
    41 
    42 /**
    43 @SYMTestCaseID          SYSLIB-LOGENG-CT-1021
    44 @SYMTestCaseDesc	    Tests for killing the server
    45                         Tests for RProcess::Kill(),RThread::Kill() function
    46 @SYMTestPriority 	    High
    47 @SYMTestActions  	    If EKA2 find the process and kill it, for EKA1 find thread and kill it
    48 @SYMTestExpectedResults Test must not fail
    49 @SYMREQ                 REQ0000
    50 */	
    51 LOCAL_C void TestKillServerL()
    52 	{	
    53 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1021 Before Killing Server "));
    54 	User::After(2000000);
    55 	
    56 	// for EKA2 find process and Kill
    57 	// Note: this needs CAPABILITY PowerMgmt
    58 	TFindProcess findProcess(SERVER_NAME);
    59 	TFullName result;
    60 	LEAVE_IF_ERROR( findProcess.Next(result) );
    61 	
    62 	RProcess server;
    63 	LEAVE_IF_ERROR( server.Open(findProcess, EOwnerProcess) );
    64 	server.Kill(0);		
    65  
    66 	TheTest.Next(_L("Server is Killed"));
    67 	User::After(2000000);
    68 	}
    69 
    70 /**
    71 @SYMTestCaseID          SYSLIB-LOGENG-CT-1022
    72 @SYMTestCaseDesc	    Tests for operations on log database
    73 @SYMTestPriority 	    High
    74 @SYMTestActions  	    Check by add new event,change the event,and get event and check for integrity of data 
    75 @SYMTestExpectedResults Test must not fail
    76 @SYMREQ                 REQ0000
    77 */	
    78 LOCAL_C void TestEventViewL(CLogClient& aClient)
    79 	{
    80 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1022 "));
    81 	CTestActive* active = new(ELeave)CTestActive();
    82 	CleanupStack::PushL(active);
    83 
    84 	CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
    85 	changeObs->SetActive();
    86 
    87   	CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
    88 	CleanupStack::PushL(view);
    89 
    90 	CLogEvent* event;
    91 	TLogId id;
    92 	TTime now;
    93 	now.UniversalTime();
    94 	TInt count;
    95 
    96 	for(count = 0; count < KTestEventNum; count++)
    97 		{
    98 		event = CLogEvent::NewL();
    99 		CleanupStack::PushL(event);
   100 		event->SetEventType(KLogCallEventTypeUid);
   101 
   102 		//User::After(Math::Random() % 100000);
   103 		User::After(1000000);
   104 		active->StartL();
   105 		aClient.AddEvent(*event, active->iStatus);
   106 		CActiveScheduler::Start();
   107 
   108 		TEST2(active->iStatus.Int(), KErrNone);
   109 		TEST(event->EventType() == KLogCallEventTypeUid);
   110 		TEST(event->Description().Length() > 0);
   111 		TEST(event->Time() >= now);
   112 
   113 		now = event->Time();
   114 		id = event->Id();
   115 		
   116 		event->SetRemoteParty(KTestRemoteParty1);
   117 		event->SetDirection(KTestDirection1);
   118 		event->SetDurationType(KTestDurationType1);
   119 		event->SetDuration(KTestDuration1);
   120 		event->SetStatus(KTestStatus1);
   121 		event->SetSubject(KTestSubject1);
   122 		event->SetNumber(KTestNumber1);
   123 		event->SetLink(KTestLink1);
   124 		event->SetDataL(KTestData1);
   125 		event->SetFlags(KTestFlags1);
   126 		event->SetContact((TLogContactItemId) count+1);
   127 
   128 		User::After(Math::Random() % 100000);
   129 		active->StartL();
   130 		aClient.ChangeEvent(*event, active->iStatus);
   131 		CActiveScheduler::Start();
   132 
   133 		//If the test fails on the next line with -1 or -12 error, it is possible that the contacts database is missing:
   134 		//c:\private\10003a73\SQLite__Contacts.cdb. Copy it to the specified location and rerun the test.
   135 		TEST2(active->iStatus.Int(), KErrNone);
   136 		TEST(event->EventType() == KLogCallEventTypeUid);
   137 		TEST(event->RemoteParty() == KTestRemoteParty1);
   138 		TEST(event->Direction() == KTestDirection1);
   139 		TEST(event->DurationType() == KTestDurationType1);
   140 		TEST(event->Duration() == KTestDuration1);
   141 		TEST(event->Status() == KTestStatus1);
   142 		TEST(event->Subject() == KTestSubject1);
   143 		TEST(event->Number() == KTestNumber1);
   144 		TEST(event->Link() == KTestLink1);
   145 		TEST(event->Data() == KTestData1);
   146 		TLogFlags eventFlags;
   147 		if(TheMatchingIsEnabled)
   148 			{
   149 			eventFlags=KTestFlags1|KLogEventContactSearched;
   150 			}
   151 		else
   152 			{
   153 			eventFlags=KTestFlags1;
   154 			}
   155 		//If the test fails on the next line, it is quite possible that there is a
   156 		//z:\private\10202be9a\101f401d.txt file that sets the contacts match count to 0.
   157 		//Delete the file and run the test again.
   158 		TEST(event->Flags() == eventFlags);
   159 		TEST(event->Contact()==(TLogContactItemId) count+1);
   160 
   161 		CleanupStack::PopAndDestroy(); // event;
   162 
   163 		event = CLogEvent::NewL();
   164 		CleanupStack::PushL(event);
   165 
   166 		event->SetId(id);
   167 		active->StartL();
   168 		aClient.GetEvent(*event, active->iStatus);
   169 		CActiveScheduler::Start();
   170 
   171 		TEST2(active->iStatus.Int(), KErrNone);
   172 		TEST(event->EventType() == KLogCallEventTypeUid);
   173 		TEST(event->RemoteParty() == KTestRemoteParty1);
   174 		TEST(event->Direction() == KTestDirection1);
   175 		TEST(event->DurationType() == KTestDurationType1);
   176 		TEST(event->Duration() == KTestDuration1);
   177 		TEST(event->Status() == KTestStatus1);
   178 		TEST(event->Subject() == KTestSubject1);
   179 		TEST(event->Number() == KTestNumber1);
   180 		TEST(event->Link() == KTestLink1);
   181 		TEST(event->Data() == KTestData1);
   182 		TEST(event->Flags() == eventFlags);
   183 		TEST(event->Contact()==(TLogContactItemId) count+1);
   184 		CleanupStack::PopAndDestroy(); // event;
   185 		}
   186 
   187 	CleanupStack::PopAndDestroy(3, active); // Delete view, changeObs, active
   188 	}
   189 
   190 /**
   191  This code tests that the log engine will restart automatically
   192  by killing the Log engine server and then checking that
   193  a test event can be added.
   194  Details can be found in DEF047320
   195  
   196  */
   197 void doTestsL() 
   198 	{
   199 	TheMatchingIsEnabled = TestUtils::MatchingEnabledL();
   200 	
   201 	// test 0 adds an event
   202 	TestUtils::Initialize(_L("t_logservercrash"));
   203 	TestUtils::DeleteDatabaseL();
   204 
   205 	CLogClient* client = CLogClient::NewL(theFs);
   206 	CleanupStack::PushL(client);
   207 
   208 	CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
   209 	CleanupStack::PushL(notifier);
   210 
   211 	TheTest.Start(_L("Event View With No Filter: Before Killing Sever"));
   212 	TheTest.Next(_L("Test Add Event"));
   213 	TestEventViewL(*client);
   214 	theLog.Write(_L8("Test 0 OK\n"));
   215 
   216 	// Test 1 stops the server
   217 	TheTest.Next(_L("Test Kill Server"));
   218 	TestKillServerL();
   219 	theLog.Write(_L8("Test 1 OK\n"));
   220 
   221 	// Test 2 checks the server is going again
   222 	TheTest.Next(_L("Event View With No Filter : After Killing Sever"));
   223 	TheTest.Next(_L("Test Add Event"));
   224 	TestEventViewL(*client);
   225 	theLog.Write(_L8("Test 2 OK\n"));
   226 
   227 	CleanupStack::PopAndDestroy(2);
   228 	}