mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-02 04:51:00 +01:00
35 lines
1.1 KiB
Rust
35 lines
1.1 KiB
Rust
use std::collections::HashSet;
|
|
|
|
use bat::assets::HighlightingAssets;
|
|
|
|
#[test]
|
|
fn no_duplicate_extensions() {
|
|
const KNOWN_EXCEPTIONS: &[&str] = &[
|
|
// The '.h' extension currently appears in multiple syntaxes: C, C++, Objective C,
|
|
// Objective C++
|
|
"h",
|
|
// In addition to the standard JavaScript syntax in 'Packages', we also ship the
|
|
// 'Javascript (Babel)' syntax.
|
|
"js",
|
|
// The "Ruby Haml" syntax also comes with a '.sass' extension. However, we make sure
|
|
// that 'sass' is mapped to the 'Sass' syntax.
|
|
"sass",
|
|
// The '.fs' extension appears in F# and GLSL. We default to F#.
|
|
"fs",
|
|
];
|
|
|
|
let assets = HighlightingAssets::from_binary();
|
|
|
|
let mut extensions = HashSet::new();
|
|
|
|
for syntax in assets.syntaxes() {
|
|
for extension in &syntax.file_extensions {
|
|
assert!(
|
|
KNOWN_EXCEPTIONS.contains(&extension.as_str()) || extensions.insert(extension),
|
|
"File extension / pattern \"{}\" appears twice in the syntax set",
|
|
extension
|
|
);
|
|
}
|
|
}
|
|
}
|