1 /*
2  * Copyright (C) 2023 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 package com.android.perftests.healthconnect
17 
18 import android.health.connect.HealthConnectManager
19 import android.os.SystemClock
20 import android.perftests.utils.PerfStatusReporter
21 import androidx.test.ext.junit.runners.AndroidJUnit4
22 import androidx.test.platform.app.InstrumentationRegistry
23 import org.junit.Rule
24 import org.junit.Test
25 import org.junit.runner.RunWith
26 
27 /**
28  * Read/write benchmark tests for [HealthConnectManager]
29  *
30  * Build/Install/Run: atest HealthConnectReadWritePerfTest
31  */
32 @RunWith(AndroidJUnit4::class)
33 class HealthConnectReadWritePerfTest {
34 
35     @get:Rule
36     val perfStatusReporter = PerfStatusReporter()
37 
<lambda>null38     private val context by lazy { InstrumentationRegistry.getInstrumentation().context }
39 
<lambda>null40     private val manager by lazy {
41         requireNotNull(context.getSystemService(HealthConnectManager::class.java))
42     }
43 
44     /**
45      * A first empty test just to setup the test package and make sure it runs properly.
46      */
47     @Test
placeholdernull48     fun placeholder() {
49         val state = perfStatusReporter.benchmarkState
50         while (state.keepRunning()) {
51             SystemClock.sleep(100)
52         }
53     }
54 }