1 /* 2 * Copyright (C) 2022 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 * 16 */ 17 18 package com.android.systemui.telephony.data.repository 19 20 import com.android.systemui.dagger.SysUISingleton 21 import dagger.Binds 22 import dagger.Module 23 import javax.inject.Inject 24 import kotlinx.coroutines.flow.Flow 25 import kotlinx.coroutines.flow.MutableStateFlow 26 import kotlinx.coroutines.flow.StateFlow 27 import kotlinx.coroutines.flow.asStateFlow 28 29 @SysUISingleton 30 class FakeTelephonyRepository @Inject constructor() : TelephonyRepository { 31 32 private val _callState = MutableStateFlow(0) 33 override val callState: Flow<Int> = _callState.asStateFlow() 34 35 private val _isInCall = MutableStateFlow(false) 36 override val isInCall: StateFlow<Boolean> = _isInCall.asStateFlow() 37 38 override var hasTelephonyRadio: Boolean = true 39 private set 40 setCallStatenull41 fun setCallState(value: Int) { 42 _callState.value = value 43 } 44 setIsInCallnull45 fun setIsInCall(isInCall: Boolean) { 46 _isInCall.value = isInCall 47 } 48 setHasTelephonyRadionull49 fun setHasTelephonyRadio(hasTelephonyRadio: Boolean) { 50 this.hasTelephonyRadio = hasTelephonyRadio 51 } 52 } 53 54 @Module 55 interface FakeTelephonyRepositoryModule { bindFakenull56 @Binds fun bindFake(fake: FakeTelephonyRepository): TelephonyRepository 57 } 58