db1575c60f6ce390666de9249af1a6033467fd2a
[JavaForFun] /
1 /**
2  * Copyright 2014 Gustavo Martin Morcuende
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package name.gumartinm.weather.information.test;
17
18 import name.gumartinm.weather.information.parser.JPOSWeatherParser;
19
20 import junit.framework.TestCase;
21
22 import org.json.JSONException;
23
24 public class JPOSWeatherParserTest extends TestCase {
25     private JPOSWeatherParser jposWeatherParser;
26
27     @Override
28     protected void setUp() throws Exception {
29         super.setUp();
30
31         this.jposWeatherParser = new JPOSWeatherParser();
32     }
33
34     public void testRetrieveWeatherFromJPOS() throws JSONException {
35         // Arrange
36         final String jsonData = "{\"coord\":{\"lon\":139,\"lat\":35}}";
37         final double longitude = 139;
38         final double latitude = 35;
39         final WeatherData.Coord coord = new WeatherData.Coord(longitude, latitude);
40         final WeatherData expectedWeather = new WeatherData.Builder().setCoord(coord).build();
41
42         // Act
43         final WeatherData finalWeather = this.jposWeatherParser.retrieveWeatherFromJPOS(jsonData);
44
45         // Assert
46         assertEquals(expectedWeather.toString(), finalWeather.toString());
47     }
48
49 }