blob: 2734f2dcdfc849f93966e4e3a23a923a357cccda [file] [log] [blame]
// Copyright 2021 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 firmware
import (
"context"
"chromiumos/tast/remote/firmware/reporters"
"chromiumos/tast/testing"
"chromiumos/tast/testing/hwdep"
)
func init() {
testing.AddTest(&testing.Test{
Func: CodelabReporter,
Desc: "Demonstrates common functionality for remote firmware tests",
Contacts: []string{
"me@chromium.org", // Test author
"my-team@chromium.org", // Backup mailing list
},
Attr: []string{"group:firmware", "firmware_experimental"},
HardwareDeps: hwdep.D(hwdep.ChromeEC()),
})
}
// CodelabReporter demonstrates using a Reporter to read information about the DUT.
func CodelabReporter(ctx context.Context, s *testing.State) {
r := reporters.New(s.DUT())
board, err := r.Board(ctx)
if err != nil {
s.Fatal("Failed to report board: ", err)
}
model, err := r.Model(ctx)
if err != nil {
s.Fatal("Failed to report model: ", err)
}
s.Logf("Reported board=%s, model=%s", board, model)
}