diff options
author | Khalid Zubair <kzubair@cyngn.com> | 2016-01-26 10:29:22 -0800 |
---|---|---|
committer | Khalid Zubair <kzubair@cyngn.com> | 2016-01-26 11:00:27 -0800 |
commit | a3c05bf3ffffb39c9ebd409ccf53cb0cb84c1f61 (patch) | |
tree | 4fec1c2f20ba6d4ba47e35efa6f7dd5d20aa3900 /tests/src | |
parent | 25a71471aea6297fb77cd1d5fd90dc97c9d2aa58 (diff) | |
download | vendor_cmsdk-a3c05bf3ffffb39c9ebd409ccf53cb0cb84c1f61.zip vendor_cmsdk-a3c05bf3ffffb39c9ebd409ccf53cb0cb84c1f61.tar.gz vendor_cmsdk-a3c05bf3ffffb39c9ebd409ccf53cb0cb84c1f61.tar.bz2 |
Revert "cmsdk: Add example service test."
This reverts commit 33e300e32db2b94274d94295435e1ad4c9a8347e.
CYNGNOS-1677
Change-Id: Ia4a9d192fde03152d308f7a93f3fe6525cb57c7d
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/cyanogenmod/platform/internal/CMStatusBarManagerServiceTest.java | 146 |
1 files changed, 0 insertions, 146 deletions
diff --git a/tests/src/org/cyanogenmod/platform/internal/CMStatusBarManagerServiceTest.java b/tests/src/org/cyanogenmod/platform/internal/CMStatusBarManagerServiceTest.java deleted file mode 100644 index 825b9b8..0000000 --- a/tests/src/org/cyanogenmod/platform/internal/CMStatusBarManagerServiceTest.java +++ /dev/null @@ -1,146 +0,0 @@ -/* - * 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 - } - } -} |