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

import com.smartdevicelink.marshal.JsonRPCMarshaller;
import com.smartdevicelink.proxy.rpc.Coordinate;
import com.smartdevicelink.proxy.rpc.Image;
import com.smartdevicelink.proxy.rpc.LocationDetails;
import com.smartdevicelink.proxy.rpc.OasisAddress;
import com.smartdevicelink.test.JsonUtils;
import com.smartdevicelink.test.TestValues;
import com.smartdevicelink.test.Validator;

import junit.framework.TestCase;

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

import java.util.List;

/**
 * Created by austinkirk on 6/7/17.
 */

public class LocationDetailsTests extends TestCase {
    private LocationDetails msg;

    @Override
    public void setUp(){
        msg = TestValues.GENERAL_LOCATIONDETAILS;
    }

    /**
     * Tests the expected values of the RPC message.
     */
    public void testRpcValues () {
        // Test Values
        List<String> field1 = msg.getAddressLines();
        String field2 = msg.getLocationDescription();
        String field3 = msg.getLocationName();
        String field4 = msg.getPhoneNumber();
        Coordinate field5 = msg.getCoordinate();
        Image field6 = msg.getLocationImage();
        OasisAddress field7 = msg.getSearchAddress();

        // Valid Tests
        assertEquals(TestValues.MATCH, TestValues.GENERAL_STRING_LIST, field1);
        assertEquals(TestValues.MATCH, TestValues.GENERAL_STRING, field2);
        assertEquals(TestValues.MATCH, TestValues.GENERAL_STRING, field3);
        assertEquals(TestValues.MATCH, TestValues.GENERAL_STRING, field4);
        assertEquals(TestValues.MATCH, TestValues.GENERAL_COORDINATE, field5);
        assertEquals(TestValues.MATCH, TestValues.GENERAL_IMAGE, field6);
        assertEquals(TestValues.MATCH, TestValues.GENERAL_OASISADDRESS, field7);

        // Invalid/Null Tests
        LocationDetails msg = new LocationDetails();
        assertNotNull(TestValues.NOT_NULL, msg);


        assertNull(msg.getAddressLines());
        assertNull(msg.getLocationDescription());
        assertNull(msg.getLocationName());
        assertNull(msg.getPhoneNumber());
        assertNull(msg.getCoordinate());
        assertNull(msg.getLocationImage());
        assertNull(msg.getSearchAddress());
    }

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

        try{
            reference.put(LocationDetails.KEY_ADDRESS_LINES, JsonUtils.createJsonArray(TestValues.GENERAL_STRING_LIST));
            reference.put(LocationDetails.KEY_LOCATION_DESCRIPTION, TestValues.GENERAL_STRING);
            reference.put(LocationDetails.KEY_LOCATION_NAME, TestValues.GENERAL_STRING);
            reference.put(LocationDetails.KEY_PHONE_NUMBER, TestValues.GENERAL_STRING);
            reference.put(LocationDetails.KEY_COORDINATE, TestValues.GENERAL_COORDINATE);
            reference.put(LocationDetails.KEY_LOCATION_IMAGE, TestValues.GENERAL_IMAGE);
            reference.put(LocationDetails.KEY_SEARCH_ADDRESS, TestValues.GENERAL_OASISADDRESS);

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

            assertEquals(TestValues.MATCH, JsonUtils.readObjectFromJsonObject(reference, LocationDetails.KEY_ADDRESS_LINES),
                    JsonUtils.readObjectFromJsonObject(underTest, LocationDetails.KEY_ADDRESS_LINES));

            assertEquals(TestValues.MATCH, JsonUtils.readStringFromJsonObject(reference, LocationDetails.KEY_LOCATION_DESCRIPTION),
                    JsonUtils.readStringFromJsonObject(underTest, LocationDetails.KEY_LOCATION_DESCRIPTION));

            assertEquals(TestValues.MATCH, JsonUtils.readStringFromJsonObject(reference, LocationDetails.KEY_LOCATION_NAME),
                    JsonUtils.readStringFromJsonObject(underTest, LocationDetails.KEY_LOCATION_NAME));

            assertEquals(TestValues.MATCH, JsonUtils.readStringFromJsonObject(reference, LocationDetails.KEY_PHONE_NUMBER),
                    JsonUtils.readStringFromJsonObject(underTest, LocationDetails.KEY_PHONE_NUMBER));

            assertTrue(Validator.validateCoordinate(
                    (Coordinate) JsonUtils.readObjectFromJsonObject(reference, LocationDetails.KEY_COORDINATE),
                    new Coordinate(JsonRPCMarshaller.deserializeJSONObject( (JSONObject) JsonUtils.readObjectFromJsonObject(underTest, LocationDetails.KEY_COORDINATE))))
                    );

            assertTrue(Validator.validateImage(
                    (Image) JsonUtils.readObjectFromJsonObject(reference, LocationDetails.KEY_LOCATION_IMAGE),
                    new Image(JsonRPCMarshaller.deserializeJSONObject((JSONObject) JsonUtils.readObjectFromJsonObject(underTest, LocationDetails.KEY_LOCATION_IMAGE)))
                    ));

            assertTrue(Validator.validateOasisAddress(
                    (OasisAddress) JsonUtils.readObjectFromJsonObject(reference, LocationDetails.KEY_SEARCH_ADDRESS),
                    new OasisAddress(JsonRPCMarshaller.deserializeJSONObject((JSONObject) JsonUtils.readObjectFromJsonObject(underTest, LocationDetails.KEY_SEARCH_ADDRESS)))
            ));

        } catch(JSONException e){
            fail(TestValues.JSON_FAIL);
        }
    }
}