blob: b38a1f2911b6617d658fb5e31ed0ba57bf837a66 [file] [log] [blame]
// Copyright 2020 The Fuchsia 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 main
import (
"testing"
bootservertest "go.fuchsia.dev/fuchsia/tools/bootserver_old/tests"
)
func TestWriteFirmwareWithType(t *testing.T) {
instance := bootservertest.StartQemu(t, "netsvc.all-features=true, netsvc.netboot=true", "full")
logPattern := []bootservertest.LogMatch{
{Pattern: "Received request from ", ShouldMatch: true},
{Pattern: "Proceeding with nodename ", ShouldMatch: true},
{Pattern: "Transfer starts", ShouldMatch: true},
{Pattern: "Transfer ends successfully", ShouldMatch: true},
{Pattern: "Issued reboot command to", ShouldMatch: true},
}
bootservertest.CmdSearchLog(
t, logPattern,
bootservertest.ToolPath("bootserver"), "-n", bootservertest.DefaultNodename,
"--firmware-foo", bootservertest.FirmwarePath(), "-1", "--fail-fast")
instance.WaitForLogMessage("netsvc: Running FIRMWARE Paver (firmware type 'foo')")
}