2020-02-27 13:15:32 +00:00
|
|
|
|
use std::fs;
|
|
|
|
|
|
|
|
|
|
use test_utils::{assert_eq_text, project_dir, read_text};
|
|
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
|
mock_analysis::{single_file, MockAnalysis},
|
|
|
|
|
FileRange, TextRange,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_highlighting() {
|
2020-06-07 12:50:02 +00:00
|
|
|
|
check_highlighting(
|
2020-02-27 13:15:32 +00:00
|
|
|
|
r#"
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
|
struct Foo {
|
|
|
|
|
pub x: i32,
|
|
|
|
|
pub y: i32,
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-10 18:26:19 +00:00
|
|
|
|
trait Bar {
|
|
|
|
|
fn bar(&self) -> i32;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Bar for Foo {
|
|
|
|
|
fn bar(&self) -> i32 {
|
|
|
|
|
self.x
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-10 15:08:28 +00:00
|
|
|
|
static mut STATIC_MUT: i32 = 0;
|
|
|
|
|
|
2020-02-28 15:49:46 +00:00
|
|
|
|
fn foo<'a, T>() -> T {
|
|
|
|
|
foo::<'a, i32>()
|
2020-02-27 13:15:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
macro_rules! def_fn {
|
|
|
|
|
($($tt:tt)*) => {$($tt)*}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-28 13:47:33 +00:00
|
|
|
|
def_fn! {
|
2020-02-27 13:15:32 +00:00
|
|
|
|
fn bar() -> u32 {
|
|
|
|
|
100
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-14 13:40:06 +00:00
|
|
|
|
macro_rules! noop {
|
|
|
|
|
($expr:expr) => {
|
|
|
|
|
$expr
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-27 13:15:32 +00:00
|
|
|
|
// comment
|
|
|
|
|
fn main() {
|
|
|
|
|
println!("Hello, {}!", 92);
|
|
|
|
|
|
|
|
|
|
let mut vec = Vec::new();
|
|
|
|
|
if true {
|
|
|
|
|
let x = 92;
|
|
|
|
|
vec.push(Foo { x, y: 1 });
|
|
|
|
|
}
|
2020-05-10 15:08:28 +00:00
|
|
|
|
unsafe {
|
|
|
|
|
vec.set_len(0);
|
|
|
|
|
STATIC_MUT = 1;
|
|
|
|
|
}
|
2020-02-27 13:15:32 +00:00
|
|
|
|
|
2020-05-10 18:08:32 +00:00
|
|
|
|
for e in vec {
|
|
|
|
|
// Do nothing
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-14 13:40:06 +00:00
|
|
|
|
noop!(noop!(1));
|
|
|
|
|
|
2020-02-27 13:15:32 +00:00
|
|
|
|
let mut x = 42;
|
|
|
|
|
let y = &mut x;
|
|
|
|
|
let z = &y;
|
|
|
|
|
|
2020-06-10 10:34:23 +00:00
|
|
|
|
let Foo { x: z, y } = Foo { x: z, y };
|
|
|
|
|
|
2020-02-27 13:15:32 +00:00
|
|
|
|
y;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-28 15:36:14 +00:00
|
|
|
|
enum Option<T> {
|
|
|
|
|
Some(T),
|
|
|
|
|
None,
|
2020-02-27 13:15:32 +00:00
|
|
|
|
}
|
2020-02-28 15:36:14 +00:00
|
|
|
|
use Option::*;
|
2020-02-27 13:15:32 +00:00
|
|
|
|
|
2020-02-28 15:36:14 +00:00
|
|
|
|
impl<T> Option<T> {
|
|
|
|
|
fn and<U>(self, other: Option<U>) -> Option<(T, U)> {
|
|
|
|
|
match other {
|
2020-02-28 15:49:46 +00:00
|
|
|
|
None => unimplemented!(),
|
2020-02-28 15:36:14 +00:00
|
|
|
|
Nope => Nope,
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-27 13:15:32 +00:00
|
|
|
|
}
|
|
|
|
|
"#
|
|
|
|
|
.trim(),
|
2020-06-07 12:50:02 +00:00
|
|
|
|
"crates/ra_ide/src/snapshots/highlighting.html",
|
|
|
|
|
false,
|
2020-02-27 13:15:32 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_rainbow_highlighting() {
|
2020-06-07 12:50:02 +00:00
|
|
|
|
check_highlighting(
|
2020-02-27 13:15:32 +00:00
|
|
|
|
r#"
|
|
|
|
|
fn main() {
|
|
|
|
|
let hello = "hello";
|
|
|
|
|
let x = hello.to_string();
|
|
|
|
|
let y = hello.to_string();
|
|
|
|
|
|
|
|
|
|
let x = "other color please!";
|
|
|
|
|
let y = x.to_string();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
|
let mut hello = "hello";
|
|
|
|
|
}
|
|
|
|
|
"#
|
|
|
|
|
.trim(),
|
2020-06-07 12:50:02 +00:00
|
|
|
|
"crates/ra_ide/src/snapshots/rainbow_highlighting.html",
|
|
|
|
|
true,
|
2020-02-27 13:15:32 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn accidentally_quadratic() {
|
|
|
|
|
let file = project_dir().join("crates/ra_syntax/test_data/accidentally_quadratic");
|
|
|
|
|
let src = fs::read_to_string(file).unwrap();
|
|
|
|
|
|
|
|
|
|
let mut mock = MockAnalysis::new();
|
|
|
|
|
let file_id = mock.add_file("/main.rs", &src);
|
|
|
|
|
let host = mock.analysis_host();
|
|
|
|
|
|
|
|
|
|
// let t = std::time::Instant::now();
|
|
|
|
|
let _ = host.analysis().highlight(file_id).unwrap();
|
|
|
|
|
// eprintln!("elapsed: {:?}", t.elapsed());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_ranges() {
|
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
|
r#"
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
|
struct Foo {
|
|
|
|
|
pub x: i32,
|
|
|
|
|
pub y: i32,
|
|
|
|
|
}"#,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// The "x"
|
|
|
|
|
let highlights = &analysis
|
2020-04-24 21:51:02 +00:00
|
|
|
|
.highlight_range(FileRange { file_id, range: TextRange::at(82.into(), 1.into()) })
|
2020-02-27 13:15:32 +00:00
|
|
|
|
.unwrap();
|
|
|
|
|
|
2020-02-28 15:49:46 +00:00
|
|
|
|
assert_eq!(&highlights[0].highlight.to_string(), "field.declaration");
|
2020-02-27 13:15:32 +00:00
|
|
|
|
}
|
2020-04-02 12:34:51 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_flattening() {
|
2020-06-07 12:50:02 +00:00
|
|
|
|
check_highlighting(
|
2020-04-06 21:00:09 +00:00
|
|
|
|
r##"
|
|
|
|
|
fn fixture(ra_fixture: &str) {}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
fixture(r#"
|
|
|
|
|
trait Foo {
|
|
|
|
|
fn foo() {
|
|
|
|
|
println!("2 + 2 = {}", 4);
|
|
|
|
|
}
|
|
|
|
|
}"#
|
|
|
|
|
);
|
|
|
|
|
}"##
|
|
|
|
|
.trim(),
|
2020-06-07 12:50:02 +00:00
|
|
|
|
"crates/ra_ide/src/snapshots/highlight_injection.html",
|
|
|
|
|
false,
|
2020-04-06 21:00:09 +00:00
|
|
|
|
);
|
2020-04-02 12:34:51 +00:00
|
|
|
|
}
|
2020-04-17 20:23:23 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn ranges_sorted() {
|
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
|
r#"
|
|
|
|
|
#[foo(bar = "bar")]
|
|
|
|
|
macro_rules! test {}
|
|
|
|
|
}"#
|
|
|
|
|
.trim(),
|
|
|
|
|
);
|
|
|
|
|
let _ = analysis.highlight(file_id).unwrap();
|
|
|
|
|
}
|
2020-04-17 07:37:18 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_string_highlighting() {
|
|
|
|
|
// The format string detection is based on macro-expansion,
|
|
|
|
|
// thus, we have to copy the macro definition from `std`
|
2020-06-07 12:50:02 +00:00
|
|
|
|
check_highlighting(
|
2020-04-17 07:37:18 +00:00
|
|
|
|
r#"
|
|
|
|
|
macro_rules! println {
|
|
|
|
|
($($arg:tt)*) => ({
|
|
|
|
|
$crate::io::_print($crate::format_args_nl!($($arg)*));
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
#[rustc_builtin_macro]
|
|
|
|
|
macro_rules! format_args_nl {
|
|
|
|
|
($fmt:expr) => {{ /* compiler built-in */ }};
|
|
|
|
|
($fmt:expr, $($args:tt)*) => {{ /* compiler built-in */ }};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
// from https://doc.rust-lang.org/std/fmt/index.html
|
|
|
|
|
println!("Hello"); // => "Hello"
|
|
|
|
|
println!("Hello, {}!", "world"); // => "Hello, world!"
|
|
|
|
|
println!("The number is {}", 1); // => "The number is 1"
|
|
|
|
|
println!("{:?}", (3, 4)); // => "(3, 4)"
|
|
|
|
|
println!("{value}", value=4); // => "4"
|
|
|
|
|
println!("{} {}", 1, 2); // => "1 2"
|
|
|
|
|
println!("{:04}", 42); // => "0042" with leading zerosV
|
|
|
|
|
println!("{1} {} {0} {}", 1, 2); // => "2 1 1 2"
|
|
|
|
|
println!("{argument}", argument = "test"); // => "test"
|
|
|
|
|
println!("{name} {}", 1, name = 2); // => "2 1"
|
|
|
|
|
println!("{a} {c} {b}", a="a", b='b', c=3); // => "a 3 b"
|
2020-05-30 16:35:11 +00:00
|
|
|
|
println!("{{{}}}", 2); // => "{2}"
|
2020-04-17 07:37:18 +00:00
|
|
|
|
println!("Hello {:5}!", "x");
|
|
|
|
|
println!("Hello {:1$}!", "x", 5);
|
|
|
|
|
println!("Hello {1:0$}!", 5, "x");
|
|
|
|
|
println!("Hello {:width$}!", "x", width = 5);
|
|
|
|
|
println!("Hello {:<5}!", "x");
|
|
|
|
|
println!("Hello {:-<5}!", "x");
|
|
|
|
|
println!("Hello {:^5}!", "x");
|
|
|
|
|
println!("Hello {:>5}!", "x");
|
|
|
|
|
println!("Hello {:+}!", 5);
|
|
|
|
|
println!("{:#x}!", 27);
|
|
|
|
|
println!("Hello {:05}!", 5);
|
|
|
|
|
println!("Hello {:05}!", -5);
|
|
|
|
|
println!("{:#010x}!", 27);
|
|
|
|
|
println!("Hello {0} is {1:.5}", "x", 0.01);
|
|
|
|
|
println!("Hello {1} is {2:.0$}", 5, "x", 0.01);
|
|
|
|
|
println!("Hello {0} is {2:.1$}", "x", 5, 0.01);
|
|
|
|
|
println!("Hello {} is {:.*}", "x", 5, 0.01);
|
|
|
|
|
println!("Hello {} is {2:.*}", "x", 5, 0.01);
|
|
|
|
|
println!("Hello {} is {number:.prec$}", "x", prec = 5, number = 0.01);
|
|
|
|
|
println!("{}, `{name:.*}` has 3 fractional digits", "Hello", 3, name=1234.56);
|
|
|
|
|
println!("{}, `{name:.*}` has 3 characters", "Hello", 3, name="1234.56");
|
|
|
|
|
println!("{}, `{name:>8.*}` has 3 right-aligned characters", "Hello", 3, name="1234.56");
|
|
|
|
|
println!("Hello {{}}");
|
|
|
|
|
println!("{{ Hello");
|
2020-04-22 13:28:35 +00:00
|
|
|
|
|
|
|
|
|
println!(r"Hello, {}!", "world");
|
|
|
|
|
|
|
|
|
|
println!("{\x41}", A = 92);
|
|
|
|
|
println!("{ничоси}", ничоси = 92);
|
2020-04-17 07:37:18 +00:00
|
|
|
|
}"#
|
|
|
|
|
.trim(),
|
2020-06-07 12:50:02 +00:00
|
|
|
|
"crates/ra_ide/src/snapshots/highlight_strings.html",
|
|
|
|
|
false,
|
2020-04-17 07:37:18 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
2020-06-02 22:49:09 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_unsafe_highlighting() {
|
2020-06-07 12:50:02 +00:00
|
|
|
|
check_highlighting(
|
2020-06-02 22:49:09 +00:00
|
|
|
|
r#"
|
|
|
|
|
unsafe fn unsafe_fn() {}
|
|
|
|
|
|
|
|
|
|
struct HasUnsafeFn;
|
|
|
|
|
|
|
|
|
|
impl HasUnsafeFn {
|
|
|
|
|
unsafe fn unsafe_method(&self) {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let x = &5 as *const usize;
|
|
|
|
|
unsafe {
|
|
|
|
|
unsafe_fn();
|
|
|
|
|
HasUnsafeFn.unsafe_method();
|
2020-06-08 13:23:03 +00:00
|
|
|
|
let y = *(x);
|
2020-06-02 22:49:09 +00:00
|
|
|
|
let z = -x;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
"#
|
|
|
|
|
.trim(),
|
2020-06-07 12:50:02 +00:00
|
|
|
|
"crates/ra_ide/src/snapshots/highlight_unsafe.html",
|
|
|
|
|
false,
|
2020-06-02 22:49:09 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
2020-04-28 09:01:51 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_highlight_doctest() {
|
|
|
|
|
check_highlighting(
|
|
|
|
|
r#"
|
2020-06-14 12:43:43 +00:00
|
|
|
|
struct Foo {
|
|
|
|
|
bar: bool,
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-28 09:01:51 +00:00
|
|
|
|
impl Foo {
|
2020-06-14 12:43:43 +00:00
|
|
|
|
pub const bar: bool = true;
|
|
|
|
|
|
2020-04-28 09:01:51 +00:00
|
|
|
|
/// Constructs a new `Foo`.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # #![allow(unused_mut)]
|
|
|
|
|
/// let mut foo: Foo = Foo::new();
|
|
|
|
|
/// ```
|
|
|
|
|
pub const fn new() -> Foo {
|
2020-06-14 12:43:43 +00:00
|
|
|
|
Foo { bar: true }
|
2020-04-28 09:01:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// `bar` method on `Foo`.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
2020-06-14 12:43:43 +00:00
|
|
|
|
/// use x::y;
|
|
|
|
|
///
|
2020-04-28 09:01:51 +00:00
|
|
|
|
/// let foo = Foo::new();
|
|
|
|
|
///
|
|
|
|
|
/// // calls bar on foo
|
|
|
|
|
/// assert!(foo.bar());
|
|
|
|
|
///
|
2020-06-14 12:43:43 +00:00
|
|
|
|
/// let bar = foo.bar || Foo::bar;
|
|
|
|
|
///
|
2020-04-28 09:01:51 +00:00
|
|
|
|
/// /* multi-line
|
|
|
|
|
/// comment */
|
|
|
|
|
///
|
|
|
|
|
/// let multi_line_string = "Foo
|
|
|
|
|
/// bar
|
|
|
|
|
/// ";
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
2020-06-16 21:03:59 +00:00
|
|
|
|
/// ```rust,no_run
|
2020-04-28 09:01:51 +00:00
|
|
|
|
/// let foobar = Foo::new().bar();
|
|
|
|
|
/// ```
|
2020-06-16 21:03:59 +00:00
|
|
|
|
///
|
|
|
|
|
/// ```sh
|
|
|
|
|
/// echo 1
|
|
|
|
|
/// ```
|
2020-04-28 09:01:51 +00:00
|
|
|
|
pub fn foo(&self) -> bool {
|
|
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
"#
|
|
|
|
|
.trim(),
|
|
|
|
|
"crates/ra_ide/src/snapshots/highlight_doctest.html",
|
|
|
|
|
false,
|
2020-06-14 12:43:43 +00:00
|
|
|
|
);
|
2020-04-28 09:01:51 +00:00
|
|
|
|
}
|
2020-06-10 10:34:23 +00:00
|
|
|
|
|
|
|
|
|
/// Highlights the code given by the `ra_fixture` argument, renders the
|
|
|
|
|
/// result as HTML, and compares it with the HTML file given as `snapshot`.
|
|
|
|
|
/// Note that the `snapshot` file is overwritten by the rendered HTML.
|
|
|
|
|
fn check_highlighting(ra_fixture: &str, snapshot: &str, rainbow: bool) {
|
|
|
|
|
let (analysis, file_id) = single_file(ra_fixture);
|
|
|
|
|
let dst_file = project_dir().join(snapshot);
|
|
|
|
|
let actual_html = &analysis.highlight_as_html(file_id, rainbow).unwrap();
|
|
|
|
|
let expected_html = &read_text(&dst_file);
|
|
|
|
|
fs::write(dst_file, &actual_html).unwrap();
|
|
|
|
|
assert_eq_text!(expected_html, actual_html);
|
|
|
|
|
}
|