1 /*
2  * Copyright (C) 2024 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 platform.test.motion.testing
18 
19 import androidx.test.platform.app.InstrumentationRegistry
20 import java.io.File
21 import platform.test.screenshot.GoldenPathManager
22 import platform.test.screenshot.PathConfig
23 
24 /**
25  * Creates a [GoldenPathManager] with the recommended configuration for motion tests.
26  *
27  * @param sourceTreeGoldenLocation path to the golden asset directory, relative to ANDROID_BUILD_TOP
28  */
createGoldenPathManagernull29 fun createGoldenPathManager(
30     sourceTreeGoldenLocation: String,
31     pathConfig: PathConfig = PathConfig(),
32 ): GoldenPathManager {
33     val appContext = InstrumentationRegistry.getInstrumentation().context
34     val deviceOutputDirectory = File(appContext.filesDir, "goldens").toString()
35     return GoldenPathManager(
36         appContext,
37         sourceTreeGoldenLocation,
38         deviceOutputDirectory,
39         pathConfig,
40     )
41 }
42