blob: b1ca169eac0c6f202d8824b372581bdd6ce1c14f [file] [log] [blame]
Jason Monk9c7844c2017-01-18 15:21:53 -05001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
5 * except in compliance with the License. You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11 * KIND, either express or implied. See the License for the specific language governing
12 * permissions and limitations under the License.
13 */
14
15package com.android.systemui;
16
17import static org.junit.Assert.assertEquals;
Jason Monk685db722017-01-23 17:36:50 -050018import static org.mockito.Matchers.any;
Jason Monk9c7844c2017-01-18 15:21:53 -050019import static org.mockito.Matchers.eq;
20import static org.mockito.Mockito.mock;
21import static org.mockito.Mockito.verify;
22
23import android.os.Looper;
Brett Chabot84151d92019-02-27 15:37:59 -080024
25import androidx.test.filters.SmallTest;
Jason Monk9c7844c2017-01-18 15:21:53 -050026
Adrian Roos09c43c82017-02-09 19:58:25 +010027import com.android.systemui.Dependency.DependencyKey;
Jason Monk9c7844c2017-01-18 15:21:53 -050028import com.android.systemui.statusbar.policy.FlashlightController;
29
Jason Monke7507482017-02-02 13:00:05 -050030import org.junit.Assert;
Jason Monk9c7844c2017-01-18 15:21:53 -050031import org.junit.Test;
32
Jason Monk685db722017-01-23 17:36:50 -050033import java.io.PrintWriter;
34
Jason Monkfba8faf2017-05-23 10:42:59 -040035@SmallTest
Jason Monk9c7844c2017-01-18 15:21:53 -050036public class DependencyTest extends SysuiTestCase {
37
Adrian Roos09c43c82017-02-09 19:58:25 +010038 public static final DependencyKey<Dumpable> DUMPABLE = new DependencyKey<>("dumpable");
39 public static final DependencyKey<ConfigurationChangedReceiver> CONFIGURATION_CHANGED_RECEIVER
40 = new DependencyKey<>("config_changed_receiver");
41
Jason Monk9c7844c2017-01-18 15:21:53 -050042 @Test
43 public void testClassDependency() {
44 FlashlightController f = mock(FlashlightController.class);
Jason Monk340b0e52017-03-08 14:57:56 -050045 mDependency.injectTestDependency(FlashlightController.class, f);
Jason Monke7507482017-02-02 13:00:05 -050046 Assert.assertEquals(f, Dependency.get(FlashlightController.class));
Jason Monk9c7844c2017-01-18 15:21:53 -050047 }
48
49 @Test
50 public void testStringDependency() {
51 Looper l = Looper.getMainLooper();
Jason Monk340b0e52017-03-08 14:57:56 -050052 mDependency.injectTestDependency(Dependency.BG_LOOPER, l);
Jason Monk9c7844c2017-01-18 15:21:53 -050053 assertEquals(l, Dependency.get(Dependency.BG_LOOPER));
54 }
55
56 @Test
57 public void testDump() {
58 Dumpable d = mock(Dumpable.class);
Jason Monk340b0e52017-03-08 14:57:56 -050059 mDependency.injectTestDependency(DUMPABLE, d);
Adrian Roos09c43c82017-02-09 19:58:25 +010060 Dependency.get(DUMPABLE);
Jason Monk685db722017-01-23 17:36:50 -050061 mDependency.dump(null, mock(PrintWriter.class), null);
62 verify(d).dump(eq(null), any(), eq(null));
Jason Monk9c7844c2017-01-18 15:21:53 -050063 }
64
65 @Test
66 public void testConfigurationChanged() {
67 ConfigurationChangedReceiver d = mock(ConfigurationChangedReceiver.class);
Jason Monk340b0e52017-03-08 14:57:56 -050068 mDependency.injectTestDependency(CONFIGURATION_CHANGED_RECEIVER, d);
Adrian Roos09c43c82017-02-09 19:58:25 +010069 Dependency.get(CONFIGURATION_CHANGED_RECEIVER);
Jason Monk9c7844c2017-01-18 15:21:53 -050070 mDependency.onConfigurationChanged(null);
71 verify(d).onConfigurationChanged(eq(null));
72 }
Jason Monkc29c2022019-01-03 16:52:37 -050073
74 @Test
75 public void testInitDependency() {
76 Dependency.clearDependencies();
77 Dependency.initDependencies(mContext);
78 }
Jason Monk9c7844c2017-01-18 15:21:53 -050079}