aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/org/cyanogenmod/platform/internal/CMStatusBarManagerServiceTest.java
blob: 825b9b85211e79f56cedd2ce2dfa71c60b0c07c9 (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
/*
 * Copyright (c) 2016 The CyanogenMod Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.cyanogenmod.platform.internal;

import android.os.RemoteException;
import android.os.UserHandle;
import android.test.AndroidTestCase;

import android.test.suitebuilder.annotation.SmallTest;
import cyanogenmod.app.CMStatusBarManager;
import cyanogenmod.app.CustomTile;
import cyanogenmod.app.ICMStatusBarManager;

/**
 * Created by adnan on 1/5/16.
 */
public class CMStatusBarManagerServiceTest extends AndroidTestCase {
    private ICMStatusBarManager mInternalServiceInterface;

    @Override
    protected void setUp() throws Exception {
        super.setUp();
        mInternalServiceInterface = CMStatusBarManager.getInstance(mContext).getService();
    }

    @SmallTest
    public void testAddTileById() {
        //Create placeholder tile
        int resourceInt = org.cyanogenmod.tests.R.drawable.ic_launcher;
        CustomTile customTile = new CustomTile.Builder(mContext)
                .setIcon(resourceInt)
                .build();

        int[] idOut = new int[1];
        // Test adding a tile directly from the service interface.
        try {
           mInternalServiceInterface
                    .createCustomTileWithTag(mContext.getPackageName(), mContext.getPackageName(),
                            null, 1337, customTile, idOut, UserHandle.myUserId());
        } catch (RemoteException e) {
            fail("Remote exception when adding a tile by id");
        }
    }

    @SmallTest
    public void testAddAndRemoveTileById() {
        //Create placeholder tile
        int resourceInt = org.cyanogenmod.tests.R.drawable.ic_launcher;
        CustomTile customTile = new CustomTile.Builder(mContext)
                .setIcon(resourceInt)
                .build();

        int[] idOut = new int[1];
        try {
            // Test adding a tile directly from the service interface.
            mInternalServiceInterface
                    .createCustomTileWithTag(mContext.getPackageName(), mContext.getPackageName(),
                            null, 1337, customTile, idOut, UserHandle.myUserId());
        } catch (RemoteException e) {
            fail("Remote exception when adding a tile by id");
        }

        try {
            mInternalServiceInterface
                    .removeCustomTileWithTag(mContext.getPackageName(), null,
                            1337, UserHandle.myUserId());
        } catch (RemoteException e) {
            fail("Remote exception when removing a tile by id");
        }
    }

    @SmallTest
    public void testAddTileByTag() {
        //Create placeholder tile
        int resourceInt = org.cyanogenmod.tests.R.drawable.ic_launcher;
        CustomTile customTile = new CustomTile.Builder(mContext)
                .setIcon(resourceInt)
                .build();

        int[] idOut = new int[1];
        try {
            // Test adding a tile directly from the service interface.
            mInternalServiceInterface
                    .createCustomTileWithTag(mContext.getPackageName(), mContext.getPackageName()
                            , "fake-tag", 0, customTile, idOut, UserHandle.myUserId());
        }  catch (RemoteException e) {
            fail("Remote exception when adding a tile by tag");
        }
    }

    @SmallTest
    public void testAddAndRemoveTileByTag() {
        //Create placeholder tile
        int resourceInt = org.cyanogenmod.tests.R.drawable.ic_launcher;
        CustomTile customTile = new CustomTile.Builder(mContext)
                .setIcon(resourceInt)
                .build();

        int[] idOut = new int[1];
        try {
            // Test adding a tile directly from the service interface.
            mInternalServiceInterface
                    .createCustomTileWithTag(mContext.getPackageName(), mContext.getPackageName(),
                            "fake-tag", 0, customTile, idOut, UserHandle.myUserId());
        }  catch (RemoteException e) {
            fail("Remote exception when adding a tile by tag");
        }

        try {
            // Test removing tile directly from the service interface
            mInternalServiceInterface
                    .removeCustomTileWithTag(mContext.getPackageName(), mContext.getPackageName(),
                            0, UserHandle.myUserId());
        } catch (RemoteException e) {
            fail("Remote exception when removing a tile by tag");
        }
    }

    @SmallTest
    public void testFakePackageThrowsSecurityExceptionOnRemove() {
        try {
            mInternalServiceInterface
                    .removeCustomTileWithTag("fack-package-throw", "fake-package-throw",
                            0, UserHandle.myUserId());
            fail("Security Exception not thrown on fake package removing a tile");
        } catch (RemoteException e) {
            fail("Remote exception when removing a tile by tag");
        } catch (SecurityException e) {
            //Expected
        }
    }
}