blob: 70095372c799cf5c36cbf7b73aa6eb42e8e6f4e5 [file] [log] [blame]
// Copyright 2022 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.
use {
serde::{Deserialize, Serialize},
serde_json5::from_str,
std::fs::read_to_string,
};
/// Shared configuration file for security package delivery tests.
#[derive(Serialize, Deserialize)]
pub struct Config {
/// Domain name (that is, hostname of package server) used for OTA updates.
pub update_domain: String,
}
/// Load shared security package delivery test configuration from file path.
pub fn load_config(config_path: &str) -> Config {
from_str(&read_to_string(config_path).unwrap()).unwrap()
}