blob: bf2d4cd07165f238acd01dbbc43dbf94760fa64a [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
Lucas Dupin64171fe2019-10-30 14:28:29 -070033import java.io.FileDescriptor;
Jason Monk685db722017-01-23 17:36:50 -050034import java.io.PrintWriter;
35
Jason Monkfba8faf2017-05-23 10:42:59 -040036@SmallTest
Jason Monk9c7844c2017-01-18 15:21:53 -050037public class DependencyTest extends SysuiTestCase {
38
Adrian Roos09c43c82017-02-09 19:58:25 +010039 public static final DependencyKey<Dumpable> DUMPABLE = new DependencyKey<>("dumpable");
Adrian Roos09c43c82017-02-09 19:58:25 +010040
Jason Monk9c7844c2017-01-18 15:21:53 -050041 @Test
42 public void testClassDependency() {
43 FlashlightController f = mock(FlashlightController.class);
Jason Monk340b0e52017-03-08 14:57:56 -050044 mDependency.injectTestDependency(FlashlightController.class, f);
Jason Monke7507482017-02-02 13:00:05 -050045 Assert.assertEquals(f, Dependency.get(FlashlightController.class));
Jason Monk9c7844c2017-01-18 15:21:53 -050046 }
47
48 @Test
49 public void testStringDependency() {
50 Looper l = Looper.getMainLooper();
Jason Monk340b0e52017-03-08 14:57:56 -050051 mDependency.injectTestDependency(Dependency.BG_LOOPER, l);
Jason Monk9c7844c2017-01-18 15:21:53 -050052 assertEquals(l, Dependency.get(Dependency.BG_LOOPER));
53 }
54
55 @Test
56 public void testDump() {
57 Dumpable d = mock(Dumpable.class);
Lucas Dupin64171fe2019-10-30 14:28:29 -070058 String[] args = new String[0];
59 FileDescriptor fd = mock(FileDescriptor.class);
Jason Monk340b0e52017-03-08 14:57:56 -050060 mDependency.injectTestDependency(DUMPABLE, d);
Adrian Roos09c43c82017-02-09 19:58:25 +010061 Dependency.get(DUMPABLE);
Lucas Dupin64171fe2019-10-30 14:28:29 -070062 mDependency.dump(fd, mock(PrintWriter.class), args);
63 verify(d).dump(eq(fd), any(), eq(args));
Jason Monk9c7844c2017-01-18 15:21:53 -050064 }
65
66 @Test
Jason Monkc29c2022019-01-03 16:52:37 -050067 public void testInitDependency() {
68 Dependency.clearDependencies();
Dave Mankoffeb593ae2019-09-04 11:31:55 -040069 Dependency dependency = new Dependency();
70 SystemUIFactory
71 .getInstance().getRootComponent().createDependency().createSystemUI(dependency);
72 dependency.start();
Jason Monkc29c2022019-01-03 16:52:37 -050073 }
Jason Monk9c7844c2017-01-18 15:21:53 -050074}