blob: bf585e2325d84fe268e1b92503c3b2981d3eae0e [file] [log] [blame]
/*
* Copyright (C) 2023 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.tools.device.flicker.assertions
import android.tools.common.flicker.assertions.SubjectsParser
import android.tools.common.io.IReader
import android.tools.common.io.RunStatus
import android.tools.device.traces.DEFAULT_TRACE_CONFIG
import android.tools.device.traces.io.IResultData
import android.tools.device.traces.io.ResultReaderWithLru
/**
* Helper class to run an assertion on a flicker artifact
*
* @param result flicker artifact data
* @param resultReader helper class to read the flicker artifact
* @param subjectsParser helper class to convert a result into flicker subjects
*/
class ArtifactAssertionRunner(
private val result: IResultData,
resultReader: IReader = ResultReaderWithLru(result, DEFAULT_TRACE_CONFIG),
subjectsParser: SubjectsParser = SubjectsParser(resultReader)
) : BaseAssertionRunner(resultReader, subjectsParser) {
override fun doUpdateStatus(newStatus: RunStatus) {
result.updateStatus(newStatus)
}
}