rust/src/test/ui-fulldeps/issue-2804.rs

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

71 lines
1.8 KiB
Rust
Raw Normal View History

// run-pass
#![allow(non_camel_case_types)]
#![allow(dead_code)]
#![feature(rustc_private)]
2020-06-02 19:46:42 +00:00
extern crate rustc_serialize;
use std::collections::HashMap;
2020-06-02 19:46:42 +00:00
use rustc_serialize::json::{self, Json};
use std::option;
enum object {
bool_value(bool),
int_value(i64),
}
fn lookup(table: json::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) => {
2014-10-15 01:07:11 +00:00
println!("{} was expected to be a string but is a {}", key, value);
default
}
option::Option::None => {
default
}
}
}
fn add_interface(_store: isize, managed_ip: String, data: json::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
_ => {
2014-10-15 01:07:11 +00:00
println!("Expected dict for {} interfaces, found {}", managed_ip, data);
("gnos:missing-interface".to_string(), object::bool_value(true))
}
}
}
fn add_interfaces(store: isize, managed_ip: String, device: HashMap<String, json::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
_ =>
{
2014-10-15 01:07:11 +00:00
println!("Expected list for {} interfaces, found {}", managed_ip,
device["interfaces"]);
Vec::new()
}
}
}
pub fn main() {}