blob: dd2b124ceb8eb7eb186723a809ae07331b87e734 [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"
"chromiumos/tast/remote/firmware/reporters"
"chromiumos/tast/testing"
"chromiumos/tast/testing/hwdep"
)
func init() {
testing.AddTest(&testing.Test{
Func: CodelabConfig,
Desc: "Demonstrates common functionality for remote firmware tests",
Contacts: []string{
"me@chromium.org", // Test author
"my-team@chromium.org", // Backup mailing list
},
Data: []string{firmware.ConfigFile},
Attr: []string{"group:firmware", "firmware_experimental"},
HardwareDeps: hwdep.D(hwdep.ChromeEC()),
})
}
// CodelabConfig demonstrates initializing and using a firmware.Config (fw-testing-configs).
func CodelabConfig(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)
cfg, err := firmware.NewConfig(s.DataPath(firmware.ConfigFile), board, model)
if err != nil {
s.Fatal("Failed to create config: ", err)
}
s.Log("This DUT's mode-switcher type is: ", cfg.ModeSwitcherType)
}