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

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

import junit.framework.TestCase;

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

import static com.smartdevicelink.proxy.rpc.HMICapabilities.KEY_NAVIGATION;
import static com.smartdevicelink.proxy.rpc.HMICapabilities.KEY_PHONE_CALL;

public class HMICapabilitiesTests extends TestCase {
    private HMICapabilities msg;

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

        msg.setNavigationAvilable(Test.GENERAL_BOOLEAN);
        msg.setPhoneCallAvilable(Test.GENERAL_BOOLEAN);
    }

    /**
     * Tests the expected values of the RPC message.
     */
    public void testRpcValues () {
        // Test Values
        Boolean navAvail = msg.isNavigationAvailable();
        Boolean phoneAvail = msg.isPhoneCallAvailable();

        // Valid Tests
        assertEquals(Test.MATCH, (Boolean) Test.GENERAL_BOOLEAN, navAvail);
        assertEquals(Test.MATCH, (Boolean) Test.GENERAL_BOOLEAN, phoneAvail);

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

        assertFalse(msg.isNavigationAvailable());
        assertFalse(msg.isPhoneCallAvailable());
    }

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

        try{
            reference.put(KEY_NAVIGATION, Test.GENERAL_BOOLEAN);
            reference.put(HMICapabilities.KEY_PHONE_CALL, Test.GENERAL_BOOLEAN);

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

            assertEquals(Test.MATCH, JsonUtils.readStringListFromJsonObject(reference, KEY_NAVIGATION),
                    JsonUtils.readStringListFromJsonObject(underTest, KEY_NAVIGATION));

            assertEquals(Test.MATCH, JsonUtils.readStringListFromJsonObject(reference, KEY_PHONE_CALL),
                    JsonUtils.readStringListFromJsonObject(underTest, KEY_PHONE_CALL));
        } catch(JSONException e){
            fail(Test.JSON_FAIL);
        }
    }
}