mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-07 13:41:14 +00:00
Merge pull request #985 from eth-p/string-input
Unify syntax detection for all variants of InputKind, fix #983
This commit is contained in:
commit
d08d1f8c45
@ -7,6 +7,7 @@
|
|||||||
## Bugfixes
|
## Bugfixes
|
||||||
|
|
||||||
- bat mishighlights Users that start with digits in SSH config, see #984
|
- bat mishighlights Users that start with digits in SSH config, see #984
|
||||||
|
- `--map-syntax` doesn't work with names provided through `--file-name` (@eth-p)
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
## New syntaxes
|
## New syntaxes
|
||||||
|
@ -191,42 +191,46 @@ impl HighlightingAssets {
|
|||||||
input: &mut OpenedInput,
|
input: &mut OpenedInput,
|
||||||
mapping: &SyntaxMapping,
|
mapping: &SyntaxMapping,
|
||||||
) -> &SyntaxReference {
|
) -> &SyntaxReference {
|
||||||
let syntax = if let Some(language) = language {
|
let syntax = if input.kind.is_theme_preview_file() {
|
||||||
|
self.syntax_set.find_syntax_by_name("Rust")
|
||||||
|
} else if let Some(language) = language {
|
||||||
self.syntax_set.find_syntax_by_token(language)
|
self.syntax_set.find_syntax_by_token(language)
|
||||||
} else {
|
} else {
|
||||||
match input.kind {
|
let line_syntax = self.get_first_line_syntax(&mut input.reader);
|
||||||
OpenedInputKind::OrdinaryFile(ref actual_path) => {
|
|
||||||
let path_str = input
|
// Get the path of the file:
|
||||||
|
// If this was set by the metadata, that will take priority.
|
||||||
|
// If it wasn't, it will use the real file path (if available).
|
||||||
|
let path_str =
|
||||||
|
input
|
||||||
.metadata
|
.metadata
|
||||||
.user_provided_name
|
.user_provided_name
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.unwrap_or(actual_path);
|
.or_else(|| match input.kind {
|
||||||
let path = Path::new(path_str);
|
OpenedInputKind::OrdinaryFile(ref path) => Some(path),
|
||||||
let line_syntax = self.get_first_line_syntax(&mut input.reader);
|
_ => None,
|
||||||
|
});
|
||||||
|
|
||||||
|
if let Some(path_str) = path_str {
|
||||||
|
// If a path was provided, we try and detect the syntax based on extension mappings.
|
||||||
|
let path = Path::new(path_str);
|
||||||
let absolute_path = path.canonicalize().ok().unwrap_or_else(|| path.to_owned());
|
let absolute_path = path.canonicalize().ok().unwrap_or_else(|| path.to_owned());
|
||||||
|
|
||||||
match mapping.get_syntax_for(absolute_path) {
|
match mapping.get_syntax_for(absolute_path) {
|
||||||
|
Some(MappingTarget::MapToUnknown) => line_syntax,
|
||||||
Some(MappingTarget::MapTo(syntax_name)) => {
|
Some(MappingTarget::MapTo(syntax_name)) => {
|
||||||
// TODO: we should probably return an error here if this syntax can not be
|
// TODO: we should probably return an error here if this syntax can not be
|
||||||
// found. Currently, we just fall back to 'plain'.
|
// found. Currently, we just fall back to 'plain'.
|
||||||
self.syntax_set.find_syntax_by_name(syntax_name)
|
self.syntax_set.find_syntax_by_name(syntax_name)
|
||||||
}
|
}
|
||||||
Some(MappingTarget::MapToUnknown) => line_syntax,
|
|
||||||
None => {
|
None => {
|
||||||
let file_name = path.file_name().unwrap_or_default();
|
let file_name = path.file_name().unwrap_or_default();
|
||||||
self.get_extension_syntax(file_name).or(line_syntax)
|
self.get_extension_syntax(file_name).or(line_syntax)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
OpenedInputKind::StdIn | OpenedInputKind::CustomReader => {
|
|
||||||
if let Some(ref name) = input.metadata.user_provided_name {
|
|
||||||
self.get_extension_syntax(&name)
|
|
||||||
.or_else(|| self.get_first_line_syntax(&mut input.reader))
|
|
||||||
} else {
|
} else {
|
||||||
self.get_first_line_syntax(&mut input.reader)
|
// If a path wasn't provided, we fall back to the detect first-line syntax.
|
||||||
}
|
line_syntax
|
||||||
}
|
|
||||||
OpenedInputKind::ThemePreviewFile => self.syntax_set.find_syntax_by_name("Rust"),
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -258,9 +262,9 @@ mod tests {
|
|||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
use std::ffi::OsStr;
|
use std::ffi::OsStr;
|
||||||
|
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
|
||||||
use tempdir::TempDir;
|
use tempdir::TempDir;
|
||||||
|
|
||||||
use crate::input::Input;
|
use crate::input::Input;
|
||||||
@ -281,7 +285,11 @@ mod tests {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn syntax_for_file_with_content_os(&self, file_name: &OsStr, first_line: &str) -> String {
|
fn syntax_for_real_file_with_content_os(
|
||||||
|
&self,
|
||||||
|
file_name: &OsStr,
|
||||||
|
first_line: &str,
|
||||||
|
) -> String {
|
||||||
let file_path = self.temp_dir.path().join(file_name);
|
let file_path = self.temp_dir.path().join(file_name);
|
||||||
{
|
{
|
||||||
let mut temp_file = File::create(&file_path).unwrap();
|
let mut temp_file = File::create(&file_path).unwrap();
|
||||||
@ -298,6 +306,19 @@ mod tests {
|
|||||||
syntax.name.clone()
|
syntax.name.clone()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn syntax_for_file_with_content_os(&self, file_name: &OsStr, first_line: &str) -> String {
|
||||||
|
let file_path = self.temp_dir.path().join(file_name);
|
||||||
|
let input = Input::from_reader(Box::new(BufReader::new(first_line.as_bytes())))
|
||||||
|
.with_name(Some(file_path.as_os_str()));
|
||||||
|
let dummy_stdin: &[u8] = &[];
|
||||||
|
let mut opened_input = input.open(dummy_stdin).unwrap();
|
||||||
|
let syntax = self
|
||||||
|
.assets
|
||||||
|
.get_syntax(None, &mut opened_input, &self.syntax_mapping);
|
||||||
|
|
||||||
|
syntax.name.clone()
|
||||||
|
}
|
||||||
|
|
||||||
fn syntax_for_file_os(&self, file_name: &OsStr) -> String {
|
fn syntax_for_file_os(&self, file_name: &OsStr) -> String {
|
||||||
self.syntax_for_file_with_content_os(file_name, "")
|
self.syntax_for_file_with_content_os(file_name, "")
|
||||||
}
|
}
|
||||||
@ -319,6 +340,22 @@ mod tests {
|
|||||||
.get_syntax(None, &mut opened_input, &self.syntax_mapping);
|
.get_syntax(None, &mut opened_input, &self.syntax_mapping);
|
||||||
syntax.name.clone()
|
syntax.name.clone()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn syntax_is_same_for_inputkinds(&self, file_name: &str, content: &str) -> bool {
|
||||||
|
let as_file = self.syntax_for_real_file_with_content_os(file_name.as_ref(), content);
|
||||||
|
let as_reader = self.syntax_for_file_with_content_os(file_name.as_ref(), content);
|
||||||
|
let consistent = as_file == as_reader;
|
||||||
|
// TODO: Compare StdIn somehow?
|
||||||
|
|
||||||
|
if !consistent {
|
||||||
|
eprintln!(
|
||||||
|
"Inconsistent syntax detection:\nFor File: {}\nFor Reader: {}",
|
||||||
|
as_file, as_reader
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
consistent
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@ -349,6 +386,27 @@ mod tests {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn syntax_detection_same_for_inputkinds() {
|
||||||
|
let mut test = SyntaxDetectionTest::new();
|
||||||
|
|
||||||
|
test.syntax_mapping
|
||||||
|
.insert("*.myext", MappingTarget::MapTo("C"))
|
||||||
|
.ok();
|
||||||
|
test.syntax_mapping
|
||||||
|
.insert("MY_FILE", MappingTarget::MapTo("Markdown"))
|
||||||
|
.ok();
|
||||||
|
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds("Test.md", ""));
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds("Test.txt", "#!/bin/bash"));
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds(".bashrc", ""));
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds("test.h", ""));
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds("test.js", "#!/bin/bash"));
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds("test.myext", ""));
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds("MY_FILE", ""));
|
||||||
|
assert!(test.syntax_is_same_for_inputkinds("MY_FILE", "<?php"));
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn syntax_detection_well_defined_mapping_for_duplicate_extensions() {
|
fn syntax_detection_well_defined_mapping_for_duplicate_extensions() {
|
||||||
let test = SyntaxDetectionTest::new();
|
let test = SyntaxDetectionTest::new();
|
||||||
|
@ -39,6 +39,15 @@ pub(crate) enum OpenedInputKind {
|
|||||||
CustomReader,
|
CustomReader,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl OpenedInputKind {
|
||||||
|
pub(crate) fn is_theme_preview_file(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
OpenedInputKind::ThemePreviewFile => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub(crate) struct OpenedInput<'a> {
|
pub(crate) struct OpenedInput<'a> {
|
||||||
pub(crate) kind: OpenedInputKind,
|
pub(crate) kind: OpenedInputKind,
|
||||||
pub(crate) metadata: InputMetadata,
|
pub(crate) metadata: InputMetadata,
|
||||||
|
5
tests/examples/regression_tests/issue_985.js
Normal file
5
tests/examples/regression_tests/issue_985.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// This test should be considered a failure if the detected syntax differs between the following two commands:
|
||||||
|
/*
|
||||||
|
# bat --map-syntax '*.js:Markdown' --file-name 'issue_985.js' < issue_985.js
|
||||||
|
# bat --map-syntax '*.js:Markdown' --file-name 'issue_985.js' issue_985.js
|
||||||
|
*/
|
@ -1,4 +1,8 @@
|
|||||||
use assert_cmd::Command;
|
use assert_cmd::Command;
|
||||||
|
use std::path::Path;
|
||||||
|
use std::str::from_utf8;
|
||||||
|
|
||||||
|
const EXAMPLES_DIR: &str = "tests/examples";
|
||||||
|
|
||||||
fn bat_with_config() -> Command {
|
fn bat_with_config() -> Command {
|
||||||
let mut cmd = Command::cargo_bin("bat").unwrap();
|
let mut cmd = Command::cargo_bin("bat").unwrap();
|
||||||
@ -682,3 +686,32 @@ fn do_not_panic_regression_tests() {
|
|||||||
.success();
|
.success();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn do_not_detect_different_syntax_for_stdin_and_files() {
|
||||||
|
let file = "regression_tests/issue_985.js";
|
||||||
|
|
||||||
|
let cmd_for_file = bat()
|
||||||
|
.arg("--color=always")
|
||||||
|
.arg("--map-syntax=*.js:Markdown")
|
||||||
|
.arg(&format!("--file-name={}", file))
|
||||||
|
.arg("--style=plain")
|
||||||
|
.arg(file)
|
||||||
|
.assert()
|
||||||
|
.success();
|
||||||
|
|
||||||
|
let cmd_for_stdin = bat()
|
||||||
|
.arg("--color=always")
|
||||||
|
.arg("--map-syntax=*.js:Markdown")
|
||||||
|
.arg("--style=plain")
|
||||||
|
.arg(&format!("--file-name={}", file))
|
||||||
|
.pipe_stdin(Path::new(EXAMPLES_DIR).join(file))
|
||||||
|
.unwrap()
|
||||||
|
.assert()
|
||||||
|
.success();
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
from_utf8(&cmd_for_file.get_output().stdout).expect("output is valid utf-8"),
|
||||||
|
from_utf8(&cmd_for_stdin.get_output().stdout).expect("output is valid utf-8")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user