// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// Example CTestStep derived implementation
//
//
#include <schinfo.h>
#include <schinfointernal.h>
#include "DEF061595_Step.h"
#include "Te_floating_scheduleSuiteDefs.h"
#include "Thelpers.h"
STaskSemaphore sem10;
CDEF061595_Step::~CDEF061595_Step()
/**
* Destructor
*/
{
}
CDEF061595_Step::CDEF061595_Step()
/**
* Constructor
*/
{
// **MUST** call SetTestStepName in the constructor as the controlling
// framework uses the test step name immediately following construction to set
// up the step's unique logging ID.
SetTestStepName(KDEF061595_Step);
}
TVerdict CDEF061595_Step::doTestStepPreambleL()
/**
* @return - TVerdict code
* Override of base class virtual
*/
{
SetTestStepResult(EFail);
CTe_floating_scheduleSuiteStepBase::doTestStepPreambleL();
// Delete old files.
SchSvrHelpers::DeleteScheduleFilesL();
sem10.CreateL();
TInt i = TheScheduler.Connect();
TESTL (i==KErrNone);
// Registering Client
i = SchSvrHelpers::RegisterClientL(TheScheduler);
TESTL (i==KErrNone);
// create P&S variables for condition based tests
User::LeaveIfError(RProperty::Define(KTestUid, KTestKey8, 0));
SetTestStepResult(EPass);
return TestStepResult();
}
/*
@file
@SYMTestCaseID SYSLIB-SCHSVR-CIT-1368
@SYMTestCaseDesc DEF061595 - Schedule timers incorrectly expire when system time is changed
@SYMTestPriority High
@SYMTestActions For time and condition based test schedule task and check it floats when scheduled in a timezone that's not GMT, check also that the schedule fires correctly when it is enabled before the time and offset is changed
@SYMTestExpectedResults The test must not fail.
@SYMDEF DEF061595
*/
TVerdict CDEF061595_Step::doTestStepL()
/**
* @return - TVerdict code
* Override of base class pure virtual
* Our implementation only gets called if the base class doTestStepPreambleL() did
* not leave. That being the case, the current test result value will be EPass.
*/
{
SetTestStepResult(EFail);
_LIT(KTestName1, "DEF061595 - Time-Based");
_LIT(KTaskData1, "This is some really exciting task data (number 1)");
_LIT(KTestName2, "DEF061595 - Condition-Based");
_LIT(KTaskData2, "This is some really exciting task data (number 2)");
// Tests with timezone set to Europe, London
RTz tz;
tz.Connect();
CTzId* tzId = CTzId::NewL(2592); //set the timezone to Europe/London
CleanupStack::PushL(tzId);
tz.SetTimeZoneL(*tzId);
// Set the time to a known value, since this makes testing much easier (and more
// repeatable).
SchSvrHelpers::SetUTCTimeL(TTime(TDateTime(2000, EJanuary, 1, 9, 0, 0, 0))); // 9:00 am
// Prepare schedules describing when we want the tasks to run (3:00 pm & 3:01 pm)
// Creates a time based daily transient schedule
TSchedulerItemRef ref1;
// This is the time when we want the time-based schedule to fire
TDateTime datetime1(2000, EJanuary, 1, 15, 0, 0, 0);
TTsTime startTimeForSchedule(datetime1, EFalse); // 3:00 pm
{
CScheduleEntryInfoArray* entryList = new (ELeave) CScheduleEntryInfoArray(1);
CleanupStack::PushL(entryList);
TScheduleEntryInfo2 entry1 (startTimeForSchedule, EDaily, 1, 30);
entryList->AppendL(entry1);
// Associate a task with the time-based schedule
TTaskInfo taskInfo1;
taskInfo1.iName = KTestName1;
taskInfo1.iPriority = 2;
taskInfo1.iRepeat = 0;
// Create some data associated with this task
HBufC* taskData1 = KTaskData1().AllocLC();
User::LeaveIfError(TheScheduler.ScheduleTask(taskInfo1, *taskData1, ref1, *entryList));
CleanupStack::PopAndDestroy(2); // entryList, taskData1
}
// Disable the schedule whilst we set it up
User::LeaveIfError(TheScheduler.DisableSchedule(ref1.iHandle));
// Creates a condition based transient schedule
TSchedulerItemRef ref2;
// This is the time when we want the condition-based schedule to fire
TDateTime datetime2(2000, EJanuary, 1, 15, 1, 0, 0);
TTsTime defaultRuntime(datetime2, EFalse); // 3:01 pm
{
CSchConditionArray* conditionList = new (ELeave) CSchConditionArray(1);
CleanupStack::PushL(conditionList);
TTaskSchedulerCondition condition1;
condition1.iCategory = KTestUid;
condition1.iKey = KTestKey1;
condition1.iState = 10;
condition1.iType = TTaskSchedulerCondition::EEquals;
conditionList->AppendL(condition1);
// Associate a task with the condition-based schedule
TTaskInfo taskInfo2;
taskInfo2.iName = KTestName2;
taskInfo2.iPriority = 2;
taskInfo2.iRepeat = 0;
// Create some data associated with this task
HBufC* taskData2 = KTaskData2().AllocLC();
User::LeaveIfError(TheScheduler.ScheduleTask(taskInfo2, *taskData2, ref2, *conditionList, defaultRuntime));
CleanupStack::PopAndDestroy(2); // taskData2, conditionList
}
// Disable the schedule whilst we set it up
User::LeaveIfError(TheScheduler.DisableSchedule(ref2.iHandle));
// This step is identical to the hometime_floatStep except for the schedules
// being enabled BEFORE the time is changed in this case. As would be normal behaviour
User::LeaveIfError(TheScheduler.EnableSchedule(ref1.iHandle));
User::LeaveIfError(TheScheduler.EnableSchedule(ref2.iHandle));
// Set UTC offset to +1Hr by moving to Europe, Paris
tzId = CTzId::NewL(2656); //set the timezone to Europe/Paris
tz.SetTimeZoneL(*tzId);
SchSvrHelpers::SetUTCTimeL(TTime(TDateTime(2000, EJanuary, 1, 13, 59, 50, 0))); // 1:59.50 pm
// Now wait for the time-based schedule to fire
TESTL(STaskSemaphore::WaitL(KDefaultTimeout) == KErrNone);
TTime timeNow;
timeNow.HomeTime();
TESTL(SchSvrHelpers::IsTimeTheSameNoSeconds(TTsTime(timeNow, EFalse), startTimeForSchedule));
// Now wait for the condition-based schedule to fire
TESTL(STaskSemaphore::WaitL(KDefaultTimeout) == KErrNone);
timeNow.HomeTime();
TESTL(SchSvrHelpers::IsTimeTheSameNoSeconds(TTsTime(timeNow, EFalse), defaultRuntime));
CleanupStack::PopAndDestroy(); // timezone ID
CleanupHelpers::KillProcess(KMinimalTaskHandler);
SetTestStepResult(EPass);
return TestStepResult();
}
TVerdict CDEF061595_Step::doTestStepPostambleL()
/**
* @return - TVerdict code
* Override of base class virtual
*/
{
SetTestStepResult(EFail);
CTe_floating_scheduleSuiteStepBase::doTestStepPostambleL();
sem10.Close();
// Delete all schedules
SchSvrHelpers::DeleteAllSchedulesL(TheScheduler);
SchSvrHelpers::Pause(2);
// Delete old files
SchSvrHelpers::DeleteScheduleFilesL();
TheScheduler.Close();
SetTestStepResult(EPass);
return TestStepResult();
}