summaryrefslogtreecommitdiffstats
path: root/kweather/sun_test.cpp
blob: c9ce46cb31b93e2a423884485b3c03c930e9cbd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/****************************************************************************
 *              sun_test.cpp  -  Sun Rise and Set Test Program
 *                          -------------------
 *         begin                : Tuesday June 2 2004
 *         copyright            : (C) 2004 by John Ratke
 *         email                : jratke@comcast.net
 ****************************************************************************/

/****************************************************************************
 *                                                                          *
 *   This program is free software; you can redistribute it and/or modify   *
 *   it under the terms of the GNU General Public License as published by   *
 *   the Free Software Foundation; either version 2 of the License, or      *
 *   (at your option) any later version.                                    *
 *                                                                          *
 ****************************************************************************/

#include <iostream>
using namespace std;

#include <tqstring.h>
#include <tqdatetime.h>
#include <krfcdate.h>

#include "sun.h"


int main()
{
	bool anyFailed = false;
	
	TQString KUGN_Latitude("42-25N");
	TQString KUGN_Longitude("087-52W");
	TQDate Date(2004, 6, 1);    // June 1st.
	int localUTCOffset = -300;
	
	// Construct a sun object for our tests.
	Sun theSun( KUGN_Latitude, KUGN_Longitude, Date, localUTCOffset );
	
	TQTime civilStart = theSun.computeCivilTwilightStart();
	TQTime civilEnd   = theSun.computeCivilTwilightEnd();
	
	cout << "Testing Civil Twilight Calculations...";
	// Start should be 04:42:39    End should be 20:56:06
	if (civilStart.hour() == 4 && civilStart.minute() == 42 && civilStart.second() == 39 &&
	    civilEnd.hour() == 20 && civilEnd.minute() == 56 && civilEnd.second() == 06)
	{
		cout << "passed" << endl;
	}
	else
	{
		cout << "failed" << endl;
		anyFailed = true;
	}
	
	cout << "Testing Rise and Set Time Calculations...";
	
	TQTime rise = theSun.computeRiseTime();
	TQTime set  = theSun.computeSetTime();
	
	// Rise should be 05:16:35   Set should be 20:22:10
	if (rise.hour() == 5 && rise.minute() == 16 && rise.second() == 35 &&
	    set.hour() == 20 && set.minute() == 22 && set.second() == 10)
	{
		cout << "passed" << endl;
	}
	else
	{
		cout << "failed" << endl;
		anyFailed = true;
	}
	
	
	// If success, return 0, else return 1
	if (anyFailed)
	{
		return 1;
	}
	else
	{
		return 0;
	}
}