1 /* 2 * Copyright (C) 2017 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 package com.android.tv.testing; 18 19 import android.app.job.JobParameters; 20 import android.app.job.JobService; 21 import com.android.tv.data.epg.EpgFetcher; 22 23 /** Fake {@link EpgFetcher} for testing. */ 24 public class FakeEpgFetcher implements EpgFetcher { 25 public boolean fetchStarted = false; 26 27 @Override startRoutineService()28 public void startRoutineService() {} 29 30 @Override fetchImmediatelyIfNeeded()31 public void fetchImmediatelyIfNeeded() {} 32 33 @Override fetchImmediately()34 public void fetchImmediately() { 35 fetchStarted = true; 36 } 37 38 @Override onChannelScanStarted()39 public void onChannelScanStarted() {} 40 41 @Override onChannelScanFinished()42 public void onChannelScanFinished() {} 43 44 @Override executeFetchTaskIfPossible(JobService jobService, JobParameters params)45 public boolean executeFetchTaskIfPossible(JobService jobService, JobParameters params) { 46 return false; 47 } 48 49 @Override stopFetchingJob()50 public void stopFetchingJob() { 51 fetchStarted = false; 52 } 53 reset()54 public void reset() { 55 fetchStarted = false; 56 } 57 } 58