blob: 3bcfe3d8b16d2aacc49ab6ca8ea0d2aaca75b7d3 [file] [log] [blame] [edit]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package platform
import (
"context"
rppb "chromiumos/system_api/runtime_probe_proto"
"chromiumos/tast/errors"
"chromiumos/tast/local/bundles/cros/platform/runtimeprobe"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: CrosRuntimeProbeCamera,
Desc: "Checks that camera probe results are expected",
Contacts: []string{
"ckclark@chromium.org",
"chromeos-runtime-probe@google.com",
},
Attr: []string{"group:runtime_probe"},
SoftwareDeps: []string{"racc"},
Vars: []string{"autotest_host_info_labels"},
})
}
// CrosRuntimeProbeCamera checks if the camera component names in cros-label
// are consistent with probed names from runtime_probe.
func CrosRuntimeProbeCamera(ctx context.Context, s *testing.State) {
categories := []string{"camera"}
getComponents := func(result *rppb.ProbeResult, category string) ([]runtimeprobe.Component, error) {
var comps []runtimeprobe.Component
var rppbComps []*rppb.Camera
switch category {
case "camera":
rppbComps = result.GetCamera()
default:
return nil, errors.Errorf("unknown category %s", category)
}
for _, comp := range rppbComps {
comps = append(comps, comp)
}
return comps, nil
}
runtimeprobe.GenericTest(ctx, s, categories, getComponents, false)
}