security_pkg_test_util/config.rs
1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use serde::{Deserialize, Serialize};
6use serde_json5::from_str;
7use std::fs::read_to_string;
8
9/// Shared configuration file for security package delivery tests.
10#[derive(Serialize, Deserialize)]
11pub struct Config {
12 /// Domain name (that is, hostname of package server) used for OTA updates.
13 pub update_domain: String,
14}
15
16/// Load shared security package delivery test configuration from file path.
17pub fn load_config(config_path: &str) -> Config {
18 from_str(&read_to_string(config_path).unwrap()).unwrap()
19}