blob: 125b0da1128e9e506f82c6f3b3bd9caebc94c48d [file] [log] [blame]
// Copyright 2019 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: CrosRuntimeProbeBattery,
Desc: "Checks that battery 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"},
})
}
// CrosRuntimeProbeBattery checks if the battery names in cros-label are consistent with probed names from runtime_probe
func CrosRuntimeProbeBattery(ctx context.Context, s *testing.State) {
categories := []string{"battery"}
getComponents := func(result *rppb.ProbeResult, category string) ([]runtimeprobe.Component, error) {
var comps []runtimeprobe.Component
var rppbComps []*rppb.Battery
switch category {
case "battery":
rppbComps = result.GetBattery()
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)
}