From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 634C71FF348 for ; Wed, 17 Apr 2024 14:31:18 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 43FEB575A; Wed, 17 Apr 2024 14:31:13 +0200 (CEST) From: Aaron Lauterer To: pve-devel@lists.proxmox.com Date: Wed, 17 Apr 2024 14:30:35 +0200 Message-Id: <20240417123108.212720-4-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240417123108.212720-1-a.lauterer@proxmox.com> References: <20240417123108.212720-1-a.lauterer@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.048 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH installer v6 03/36] common: tui: use BTreeMap for predictable ordering X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" necessary for the disk selection and network interfaces maps to have tests with results that can be compared without much additional effort. Tested-by: Christoph Heiss Reviewed-by: Christoph Heiss Signed-off-by: Aaron Lauterer --- proxmox-installer-common/src/setup.rs | 8 ++++---- proxmox-tui-installer/src/options.rs | 4 ++-- proxmox-tui-installer/src/setup.rs | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/proxmox-installer-common/src/setup.rs b/proxmox-installer-common/src/setup.rs index 1bc4cb7..8432a2c 100644 --- a/proxmox-installer-common/src/setup.rs +++ b/proxmox-installer-common/src/setup.rs @@ -1,6 +1,6 @@ use std::{ cmp, - collections::HashMap, + collections::{BTreeMap, HashMap}, fmt, fs::File, io::{self, BufReader}, @@ -297,7 +297,7 @@ pub struct NetworkInfo { /// Maps devices to their configuration, if it has a usable configuration. /// (Contains no entries for devices with only link-local addresses.) #[serde(default)] - pub interfaces: HashMap, + pub interfaces: BTreeMap, /// The hostname of this machine, if set by the DHCP server. pub hostname: Option, @@ -416,8 +416,8 @@ pub struct InstallConfig { skip_serializing_if = "Option::is_none" )] pub target_hd: Option, - #[serde(skip_serializing_if = "HashMap::is_empty")] - pub disk_selection: HashMap, + #[serde(skip_serializing_if = "BTreeMap::is_empty")] + pub disk_selection: BTreeMap, pub country: String, pub timezone: String, diff --git a/proxmox-tui-installer/src/options.rs b/proxmox-tui-installer/src/options.rs index 094a430..73fbf2a 100644 --- a/proxmox-tui-installer/src/options.rs +++ b/proxmox-tui-installer/src/options.rs @@ -76,7 +76,7 @@ mod tests { utils::{CidrAddress, Fqdn}, }; use std::net::{IpAddr, Ipv4Addr}; - use std::{collections::HashMap, path::PathBuf}; + use std::{collections::BTreeMap, path::PathBuf}; fn dummy_setup_info() -> SetupInfo { SetupInfo { @@ -99,7 +99,7 @@ mod tests { fn network_options_from_setup_network_info() { let setup = dummy_setup_info(); - let mut interfaces = HashMap::new(); + let mut interfaces = BTreeMap::new(); interfaces.insert( "eth0".to_owned(), Interface { diff --git a/proxmox-tui-installer/src/setup.rs b/proxmox-tui-installer/src/setup.rs index e816c12..248f86e 100644 --- a/proxmox-tui-installer/src/setup.rs +++ b/proxmox-tui-installer/src/setup.rs @@ -1,4 +1,4 @@ -use std::collections::HashMap; +use std::collections::BTreeMap; use crate::options::InstallerOptions; use proxmox_installer_common::{ @@ -19,7 +19,7 @@ impl From for InstallConfig { maxvz: None, zfs_opts: None, target_hd: None, - disk_selection: HashMap::new(), + disk_selection: BTreeMap::new(), country: options.timezone.country, timezone: options.timezone.timezone, -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel