blob: 2a94a0762cef9c7d99504e8d7b99bc0497feec66 [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 (
"crypto/rand"
"encoding/hex"
"os"
"path/filepath"
"testing"
"time"
"go.fuchsia.dev/fuchsia/src/testing/emulator"
)
func TestShellDisabled(t *testing.T) {
exPath := execDir(t)
distro, err := emulator.UnpackFrom(filepath.Join(exPath, "test_data"), emulator.DistributionParams{Emulator: emulator.Qemu})
if err != nil {
t.Fatal(err)
}
defer func() {
if err = distro.Delete(); err != nil {
t.Error(err)
}
}()
arch, err := distro.TargetCPU()
if err != nil {
t.Fatal(err)
}
i := distro.Create(emulator.Params{
Arch: arch,
ZBI: filepath.Join(exPath, "..", "fuchsia.zbi"),
AppendCmdline: "devmgr.log-to-debuglog console.shell=false",
})
if err = i.Start(); err != nil {
t.Fatal(err)
}
defer func() {
if err = i.Kill(); err != nil {
t.Error(err)
}
}()
if err = i.WaitForLogMessage("console-launcher: running"); err != nil {
t.Fatal(err)
}
tokenFromSerial := randomTokenAsString(t)
if err = i.RunCommand("echo '" + tokenFromSerial + "'"); err != nil {
t.Fatal(err)
}
if err = i.AssertLogMessageNotSeenWithinTimeout(tokenFromSerial, 3*time.Second); err != nil {
t.Fatal(err)
}
}
func TestAutorunDisabled(t *testing.T) {
exPath := execDir(t)
distro, err := emulator.UnpackFrom(filepath.Join(exPath, "test_data"), emulator.DistributionParams{Emulator: emulator.Qemu})
if err != nil {
t.Fatal(err)
}
defer func() {
if err = distro.Delete(); err != nil {
t.Error(err)
}
}()
arch, err := distro.TargetCPU()
if err != nil {
t.Fatal(err)
}
i := distro.Create(emulator.Params{
Arch: arch,
ZBI: filepath.Join(exPath, "..", "fuchsia.zbi"),
AppendCmdline: "devmgr.log-to-debuglog console.shell=false zircon.autorun.boot=foobar",
})
if err = i.Start(); err != nil {
t.Fatal(err)
}
defer func() {
if err = i.Kill(); err != nil {
t.Error(err)
}
}()
if err = i.WaitForLogMessage("Couldn't launch autorun command 'foobar'"); err != nil {
t.Fatal(err)
}
}
func execDir(t *testing.T) string {
ex, err := os.Executable()
if err != nil {
t.Fatal(err)
}
return filepath.Dir(ex)
}
func randomTokenAsString(t *testing.T) string {
b := [32]byte{}
if _, err := rand.Read(b[:]); err != nil {
t.Fatal(err)
}
return hex.EncodeToString(b[:])
}