blob: fc2a9f1405df8acd3abf76c720fd72f84bad827a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use std::env;
use std::fs::File;
use std::path::Path;
use serde_json::{self, Value};
#[test]
fn properties_list_json() {
// Four dotdots: /path/to/target(4)/debug(3)/build(2)/style_tests-*(1)/out
// Do not ascend above the target dir, because it may not be called target
// or even have a parent (see CARGO_TARGET_DIR).
let target_dir = Path::new(env!("OUT_DIR"))
.join("..")
.join("..")
.join("..")
.join("..");
let json = target_dir
.join("doc")
.join("stylo")
.join("css-properties.json");
let properties: Value = serde_json::from_reader(File::open(json).unwrap()).unwrap();
let longhands = properties["longhands"].as_object().unwrap();
assert!(longhands.len() > 100);
assert!(longhands.get("margin-top").is_some());
assert!(properties["shorthands"].get("margin").is_some());
}
|