summaryrefslogtreecommitdiffstats
path: root/kweather/metar_parser_test.cpp
blob: 8df147d2466a688731164611590db955abb44c88 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/****************************************************************************
 *           metar_parser_test.cpp  -  MetarParser Test Program
 *
 *         Run all of the unit tests with "make check". Run just this 
 *         test with "make metar_parser_test; ./metar_parser_test"
 *                          -------------------
 *         begin                : Wednesday June 16 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 <tqdatetime.h>
#include <tqfile.h>
#include <tqstringlist.h>

#include <krfcdate.h>

#include "stationdatabase.h"
#include "metar_parser.h"

void test1();
void test2();

void displayWeatherInfo(const struct WeatherInfo &wi);
const char *getString(const TQString &str);

int localUTCOffset = -300;

StationDatabase *stationDb;

bool anyFailed = false;

int main()
{
	bool found = false;
	
	// try the stations.dat file in the current directory first.
	TQString path("stations.dat");
	
	if (TQFile::exists(path))
	{
		found = true;
	}
	else
	{
		// If we couldn't find it, then maybe the build directory is not the
		// same as the source directory.  If that is the case, try to read it
		// from its location in the share/apps/kweatherservice directory, which
		// means that make install would have had to be done first before calling
		// make check so that the file will be there.
	
		TQString kdeDirs(getenv("TDEDIR"));
	
		path = kdeDirs + "/share/apps/kweatherservice/stations.dat";
		if (TQFile::exists(path))
		{
			found = true;
		}
	}
	
	if (found)
	{
		cout << "found stations.dat at " << path.latin1() << endl;
	}
	else
	{
		cout << "couldn't find stations.dat!!   try \"make install\" before \"make check\"" << endl;	
		return 1;
	}
	
	stationDb = new StationDatabase(path);

	test1();
	test2();

	delete stationDb;
	
	// If success, return 0, else return 1
	if (anyFailed)
	{
		return 1;
	}
	else
	{
		return 0;
	}
}

void test1()
{
	TQDate Date(2004, 6, 17);    // June 17th.
	TQTime Time(21, 7);  // hours, minutes,   seconds and ms defaults to 0

	// Construct a MetarParser object for our tests.
	MetarParser parser( stationDb, TDELocale::Imperial, Date, Time, localUTCOffset );

	struct WeatherInfo results = parser.processData("KUGN", "2004/06/18 00:55 KUGN 180055Z AUTO 04004KT 9SM SCT050 17/15 A3005 RMK AO2 SLP167 T01670150 TSNO");

	if (results.theWeather      == "cloudy2_night" &&
	    results.qsCoverList[0]  == "Scattered clouds at 5000 feet" &&
	    results.qsVisibility    == "9m" &&
	    results.qsPressure      == "30.05\" Hg" &&
	    results.qsTemperature   == "62.1°F" &&
	    results.qsDewPoint      == "59°F" &&
	    results.qsRelHumidity   == "89.7%" &&
	    results.qsWindSpeed     == "4 MPH" &&
	    results.qsWindChill.isNull() &&
	    results.qsHeatIndex.isNull() &&
	    results.qsWindDirection == "NE" &&
	    results.reportLocation  == "KUGN" &&
	    results.stationNeedsMaintenance == false)
	{	
		cout << "passed" << endl;
	}
	else
	{
		cout << "failed" << endl;
		displayWeatherInfo(results);
		anyFailed = true;
	}
}

void test2()
{
	TQDate Date(2004, 6, 18);    // June 18th.
	TQTime Time(18, 43);  // hours, minutes,   seconds and ms defaults to 0
	
	// Construct a MetarParser object for our tests.
	MetarParser parser( stationDb, TDELocale::Imperial, Date, Time, localUTCOffset );
	
	struct WeatherInfo results = parser.processData("KUGN", "2004/06/18 22:55 KUGN 182255Z 29005KT 10SM BKN110 21/13 A3010 RMK AO2 SLP187 T02110133");

	if (results.theWeather      == "cloudy3" &&
	    results.qsCoverList[0]  == "Broken clouds at 11000 feet" &&
	    results.qsVisibility    == "10m" &&
	    results.qsPressure      == "30.10\" Hg" &&
	    results.qsTemperature   == "70°F" &&
	    results.qsDewPoint      == "55.9°F" &&
	    results.qsRelHumidity   == "61.1%" &&
	    results.qsWindSpeed     == "5 MPH" &&
	    results.qsWindChill.isNull() &&
	    results.qsHeatIndex.isNull() &&
	    results.qsWindDirection == "WNW" &&
	    results.reportLocation  == "KUGN" &&
	    results.stationNeedsMaintenance == false)
	{
		cout << "passed" << endl;
	}
	else
	{
		cout << "failed" << endl;
		displayWeatherInfo(results);
		anyFailed = true;
	}
}

void displayWeatherInfo(const struct WeatherInfo &wi)
{
	cout << "theWeather: " << getString(wi.theWeather) << endl;
	cout << "clouds: "     << wi.clouds << endl;
	cout << "windMPH: "    << wi.windMPH << endl;
	cout << "tempC: "      << wi.tempC << endl;
	cout << "dewC: "       << wi.dewC << endl;
	cout << "heavy: "      << wi.heavy << endl;
	
	unsigned int i = 0;
	for ( TQStringList::ConstIterator it = wi.qsCoverList.begin(); 
	      it != wi.qsCoverList.end(); 
	      ++it, i++ ) {
		cout << "qsCoverList[" << i << "]: " << (*it).latin1() << endl;
	}
	i = 0;
	for ( TQStringList::ConstIterator it = wi.qsCurrentList.begin(); 
	      it != wi.qsCurrentList.end(); 
	      ++it, i++ ) {
		cout << "qsCurrentList[" << i << "]: " << (*it).latin1() << endl;
	}

	cout << "qsDate: "        << wi.qsDate.toString().latin1() << endl;
	cout << "qsPressure: "    << getString(wi.qsPressure) << endl;
	cout << "qsTemperature: " << getString(wi.qsTemperature) << endl;
	cout << "qsDewPoint: "    << getString(wi.qsDewPoint) << endl;
	cout << "qsRelHumidity: " << getString(wi.qsRelHumidity) << endl;
	cout << "qsTime: "        << wi.qsTime.toString().latin1() << endl;
	cout << "qsVisibility: "  << getString(wi.qsVisibility) << endl;
	cout << "qsWindSpeed: "   << getString(wi.qsWindSpeed) << endl;
	cout << "qsWindChill: "   << getString(wi.qsWindChill) << endl;
	cout << "qsHeatIndex: "   << getString(wi.qsHeatIndex) << endl;
	cout << "qsWindDirection: "   << getString(wi.qsWindDirection) << endl;
	cout << "reportLocation: "    << getString(wi.reportLocation) << endl;
	cout << "stationNeedsMaintenance: " << wi.stationNeedsMaintenance << endl;
}

static const char *nullString = "[null]";

const char *getString(const TQString &str)
{
	if (str.isNull())
	{
		return nullString;
	}
	else
	{
		return str.latin1();
	}
}