rust/tests/ui/issue-2804.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2 KiB
Rust
Raw Normal View History

// run-pass
#![allow(non_camel_case_types)]
#![allow(dead_code)]
2022-05-05 16:34:13 +00:00
use std::collections::{BTreeMap, HashMap};
use std::option;
2022-05-05 16:34:13 +00:00
#[derive(Clone, Debug)]
enum Json {
I64(i64),
U64(u64),
F64(f64),
String(String),
Boolean(bool),
Array(Array),
Object(Object),
Null,
}
type Array = Vec<Json>;
type Object = BTreeMap<String, Json>;
enum object {
bool_value(bool),
int_value(i64),
}
2022-05-05 16:34:13 +00:00
fn lookup(table: Object, key: String, default: String) -> String
{
match table.get(&key) {
option::Option::Some(&Json::String(ref s)) => {
2014-06-28 15:27:29 +00:00
s.to_string()
}
option::Option::Some(value) => {
2022-05-05 16:34:13 +00:00
println!("{} was expected to be a string but is a {:?}", key, value);
default
}
option::Option::None => {
default
}
}
}
2022-05-05 16:34:13 +00:00
fn add_interface(_store: isize, managed_ip: String, data: Json) -> (String, object)
{
2013-07-02 19:47:32 +00:00
match &data {
2014-11-26 18:21:45 +00:00
&Json::Object(ref interface) => {
2014-06-28 15:27:29 +00:00
let name = lookup(interface.clone(),
"ifDescr".to_string(),
"".to_string());
let label = format!("{}-{}", managed_ip, name);
(label, object::bool_value(false))
}
2013-07-02 19:47:32 +00:00
_ => {
2022-05-05 16:34:13 +00:00
println!("Expected dict for {} interfaces, found {:?}", managed_ip, data);
("gnos:missing-interface".to_string(), object::bool_value(true))
}
}
}
2022-05-05 16:34:13 +00:00
fn add_interfaces(store: isize, managed_ip: String, device: HashMap<String, Json>)
-> Vec<(String, object)> {
match device["interfaces"] {
2014-11-26 18:21:45 +00:00
Json::Array(ref interfaces) =>
{
interfaces.iter().map(|interface| {
2013-07-02 19:47:32 +00:00
add_interface(store, managed_ip.clone(), (*interface).clone())
}).collect()
}
2012-08-04 02:59:04 +00:00
_ =>
{
2022-05-05 16:34:13 +00:00
println!("Expected list for {} interfaces, found {:?}", managed_ip,
device["interfaces"]);
Vec::new()
}
}
}
pub fn main() {}