summaryrefslogtreecommitdiff
path: root/android/sdl_android/src/androidTest/java/com/smartdevicelink/test/rpc/datatypes/WeatherServiceManifestTests.java
blob: cbd65fae761dfee22c72ac0e993e12c7e38c9e33 (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
package com.smartdevicelink.test.rpc.datatypes;

import com.smartdevicelink.proxy.rpc.WeatherServiceManifest;
import com.smartdevicelink.test.JsonUtils;
import com.smartdevicelink.test.Test;

import junit.framework.TestCase;

import org.json.JSONException;
import org.json.JSONObject;

import java.util.Iterator;

/**
 * This is a unit test class for the SmartDeviceLink library project class :
 * {@link com.smartdevicelink.proxy.rpc.WeatherServiceManifest}
 */
public class WeatherServiceManifestTests extends TestCase {

	private WeatherServiceManifest msg;

	@Override
	public void setUp(){
		msg = new WeatherServiceManifest();

		msg.setCurrentForecastSupported(Test.GENERAL_BOOLEAN);
		msg.setMaxHourlyForecastAmount(Test.GENERAL_INT);
		msg.setMaxMinutelyForecastAmount(Test.GENERAL_INT);
		msg.setMaxMultidayForecastAmount(Test.GENERAL_INT);
		msg.setWeatherForLocationSupported(Test.GENERAL_BOOLEAN);
	}

	/**
	 * Tests the expected values of the RPC message.
	 */
	public void testRpcValues () {
		// Test Values
		boolean currentForecastSupported = msg.getCurrentForecastSupported();
		boolean weatherForLocationSupported = msg.getWeatherForLocationSupported();
		Integer getMaxHourlyForecastAmt = msg.getMaxHourlyForecastAmount();
		Integer getMaxMinutelyForecastAmt = msg.getMaxMinutelyForecastAmount();
		Integer getMaxMultidayForecastAmt = msg.getMaxMultidayForecastAmount();

		// Valid Tests
		assertEquals(Test.GENERAL_BOOLEAN, currentForecastSupported);
		assertEquals(Test.GENERAL_BOOLEAN, weatherForLocationSupported);
		assertEquals(Test.MATCH, Test.GENERAL_INTEGER, getMaxHourlyForecastAmt);
		assertEquals(Test.MATCH, Test.GENERAL_INTEGER, getMaxMinutelyForecastAmt);
		assertEquals(Test.MATCH, Test.GENERAL_INTEGER, getMaxMultidayForecastAmt);

		// Invalid/Null Tests
		WeatherServiceManifest msg = new WeatherServiceManifest();
		assertNotNull(Test.NOT_NULL, msg);

		assertNull(Test.NULL, msg.getCurrentForecastSupported());
		assertNull(Test.NULL, msg.getWeatherForLocationSupported());
		assertNull(Test.NULL, msg.getMaxHourlyForecastAmount());
		assertNull(Test.NULL, msg.getMaxMinutelyForecastAmount());
		assertNull(Test.NULL, msg.getMaxMultidayForecastAmount());
	}

	public void testJson(){
		JSONObject reference = new JSONObject();

		try{
			reference.put(WeatherServiceManifest.KEY_CURRENT_FORECAST_SUPPORTED, Test.GENERAL_BOOLEAN);
			reference.put(WeatherServiceManifest.KEY_WEATHER_FOR_LOCATION_SUPPORTED, Test.GENERAL_BOOLEAN);
			reference.put(WeatherServiceManifest.KEY_MAX_HOURLY_FORECAST_AMOUNT, Test.GENERAL_INTEGER);
			reference.put(WeatherServiceManifest.KEY_MAX_MINUTELY_FORECAST_AMOUNT, Test.GENERAL_INTEGER);
			reference.put(WeatherServiceManifest.KEY_MAX_MULTIDAY_FORECAST_AMOUNT, Test.GENERAL_INTEGER);

			JSONObject underTest = msg.serializeJSON();
			assertEquals(Test.MATCH, reference.length(), underTest.length());

			Iterator<?> iterator = reference.keys();
			while(iterator.hasNext()){
				String key = (String) iterator.next();
				assertEquals(Test.MATCH, JsonUtils.readObjectFromJsonObject(reference, key), JsonUtils.readObjectFromJsonObject(underTest, key));
			}
		} catch(JSONException e){
			fail(Test.JSON_FAIL);
		}
	}
}