genericservices/taskscheduler/Test/Year2k/TC_TSCH_YEAR2000.cpp
changeset 31 ce057bb09d0b
parent 0 e4d67989cc36
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/genericservices/taskscheduler/Test/Year2k/TC_TSCH_YEAR2000.cpp	Fri Jun 04 16:20:51 2010 +0100
@@ -0,0 +1,643 @@
+// Copyright (c) 2003-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:
+//
+
+#include <e32base.h>
+#include <e32test.h>
+#include <csch_cli.h>
+#include <f32file.h>
+#include "Thelpers.h"
+#include "TestUtils.h"
+
+RTest TheTest(_L("TC_TSCH_YEAR2000"));
+LOCAL_D RFs TheFsSession;
+
+LOCAL_D RScheduler TheScheduler;
+
+_LIT(KMinimalTaskHandler, "MinimalTaskHandler");
+
+LOCAL_D void SetTimeTo1SecBefore(TTime& aTime)
+	{
+	TTimeIntervalSeconds secs(1);
+	TTime time = aTime-secs;	
+	SchSvrHelpers::SetHomeTimeL(time);
+	TBuf<30> dateString;
+	time.FormatL(dateString,(_L("%H%:1%T:%S %*E%*D %X%*N%Y %1 %2 %3")));
+	TheTest.Printf(_L("current time:%S\n"), &dateString);
+	}
+
+LOCAL_D void SetTime(TDateTime& aDateTime)
+	{
+	TTime time(aDateTime);	
+	SchSvrHelpers::SetHomeTimeL(time);
+	}
+
+LOCAL_D TTime ShowDueTime(TInt aScheduleId)
+	{
+	TScheduleState state;
+	TTime dueTime;
+	CArrayFixFlat<TScheduleEntryInfo>* entries = new CArrayFixFlat<TScheduleEntryInfo> (3);
+	CArrayFixFlat<TTaskInfo>* tasks = new CArrayFixFlat<TTaskInfo> (3);
+	TInt res = TheScheduler.GetScheduleL(aScheduleId, state, *entries, *tasks, dueTime);
+	TEST2(res, KErrNone);
+
+	delete tasks;
+	delete entries;
+
+	TBuf<30> dateString;
+	state.iDueTime.FormatL(dateString,(_L("%H%:1%T%*E%*D%X%*N%Y %1 %2 %3")));
+	TheTest.Printf(_L("due at:%S\n"), &dateString);
+	return state.iDueTime;
+	}
+
+LOCAL_D void AppendHourlyEntry(CArrayFixFlat<TScheduleEntryInfo>& aEntries, TInt aInterval,TInt aYear,
+							  TMonth aMonth, TInt aDay, TInt aHour, TInt aMinute)
+	{
+	TScheduleEntryInfo entry1;
+	TTime time;
+	time.HomeTime();
+	TDateTime dateTime1 (aYear, aMonth, aDay, aHour, aMinute, 0,0);
+	entry1.iStartTime = dateTime1;
+	entry1.iInterval = aInterval;
+	entry1.iIntervalType = EHourly;
+	entry1.iValidityPeriod = 0;
+	aEntries.AppendL(entry1);
+	}
+
+LOCAL_D void AppendDailyEntry(CArrayFixFlat<TScheduleEntryInfo>& aEntries, TInt aInterval,TInt aYear,
+							  TMonth aMonth, TInt aDay, TInt aHour, TInt aMinute)
+	{
+	TScheduleEntryInfo entry1;
+	TTime time;
+	time.HomeTime();
+	TDateTime dateTime1 (aYear, aMonth, aDay, aHour, aMinute, 0,0);
+	entry1.iStartTime = dateTime1;
+	entry1.iInterval = aInterval;
+	entry1.iIntervalType = EDaily;
+	entry1.iValidityPeriod = 0;
+	aEntries.AppendL(entry1);
+	}
+
+LOCAL_D void AppendMonthlyEntry(CArrayFixFlat<TScheduleEntryInfo>& aEntries, TInt aInterval,
+				TInt aYear, TMonth aMonth, TInt aDate, TInt aHour,TInt aMinute)
+	{
+	TScheduleEntryInfo entry1;
+	TTime time;
+	time.HomeTime();
+	TDateTime dateTime1 (aYear, aMonth, aDate, aHour, aMinute, 0,0);
+	entry1.iStartTime = dateTime1;
+	entry1.iInterval = aInterval;
+	entry1.iIntervalType = EMonthly;
+	entry1.iValidityPeriod = 0;
+	aEntries.AppendL(entry1);
+	}
+
+LOCAL_D void AppendYearlyEntry(CArrayFixFlat<TScheduleEntryInfo>& aEntries, TInt aInterval,
+				TInt aYear, TMonth aMonth,TInt aDate, TInt aHour, TInt aMinute)
+	{
+	TScheduleEntryInfo entry1;
+	TDateTime dateTime1 (aYear, aMonth, aDate, aHour, aMinute, 0,0);
+	entry1.iStartTime = dateTime1;
+	entry1.iInterval = aInterval;
+	entry1.iIntervalType = EYearly;
+	entry1.iValidityPeriod = 0;
+	aEntries.AppendL(entry1);
+	}
+
+
+LOCAL_D TInt testCreateBoundarySchedule1(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+//times post-boundary (to show boundary crossed properly)
+	AppendYearlyEntry(*entryList, 10, 1999, EJanuary, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, EFebruary, 27, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, EMarch, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, ESeptember, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, ESeptember, 8, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, ESeptember, 9, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2000, EJanuary, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2000, EFebruary, 27, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2000, EFebruary, 28, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2000, EMarch, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2001, EJanuary, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2001, EMarch, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2004, EFebruary, 28, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2004, EMarch, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+LOCAL_D TInt testCreateBoundarySchedule2(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	//times on pre-boundary dates(to show they're recognized as valid)
+	//commented-out lines are handled below
+	AppendYearlyEntry(*entryList, 10, 1998, EDecember, 30, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, EFebruary, 26, 0, 0);
+//	AppendYearlyEntry(*entryList, 10, 1999, EFebruary, 27, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, EAugust, 30, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, ESeptember, 7, 0, 0);
+//	AppendYearlyEntry(*entryList, 10, 1999, ESeptember, 8, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 1999, EDecember, 30, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2000, EFebruary, 26, 0, 0);
+//	AppendYearlyEntry(*entryList, 10, 2000, EFebruary, 27, 0, 0);
+//	AppendYearlyEntry(*entryList, 10, 2000, EFebruary, 28, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2000, EDecember, 30, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2001, EFebruary, 27, 0, 0);
+	AppendYearlyEntry(*entryList, 10, 2004, EFebruary, 27, 0, 0);
+	//AppendYearlyEntry(*entryList, 10, 2004, EFebruary, 28, 0, 0);
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+LOCAL_D TInt testCreateHourlyTimeSpanSchedule1(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendHourlyEntry(*entryList, 213*24, 1999, EJune, 0, 0, 0);
+	AppendHourlyEntry(*entryList, 214*24, 1999, EJune, 0, 0, 0);
+	AppendHourlyEntry(*entryList, 273*24, 1999, EJune, 0, 0, 0);
+	AppendHourlyEntry(*entryList, 274*24, 1999, EJune, 0, 0, 0);
+	AppendHourlyEntry(*entryList, 305*24, 1999, EJune, 0, 0, 0);
+	AppendHourlyEntry(*entryList, 366*24, 1999, EJuly, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+LOCAL_D TInt testCreateHourlyTimeSpanSchedule2(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendHourlyEntry(*entryList, 365*24, 2000, EAugust, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+	
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+LOCAL_D TInt testCreateDailyTimeSpanSchedule1(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendDailyEntry(*entryList, 213, 1999, EJune, 0, 0, 0);
+	AppendDailyEntry(*entryList, 214, 1999, EJune, 0, 0, 0);
+	AppendDailyEntry(*entryList, 273, 1999, EJune, 0, 0, 0);
+	AppendDailyEntry(*entryList, 274, 1999, EJune, 0, 0, 0);
+	AppendDailyEntry(*entryList, 305, 1999, EJune, 0, 0, 0);
+	AppendDailyEntry(*entryList, 366, 1999, EJuly, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+LOCAL_D TInt testCreateDailyTimeSpanSchedule2(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendDailyEntry(*entryList, 365, 2000, EAugust, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+LOCAL_D TInt testCreateMonthlyTimeSpanSchedule1(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendMonthlyEntry(*entryList, 7, 1999, EMay, 30, 0, 0);
+	AppendMonthlyEntry(*entryList, 7, 1999, EJune, 0, 0, 0);
+	AppendMonthlyEntry(*entryList, 8, 1999, EJune, 29, 0, 0);
+	AppendMonthlyEntry(*entryList, 8, 1999, EJuly, 0, 0, 0);
+	AppendMonthlyEntry(*entryList, 9, 1999, EJuly, 0, 0, 0);
+	AppendMonthlyEntry(*entryList, 12, 1999, EJuly, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+
+LOCAL_D TInt testCreateMonthlyTimeSpanSchedule2(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendMonthlyEntry(*entryList, 12, 2000, EAugust, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+LOCAL_D TInt testCreateYearlyTimeSpanSchedule1(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendYearlyEntry(*entryList, 1, 1998, EDecember, 30, 0, 0);
+	AppendYearlyEntry(*entryList, 1, 1999, EJanuary, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 1, 1999, EFebruary, 27, 0, 0);
+	AppendYearlyEntry(*entryList, 1, 1999, EMarch, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 1, 1999, EApril, 0, 0, 0);
+	AppendYearlyEntry(*entryList, 1, 1999, EJuly, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+
+LOCAL_D TInt testCreateYearlyTimeSpanSchedule2(TSchedulerItemRef& aRef)
+	{
+	CArrayFixFlat<TScheduleEntryInfo>* entryList;
+	entryList = new (ELeave) CArrayFixFlat<TScheduleEntryInfo>(3);
+	TName name(_L("and another off-peak"));
+	aRef.iName = name;
+
+	AppendYearlyEntry(*entryList, 1, 2000, EAugust, 0, 0, 0);
+
+	TInt res = TheScheduler.CreatePersistentSchedule(aRef, *entryList);
+	TEST2(res, KErrNone);
+
+	TInt count = entryList->Count();
+	delete entryList;
+	return count;
+	}
+
+
+LOCAL_D TInt testScheduleTask(TInt aScheduleId)
+	{
+	HBufC* data = HBufC::NewL(20);
+	*data = _L("the data");
+	TTaskInfo taskInfo;
+	taskInfo.iTaskId = 0;
+	taskInfo.iName = (_L("Y2K testing"));
+	taskInfo.iPriority = 2;
+	taskInfo.iRepeat = -1;
+	TInt res = TheScheduler.ScheduleTask(taskInfo, *data, aScheduleId);
+	TEST2(res, KErrNone);
+	delete data;
+	return taskInfo.iTaskId;
+	}
+
+LOCAL_D void doTestLoopL(TInt aId, TInt aCount)
+	{
+	TTime time = ShowDueTime(aId);
+	for (TInt i=0;i<aCount;i++)
+		{
+		SetTimeTo1SecBefore(time);
+		//wait for exe to launch
+		TEST2(STaskSemaphore::WaitL(KDefaultTimeout), KErrNone); 
+		CleanupHelpers::KillProcess(KMinimalTaskHandler);
+		//	
+		if (i<(aCount-1))//i.e. if it's going to execute
+			time = ShowDueTime(aId);
+		}
+	}
+
+/**
+@SYMTestCaseID          SYSLIB-SCHSVR-CT-1029
+@SYMTestCaseDesc	    Tests for boundary/valid dates testing
+@SYMTestPriority 	    High
+@SYMTestActions  	    Create a schedules, with one entry for each boundary pair and with a task to execute 
+                        immediately after boundary.Set time to 5 seconds before each boundary, task should be
+						executed in 5 seconds.Ensure pre and post boundary times are valid.
+						also reports the day on each of these dates
+						Expected output:
+						due at:Thu 31 Dec 1998
+						press any key to continue"
+						-then task should execute in 2 seconds
+						due at:Fri 1 Jan 1999
+						press any key to continue"
+						-then task should execute in 2 seconds
+						due at:Sat 27 Feb 1999
+						press any key to continue"
+						-task in 2 seconds
+						etc etc for all times listed in doc
+@SYMTestExpectedResults Test must not fail
+@SYMREQ                 REQ0000
+*/		
+LOCAL_D void doBoundaryTestL()
+//*3.4.1.1	-create a schedules, with one entry for each boundary pair,
+//			& with a task to execute immediately after boundary
+//			set time to 5 seconds before each boundary, task should be executed in 5 seconds
+//*3.4.2.1	-also ensures all (pre-and-)post boundary times are valid
+//*3.4.2.4.8-also reports the day on each of these dates
+
+//expected output:
+//
+//"due at:Thu 31 Dec 1998
+//press any key to continue"
+//	-then task should execute in 2 seconds
+//"due at:Fri 1 Jan 1999
+//press any key to continue"
+//	-then task should execute in 2 seconds
+//"due at:Sat 27 Feb 1999
+//press any key to continue"
+//	-task in 2 seconds
+//etc etc for all times listed in doc
+	{
+	
+	TDateTime dateTime(1998, EAugust, 1, 17, 0, 0, 0);
+	SetTime(dateTime);
+	TSchedulerItemRef ref;
+	TInt count = testCreateBoundarySchedule1(ref);
+	TInt taskId;
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TInt res = TheScheduler.DeleteTask(taskId);
+	TEST2(res, KErrNone);
+	res = TheScheduler.DeleteSchedule(ref.iHandle);
+	TEST2(res, KErrNone);
+
+	SetTime(dateTime);
+	count = testCreateBoundarySchedule2(ref);
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TheScheduler.DeleteTask(taskId);
+	TheScheduler.DeleteSchedule(ref.iHandle);
+	}
+/**
+@SYMTestCaseID          SYSLIB-SCHSVR-CT-1030
+@SYMTestCaseDesc	    Tests for hourly time span test
+@SYMTestPriority 	    High
+@SYMTestActions  	    Create a hourly time span schedule and execute the test
+@SYMTestExpectedResults Test must not fail
+@SYMREQ                 REQ0000
+*/		
+LOCAL_D void doHourlyTimeSpanTestL()
+	{
+	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SCHSVR-CT-1030 "));
+	TDateTime dateTime(1999, EAugust, 1, 17, 0, 0, 0);
+	SetTime(dateTime);
+	TSchedulerItemRef ref;
+	TInt count = testCreateHourlyTimeSpanSchedule1(ref);
+	TInt taskId;
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TInt res = TheScheduler.DeleteTask(taskId);
+	TEST2(res, KErrNone);
+	res = TheScheduler.DeleteSchedule(ref.iHandle);
+	TEST2(res, KErrNone);
+
+	TDateTime dt2(2000, EAugust,1,17,0,0,0);
+	SetTime(dt2);
+	count = testCreateHourlyTimeSpanSchedule2(ref);
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TheScheduler.DeleteTask(taskId);
+	TheScheduler.DeleteSchedule(ref.iHandle);
+	}
+
+/**
+@SYMTestCaseID          SYSLIB-SCHSVR-CT-1338
+@SYMTestCaseDesc	    Tests for daily time span test
+@SYMTestPriority 	    High
+@SYMTestActions  	    Create a daily time span schedule and execute the test
+@SYMTestExpectedResults Test must not fail
+@SYMREQ                 REQ0000
+*/		
+LOCAL_D void doDailyTimeSpanTestL()
+	{
+	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SCHSVR-CT-1338 "));
+	TDateTime dateTime(1999, EAugust, 1, 17, 0, 0, 0);
+	SetTime(dateTime);
+	TSchedulerItemRef ref;
+	TInt count = testCreateDailyTimeSpanSchedule1(ref);
+	TInt taskId;
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TInt res = TheScheduler.DeleteTask(taskId);
+	TEST2(res, KErrNone);
+	res = TheScheduler.DeleteSchedule(ref.iHandle);
+	TEST2(res, KErrNone);
+
+	TDateTime dt2(2000, EAugust,1,17,0,0,0);
+	SetTime(dt2);
+	count = testCreateDailyTimeSpanSchedule2(ref);
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TheScheduler.DeleteTask(taskId);
+	TheScheduler.DeleteSchedule(ref.iHandle);
+	}
+
+/**
+@SYMTestCaseID          SYSLIB-SCHSVR-CT-1339
+@SYMTestCaseDesc	    Tests for monthly time span test
+@SYMTestPriority 	    High
+@SYMTestActions  	    Create a monthly time span schedule and execute the test
+@SYMTestExpectedResults Test must not fail
+@SYMREQ                 REQ0000
+*/		
+LOCAL_D void doMonthlyTimeSpanTestL()
+	{
+	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SCHSVR-CT-1339 "));
+
+	TDateTime dateTime(1999, EAugust, 1, 17, 0, 0, 0);
+	SetTime(dateTime);
+	TSchedulerItemRef ref;
+	TInt count = testCreateMonthlyTimeSpanSchedule1(ref);
+	TInt taskId;
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TInt res = TheScheduler.DeleteTask(taskId);
+	TEST2(res, KErrNone);
+	res = TheScheduler.DeleteSchedule(ref.iHandle);
+	TEST2(res, KErrNone);
+
+	TDateTime dt2(2000, EAugust,1,17,0,0,0);
+	SetTime(dt2);
+	count = testCreateMonthlyTimeSpanSchedule2(ref);
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TheScheduler.DeleteTask(taskId);
+	TheScheduler.DeleteSchedule(ref.iHandle);
+	}
+
+/**
+@SYMTestCaseID          SYSLIB-SCHSVR-CT-1340
+@SYMTestCaseDesc	    Tests for yearly time span test
+@SYMTestPriority 	    High
+@SYMTestActions  	    Create a yearly time span schedule and execute the test
+@SYMTestExpectedResults Test must not fail
+@SYMREQ                 REQ0000
+*/		
+LOCAL_D void doYearlyTimeSpanTestL()
+	{
+	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SCHSVR-CT-1340 "));
+
+	TDateTime dateTime(1999, EAugust, 1, 17, 0, 0, 0);
+	SetTime(dateTime);
+	TSchedulerItemRef ref;
+	TInt count = testCreateYearlyTimeSpanSchedule1(ref);
+	TInt taskId;
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TInt res = TheScheduler.DeleteTask(taskId);
+	TEST2(res, KErrNone);
+	res = TheScheduler.DeleteSchedule(ref.iHandle);
+	TEST2(res, KErrNone);
+
+	TDateTime dt2(2000, EAugust,1,17,0,0,0);
+	SetTime(dt2);
+	count = testCreateYearlyTimeSpanSchedule2(ref);
+	taskId = testScheduleTask(ref.iHandle);
+	doTestLoopL(ref.iHandle, count);
+	TheScheduler.DeleteTask(taskId);
+	TheScheduler.DeleteSchedule(ref.iHandle);
+	}
+
+LOCAL_D void doTimeSpanTestL()
+//*3.4.2.7	-for each time-span, a set of schedules with the interval defined in terms of 
+//			hours, days, weeks, months, whose interval=the time span: then set time to some 
+//			time in between start of span & end: schedules should be next due at end of each
+//			respective time-span
+
+//			-test time-spans measured in days & months.
+//			-so, 1 schedule for each of these, including 1 entry for each span.
+//			-each entry starts at start of span, repeats at end(defined in terms of x days/weeks/months.)
+//			-for each entry, set time to just before end of span, check it goes off
+	{
+	TheTest.Printf(_L("\nTesting time-spans...\n"));
+	TheTest.Printf(_L("Hourly time-spans...\n"));
+	doHourlyTimeSpanTestL();
+	TheTest.Printf(_L("Daily time-spans...\n"));
+	doDailyTimeSpanTestL();
+	TheTest.Printf(_L("Monthly time-spans...\n"));
+	doMonthlyTimeSpanTestL();
+	TheTest.Printf(_L("Yearly time-spans...\n"));
+	doYearlyTimeSpanTestL();
+	}
+
+static void DoTestsL()
+	{
+	TheTest.Next(_L("Delete old files"));
+	SchSvrHelpers::DeleteScheduleFilesL();
+
+	TheTest.Next(_L("Connect to Scheduler"));
+	TInt res=TheScheduler.Connect();
+	TEST2(res, KErrNone);
+
+	TheTest.Next(_L("Registering Client"));
+	res = SchSvrHelpers::RegisterClientL(TheScheduler);
+	TEST2(res, KErrNone);
+	
+	// Create exe Semaphore
+	STaskSemaphore sem;
+	sem.CreateL();
+
+	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SCHSVR-CT-1029 Boundary/valid dates testing"));
+	doBoundaryTestL();
+	TheTest.Next(_L("Time span testing"));
+	doTimeSpanTestL();
+	
+	// close exe Semaphore
+	sem.Close();
+	
+	//Tidying up so next test will be clear.
+	TheTest.Next(_L("Delete all schedules"));
+	SchSvrHelpers::DeleteAllSchedulesL(TheScheduler);
+ 	TheScheduler.Close();	
+	}
+
+GLDEF_C TInt E32Main()
+    {
+	__UHEAP_MARK;
+
+	CTrapCleanup* cleanup = CTrapCleanup::New();
+	TEST(cleanup != NULL);
+	
+	TEST2(TheFsSession.Connect(), KErrNone);
+
+	TheTest.Title();
+	TheTest.Start(_L("Year 2000"));
+
+	//If the previous test fails, SCHSVR.exe may stay in memory.
+	TRAPD(err,CleanupHelpers::TestCleanupL());
+	TEST2(err, KErrNone);
+
+	TRAP(err, DoTestsL());
+	TEST2(err,KErrNone);
+	TRAP(err,CleanupHelpers::TestCleanupL());
+	TEST2(err, KErrNone);
+	
+	TheTest.End();
+	TheFsSession.Close();
+	TheTest.Close();
+	
+	delete cleanup;	
+
+	__UHEAP_MARKEND;
+	return KErrNone;
+	}