From 824a24c71029a9c672f1ba4bd38a8bd568228f5a Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 4 Jul 2020 18:03:34 +0200 Subject: Modernize snippet completion tests --- crates/ra_ide/src/completion/complete_snippet.rs | 106 +++++++---------------- 1 file changed, 29 insertions(+), 77 deletions(-) diff --git a/crates/ra_ide/src/completion/complete_snippet.rs b/crates/ra_ide/src/completion/complete_snippet.rs index 52aaa70f0..c70023564 100644 --- a/crates/ra_ide/src/completion/complete_snippet.rs +++ b/crates/ra_ide/src/completion/complete_snippet.rs @@ -70,95 +70,47 @@ fn ${1:feature}() { #[cfg(test)] mod tests { - use crate::completion::{test_utils::do_completion, CompletionItem, CompletionKind}; - use insta::assert_debug_snapshot; + use expect::{expect, Expect}; - fn do_snippet_completion(code: &str) -> Vec { - do_completion(code, CompletionKind::Snippet) + use crate::completion::{test_utils::completion_list, CompletionKind}; + + fn check(ra_fixture: &str, expect: Expect) { + let actual = completion_list(ra_fixture, CompletionKind::Snippet); + expect.assert_eq(&actual) } #[test] fn completes_snippets_in_expressions() { - assert_debug_snapshot!( - do_snippet_completion(r"fn foo(x: i32) { <|> }"), - @r###" - [ - CompletionItem { - label: "pd", - source_range: 17..17, - delete: 17..17, - insert: "eprintln!(\"$0 = {:?}\", $0);", - kind: Snippet, - }, - CompletionItem { - label: "ppd", - source_range: 17..17, - delete: 17..17, - insert: "eprintln!(\"$0 = {:#?}\", $0);", - kind: Snippet, - }, - ] - "### - ); + check( + r#"fn foo(x: i32) { <|> }"#, + expect![[r#" + sn pd + sn ppd + "#]], + ); } #[test] fn should_not_complete_snippets_in_path() { - assert_debug_snapshot!( - do_snippet_completion(r"fn foo(x: i32) { ::foo<|> }"), - @"[]" - ); - assert_debug_snapshot!( - do_snippet_completion(r"fn foo(x: i32) { ::<|> }"), - @"[]" - ); + check(r#"fn foo(x: i32) { ::foo<|> }"#, expect![[""]]); + check(r#"fn foo(x: i32) { ::<|> }"#, expect![[""]]); } #[test] fn completes_snippets_in_items() { - assert_debug_snapshot!( - do_snippet_completion( - r" - #[cfg(test)] - mod tests { - <|> - } - " - ), - @r###" - [ - CompletionItem { - label: "Test function", - source_range: 29..29, - delete: 29..29, - insert: "#[test]\nfn ${1:feature}() {\n $0\n}", - kind: Snippet, - lookup: "tfn", - }, - CompletionItem { - label: "Test module", - source_range: 29..29, - delete: 29..29, - insert: "#[cfg(test)]\nmod tests {\n use super::*;\n\n #[test]\n fn ${1:test_name}() {\n $0\n }\n}", - kind: Snippet, - lookup: "tmod", - }, - CompletionItem { - label: "macro_rules", - source_range: 29..29, - delete: 29..29, - insert: "macro_rules! $1 {\n\t($2) => {\n\t\t$0\n\t};\n}", - kind: Snippet, - }, - CompletionItem { - label: "pub(crate)", - source_range: 29..29, - delete: 29..29, - insert: "pub(crate) $0", - kind: Snippet, - }, - ] - "### - ); + check( + r#" +#[cfg(test)] +mod tests { + <|> +} +"#, + expect![[r#" + sn Test function + sn Test module + sn macro_rules + sn pub(crate) + "#]], + ) } } -- cgit v1.2.3 From c14a3b4a20583acae6f636005998d64dd6bdec75 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 4 Jul 2020 18:53:30 +0200 Subject: Modernize qual path completion tests --- crates/ra_ide/src/completion.rs | 6 +- .../src/completion/complete_qualified_path.rs | 1523 ++++++-------------- crates/ra_ide/src/completion/presentation.rs | 51 + 3 files changed, 475 insertions(+), 1105 deletions(-) diff --git a/crates/ra_ide/src/completion.rs b/crates/ra_ide/src/completion.rs index 9ebb8ebb7..f3a5e9573 100644 --- a/crates/ra_ide/src/completion.rs +++ b/crates/ra_ide/src/completion.rs @@ -2,6 +2,9 @@ mod completion_config; mod completion_item; mod completion_context; mod presentation; +mod patterns; +#[cfg(test)] +mod test_utils; mod complete_attribute; mod complete_dot; @@ -15,9 +18,6 @@ mod complete_unqualified_path; mod complete_postfix; mod complete_macro_in_item_position; mod complete_trait_impl; -mod patterns; -#[cfg(test)] -mod test_utils; use ra_ide_db::RootDatabase; diff --git a/crates/ra_ide/src/completion/complete_qualified_path.rs b/crates/ra_ide/src/completion/complete_qualified_path.rs index 5175c8afe..ba4121103 100644 --- a/crates/ra_ide/src/completion/complete_qualified_path.rs +++ b/crates/ra_ide/src/completion/complete_qualified_path.rs @@ -147,1269 +147,588 @@ pub(super) fn complete_qualified_path(acc: &mut Completions, ctx: &CompletionCon #[cfg(test)] mod tests { + use expect::{expect, Expect}; use test_utils::mark; - use crate::completion::{test_utils::do_completion, CompletionItem, CompletionKind}; - use insta::assert_debug_snapshot; + use crate::completion::{ + test_utils::{check_edit, completion_list}, + CompletionKind, + }; + + fn check(ra_fixture: &str, expect: Expect) { + let actual = completion_list(ra_fixture, CompletionKind::Reference); + expect.assert_eq(&actual); + } - fn do_reference_completion(code: &str) -> Vec { - do_completion(code, CompletionKind::Reference) + fn check_builtin(ra_fixture: &str, expect: Expect) { + let actual = completion_list(ra_fixture, CompletionKind::BuiltinType); + expect.assert_eq(&actual); } #[test] fn dont_complete_current_use() { mark::check!(dont_complete_current_use); - let completions = do_completion(r"use self::foo<|>;", CompletionKind::Reference); - assert!(completions.is_empty()); + check(r#"use self::foo<|>;"#, expect![[""]]); } #[test] fn dont_complete_current_use_in_braces_with_glob() { - let completions = do_completion( - r" - mod foo { pub struct S; } - use self::{foo::*, bar<|>}; - ", - CompletionKind::Reference, + check( + r#" +mod foo { pub struct S; } +use self::{foo::*, bar<|>}; +"#, + expect![[r#" + st S + md foo + "#]], ); - assert_eq!(completions.len(), 2); } #[test] fn dont_complete_primitive_in_use() { - let completions = do_completion(r"use self::<|>;", CompletionKind::BuiltinType); - assert!(completions.is_empty()); + check_builtin(r#"use self::<|>;"#, expect![[""]]); } #[test] fn dont_complete_primitive_in_module_scope() { - let completions = do_completion(r"fn foo() { self::<|> }", CompletionKind::BuiltinType); - assert!(completions.is_empty()); + check_builtin(r#"fn foo() { self::<|> }"#, expect![[""]]); } #[test] fn completes_primitives() { - let completions = - do_completion(r"fn main() { let _: <|> = 92; }", CompletionKind::BuiltinType); - assert_eq!(completions.len(), 17); - } - - #[test] - fn completes_mod_with_docs() { - assert_debug_snapshot!( - do_reference_completion( - r" - use self::my<|>; - - /// Some simple - /// docs describing `mod my`. - mod my { - struct Bar; - } - " - ), - @r###" - [ - CompletionItem { - label: "my", - source_range: 10..12, - delete: 10..12, - insert: "my", - kind: Module, - documentation: Documentation( - "Some simple\ndocs describing `mod my`.", - ), - }, - ] - "### + check_builtin( + r#"fn main() { let _: <|> = 92; }"#, + expect![[r#" + bt bool + bt char + bt f32 + bt f64 + bt i128 + bt i16 + bt i32 + bt i64 + bt i8 + bt isize + bt str + bt u128 + bt u16 + bt u32 + bt u64 + bt u8 + bt usize + "#]], ); } #[test] fn completes_mod_with_same_name_as_function() { - assert_debug_snapshot!( - do_reference_completion( - r" - use self::my::<|>; - - mod my { - pub struct Bar; - } - - fn my() {} - " - ), - @r###" - [ - CompletionItem { - label: "Bar", - source_range: 14..14, - delete: 14..14, - insert: "Bar", - kind: Struct, - }, - ] - "### + check( + r#" +use self::my::<|>; + +mod my { pub struct Bar; } +fn my() {} +"#, + expect![[r#" + st Bar + "#]], ); } #[test] - fn path_visibility() { - assert_debug_snapshot!( - do_reference_completion( - r" - use self::my::<|>; - - mod my { - struct Bar; - pub struct Foo; - pub use Bar as PublicBar; - } - " - ), - @r###" - [ - CompletionItem { - label: "Foo", - source_range: 14..14, - delete: 14..14, - insert: "Foo", - kind: Struct, - }, - CompletionItem { - label: "PublicBar", - source_range: 14..14, - delete: 14..14, - insert: "PublicBar", - kind: Struct, - }, - ] - "### + fn filters_visibility() { + check( + r#" +use self::my::<|>; + +mod my { + struct Bar; + pub struct Foo; + pub use Bar as PublicBar; +} +"#, + expect![[r#" + st Foo + st PublicBar + "#]], ); } #[test] fn completes_use_item_starting_with_self() { - assert_debug_snapshot!( - do_reference_completion( - r" - use self::m::<|>; + check( + r#" +use self::m::<|>; - mod m { - pub struct Bar; - } - " - ), - @r###" - [ - CompletionItem { - label: "Bar", - source_range: 13..13, - delete: 13..13, - insert: "Bar", - kind: Struct, - }, - ] - "### +mod m { pub struct Bar; } +"#, + expect![[r#" + st Bar + "#]], ); } #[test] fn completes_use_item_starting_with_crate() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - mod foo; - struct Spam; - //- /foo.rs - use crate::Sp<|> - " - ), - @r###" - [ - CompletionItem { - label: "Spam", - source_range: 11..13, - delete: 11..13, - insert: "Spam", - kind: Struct, - }, - CompletionItem { - label: "foo", - source_range: 11..13, - delete: 11..13, - insert: "foo", - kind: Module, - }, - ] - "### + check( + r#" +//- /lib.rs +mod foo; +struct Spam; +//- /foo.rs +use crate::Sp<|> +"#, + expect![[r#" + st Spam + md foo + "#]], ); } #[test] fn completes_nested_use_tree() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - mod foo; - struct Spam; - //- /foo.rs - use crate::{Sp<|>}; - " - ), - @r###" - [ - CompletionItem { - label: "Spam", - source_range: 12..14, - delete: 12..14, - insert: "Spam", - kind: Struct, - }, - CompletionItem { - label: "foo", - source_range: 12..14, - delete: 12..14, - insert: "foo", - kind: Module, - }, - ] - "### + check( + r#" +//- /lib.rs +mod foo; +struct Spam; +//- /foo.rs +use crate::{Sp<|>}; +"#, + expect![[r#" + st Spam + md foo + "#]], ); } #[test] fn completes_deeply_nested_use_tree() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - mod foo; - pub mod bar { - pub mod baz { - pub struct Spam; - } - } - //- /foo.rs - use crate::{bar::{baz::Sp<|>}}; - " - ), - @r###" - [ - CompletionItem { - label: "Spam", - source_range: 23..25, - delete: 23..25, - insert: "Spam", - kind: Struct, - }, - ] - "### - ); - } - - #[test] - fn completes_enum_variant() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - /// An enum - enum E { - /// Foo Variant - Foo, - /// Bar Variant with i32 - Bar(i32) - } - fn foo() { let _ = E::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "Bar(…)", - source_range: 116..116, - delete: 116..116, - insert: "Bar($0)", - kind: EnumVariant, - lookup: "Bar", - detail: "(i32)", - documentation: Documentation( - "Bar Variant with i32", - ), - trigger_call_info: true, - }, - CompletionItem { - label: "Foo", - source_range: 116..116, - delete: 116..116, - insert: "Foo", - kind: EnumVariant, - detail: "()", - documentation: Documentation( - "Foo Variant", - ), - }, - ] - "### - ); - } - - #[test] - fn completes_enum_variant_with_details() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - struct S { field: u32 } - /// An enum - enum E { - /// Foo Variant (empty) - Foo, - /// Bar Variant with i32 and u32 - Bar(i32, u32), - /// - S(S), - } - fn foo() { let _ = E::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "Bar(…)", - source_range: 180..180, - delete: 180..180, - insert: "Bar($0)", - kind: EnumVariant, - lookup: "Bar", - detail: "(i32, u32)", - documentation: Documentation( - "Bar Variant with i32 and u32", - ), - trigger_call_info: true, - }, - CompletionItem { - label: "Foo", - source_range: 180..180, - delete: 180..180, - insert: "Foo", - kind: EnumVariant, - detail: "()", - documentation: Documentation( - "Foo Variant (empty)", - ), - }, - CompletionItem { - label: "S(…)", - source_range: 180..180, - delete: 180..180, - insert: "S($0)", - kind: EnumVariant, - lookup: "S", - detail: "(S)", - documentation: Documentation( - "", - ), - trigger_call_info: true, - }, - ] - "### - ); + check( + r#" +//- /lib.rs +mod foo; +pub mod bar { + pub mod baz { + pub struct Spam; } - - #[test] - fn completes_struct_associated_method() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - /// A Struct - struct S; - - impl S { - /// An associated method - fn m() { } - } - - fn foo() { let _ = S::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "m()", - source_range: 102..102, - delete: 102..102, - insert: "m()$0", - kind: Function, - lookup: "m", - detail: "fn m()", - documentation: Documentation( - "An associated method", - ), - }, - ] - "### +} +//- /foo.rs +use crate::{bar::{baz::Sp<|>}}; +"#, + expect![[r#" + st Spam + "#]], ); } #[test] - fn completes_struct_associated_method_with_self() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - /// A Struct - struct S; - - impl S { - /// An associated method - fn m(&self) { } - } - - fn foo() { let _ = S::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "m()", - source_range: 107..107, - delete: 107..107, - insert: "m()$0", - kind: Method, - lookup: "m", - detail: "fn m(&self)", - documentation: Documentation( - "An associated method", - ), - }, - ] - "### + fn completes_enum_variant() { + check( + r#" +enum E { Foo, Bar(i32) } +fn foo() { let _ = E::<|> } +"#, + expect![[r#" + ev Bar(…) (i32) + ev Foo () + "#]], ); } #[test] - fn completes_struct_associated_const() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - /// A Struct - struct S; - - impl S { - /// An associated const - const C: i32 = 42; - } + fn completes_struct_associated_items() { + check( + r#" +//- /lib.rs +struct S; + +impl S { + fn a() {} + fn b(&self) {} + const C: i32 = 42; + type T = i32; +} - fn foo() { let _ = S::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "C", - source_range: 109..109, - delete: 109..109, - insert: "C", - kind: Const, - detail: "const C: i32 = 42;", - documentation: Documentation( - "An associated const", - ), - }, - ] - "### +fn foo() { let _ = S::<|> } +"#, + expect![[r#" + ct C const C: i32 = 42; + ta T type T = i32; + fn a() fn a() + me b() fn b(&self) + "#]], ); } #[test] - fn completes_struct_associated_type() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - /// A Struct - struct S; - - impl S { - /// An associated type - type T = i32; - } + fn associated_item_visibility() { + check( + r#" +struct S; - fn foo() { let _ = S::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "T", - source_range: 103..103, - delete: 103..103, - insert: "T", - kind: TypeAlias, - detail: "type T = i32;", - documentation: Documentation( - "An associated type", - ), - }, - ] - "### - ); +mod m { + impl super::S { + pub(super) fn public_method() { } + fn private_method() { } + pub(super) type PublicType = u32; + type PrivateType = u32; + pub(super) const PUBLIC_CONST: u32 = 1; + const PRIVATE_CONST: u32 = 1; } +} - #[test] - fn associated_item_visibility() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - struct S; - - mod m { - impl super::S { - pub(super) fn public_method() { } - fn private_method() { } - pub(super) type PublicType = u32; - type PrivateType = u32; - pub(super) const PUBLIC_CONST: u32 = 1; - const PRIVATE_CONST: u32 = 1; - } - } - - fn foo() { let _ = S::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "PUBLIC_CONST", - source_range: 304..304, - delete: 304..304, - insert: "PUBLIC_CONST", - kind: Const, - detail: "pub(super) const PUBLIC_CONST: u32 = 1;", - }, - CompletionItem { - label: "PublicType", - source_range: 304..304, - delete: 304..304, - insert: "PublicType", - kind: TypeAlias, - detail: "pub(super) type PublicType = u32;", - }, - CompletionItem { - label: "public_method()", - source_range: 304..304, - delete: 304..304, - insert: "public_method()$0", - kind: Function, - lookup: "public_method", - detail: "pub(super) fn public_method()", - }, - ] - "### +fn foo() { let _ = S::<|> } +"#, + expect![[r#" + ct PUBLIC_CONST pub(super) const PUBLIC_CONST: u32 = 1; + ta PublicType pub(super) type PublicType = u32; + fn public_method() pub(super) fn public_method() + "#]], ); } #[test] fn completes_enum_associated_method() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - /// An enum - enum S {}; - - impl S { - /// An associated method - fn m() { } - } - - fn foo() { let _ = S::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "m()", - source_range: 102..102, - delete: 102..102, - insert: "m()$0", - kind: Function, - lookup: "m", - detail: "fn m()", - documentation: Documentation( - "An associated method", - ), - }, - ] - "### + check( + r#" +enum E {}; +impl E { fn m() { } } + +fn foo() { let _ = E::<|> } + "#, + expect![[r#" + fn m() fn m() + "#]], ); } #[test] fn completes_union_associated_method() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - /// A union - union U {}; - - impl U { - /// An associated method - fn m() { } - } - - fn foo() { let _ = U::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "m()", - source_range: 103..103, - delete: 103..103, - insert: "m()$0", - kind: Function, - lookup: "m", - detail: "fn m()", - documentation: Documentation( - "An associated method", - ), - }, - ] - "### + check( + r#" +union U {}; +impl U { fn m() { } } + +fn foo() { let _ = U::<|> } +"#, + expect![[r#" + fn m() fn m() + "#]], ); } #[test] fn completes_use_paths_across_crates() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /main.rs - use foo::<|>; - - //- /foo/lib.rs - pub mod bar { - pub struct S; - } - " - ), - @r###" - [ - CompletionItem { - label: "bar", - source_range: 9..9, - delete: 9..9, - insert: "bar", - kind: Module, - }, - ] - "### + check( + r#" +//- /main.rs +use foo::<|>; + +//- /foo/lib.rs +pub mod bar { pub struct S; } +"#, + expect![[r#" + md bar + "#]], ); } #[test] fn completes_trait_associated_method_1() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - trait Trait { - /// A trait method - fn m(); - } + check( + r#" +trait Trait { fn m(); } - fn foo() { let _ = Trait::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "m()", - source_range: 74..74, - delete: 74..74, - insert: "m()$0", - kind: Function, - lookup: "m", - detail: "fn m()", - documentation: Documentation( - "A trait method", - ), - }, - ] - "### +fn foo() { let _ = Trait::<|> } +"#, + expect![[r#" + fn m() fn m() + "#]], ); } #[test] fn completes_trait_associated_method_2() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - trait Trait { - /// A trait method - fn m(); - } + check( + r#" +trait Trait { fn m(); } + +struct S; +impl Trait for S {} - struct S; - impl Trait for S {} - - fn foo() { let _ = S::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "m()", - source_range: 101..101, - delete: 101..101, - insert: "m()$0", - kind: Function, - lookup: "m", - detail: "fn m()", - documentation: Documentation( - "A trait method", - ), - }, - ] - "### +fn foo() { let _ = S::<|> } +"#, + expect![[r#" + fn m() fn m() + "#]], ); } #[test] fn completes_trait_associated_method_3() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - trait Trait { - /// A trait method - fn m(); - } + check( + r#" +trait Trait { fn m(); } - struct S; - impl Trait for S {} - - fn foo() { let _ = ::<|> } - " - ), - @r###" - [ - CompletionItem { - label: "m()", - source_range: 112..112, - delete: 112..112, - insert: "m()$0", - kind: Function, - lookup: "m", - detail: "fn m()", - documentation: Documentation( - "A trait method", - ), - }, - ] - "### +struct S; +impl Trait for S {} + +fn foo() { let _ = ::<|> } +"#, + expect![[r#" + fn m() fn m() + "#]], ); } #[test] fn completes_ty_param_assoc_ty() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - trait Super { - type Ty; - const CONST: u8; - fn func() {} - fn method(&self) {} - } + check( + r#" +trait Super { + type Ty; + const CONST: u8; + fn func() {} + fn method(&self) {} +} - trait Sub: Super { - type SubTy; - const C2: (); - fn subfunc() {} - fn submethod(&self) {} - } +trait Sub: Super { + type SubTy; + const C2: (); + fn subfunc() {} + fn submethod(&self) {} +} - fn foo() { - T::<|> - } - " - ), - @r###" - [ - CompletionItem { - label: "C2", - source_range: 221..221, - delete: 221..221, - insert: "C2", - kind: Const, - detail: "const C2: ();", - }, - CompletionItem { - label: "CONST", - source_range: 221..221, - delete: 221..221, - insert: "CONST", - kind: Const, - detail: "const CONST: u8;", - }, - CompletionItem { - label: "SubTy", - source_range: 221..221, - delete: 221..221, - insert: "SubTy", - kind: TypeAlias, - detail: "type SubTy;", - }, - CompletionItem { - label: "Ty", - source_range: 221..221, - delete: 221..221, - insert: "Ty", - kind: TypeAlias, - detail: "type Ty;", - }, - CompletionItem { - label: "func()", - source_range: 221..221, - delete: 221..221, - insert: "func()$0", - kind: Function, - lookup: "func", - detail: "fn func()", - }, - CompletionItem { - label: "method()", - source_range: 221..221, - delete: 221..221, - insert: "method()$0", - kind: Method, - lookup: "method", - detail: "fn method(&self)", - }, - CompletionItem { - label: "subfunc()", - source_range: 221..221, - delete: 221..221, - insert: "subfunc()$0", - kind: Function, - lookup: "subfunc", - detail: "fn subfunc()", - }, - CompletionItem { - label: "submethod()", - source_range: 221..221, - delete: 221..221, - insert: "submethod()$0", - kind: Method, - lookup: "submethod", - detail: "fn submethod(&self)", - }, - ] - "### +fn foo() { T::<|> } +"#, + expect![[r#" + ct C2 const C2: (); + ct CONST const CONST: u8; + ta SubTy type SubTy; + ta Ty type Ty; + fn func() fn func() + me method() fn method(&self) + fn subfunc() fn subfunc() + me submethod() fn submethod(&self) + "#]], ); } #[test] fn completes_self_param_assoc_ty() { - assert_debug_snapshot!( - do_reference_completion( - " - //- /lib.rs - trait Super { - type Ty; - const CONST: u8 = 0; - fn func() {} - fn method(&self) {} - } + check( + r#" +trait Super { + type Ty; + const CONST: u8 = 0; + fn func() {} + fn method(&self) {} +} - trait Sub: Super { - type SubTy; - const C2: () = (); - fn subfunc() {} - fn submethod(&self) {} - } +trait Sub: Super { + type SubTy; + const C2: () = (); + fn subfunc() {} + fn submethod(&self) {} +} - struct Wrap(T); - impl Super for Wrap {} - impl Sub for Wrap { - fn subfunc() { - // Should be able to assume `Self: Sub + Super` - Self::<|> - } - } - " - ), - @r###" - [ - CompletionItem { - label: "C2", - source_range: 367..367, - delete: 367..367, - insert: "C2", - kind: Const, - detail: "const C2: () = ();", - }, - CompletionItem { - label: "CONST", - source_range: 367..367, - delete: 367..367, - insert: "CONST", - kind: Const, - detail: "const CONST: u8 = 0;", - }, - CompletionItem { - label: "SubTy", - source_range: 367..367, - delete: 367..367, - insert: "SubTy", - kind: TypeAlias, - detail: "type SubTy;", - }, - CompletionItem { - label: "Ty", - source_range: 367..367, - delete: 367..367, - insert: "Ty", - kind: TypeAlias, - detail: "type Ty;", - }, - CompletionItem { - label: "func()", - source_range: 367..367, - delete: 367..367, - insert: "func()$0", - kind: Function, - lookup: "func", - detail: "fn func()", - }, - CompletionItem { - label: "method()", - source_range: 367..367, - delete: 367..367, - insert: "method()$0", - kind: Method, - lookup: "method", - detail: "fn method(&self)", - }, - CompletionItem { - label: "subfunc()", - source_range: 367..367, - delete: 367..367, - insert: "subfunc()$0", - kind: Function, - lookup: "subfunc", - detail: "fn subfunc()", - }, - CompletionItem { - label: "submethod()", - source_range: 367..367, - delete: 367..367, - insert: "submethod()$0", - kind: Method, - lookup: "submethod", - detail: "fn submethod(&self)", - }, - ] - "### +struct Wrap(T); +impl Super for Wrap {} +impl Sub for Wrap { + fn subfunc() { + // Should be able to assume `Self: Sub + Super` + Self::<|> + } +} +"#, + expect![[r#" + ct C2 const C2: () = (); + ct CONST const CONST: u8 = 0; + ta SubTy type SubTy; + ta Ty type Ty; + fn func() fn func() + me method() fn method(&self) + fn subfunc() fn subfunc() + me submethod() fn submethod(&self) + "#]], ); } #[test] fn completes_type_alias() { - assert_debug_snapshot!( - do_reference_completion( - " - struct S; - impl S { fn foo() {} } - type T = S; - impl T { fn bar() {} } - - fn main() { - T::<|>; - } - " - ), - @r###" - [ - CompletionItem { - label: "bar()", - source_range: 88..88, - delete: 88..88, - insert: "bar()$0", - kind: Function, - lookup: "bar", - detail: "fn bar()", - }, - CompletionItem { - label: "foo()", - source_range: 88..88, - delete: 88..88, - insert: "foo()$0", - kind: Function, - lookup: "foo", - detail: "fn foo()", - }, - ] - "### + check( + r#" +struct S; +impl S { fn foo() {} } +type T = S; +impl T { fn bar() {} } + +fn main() { T::<|>; } +"#, + expect![[r#" + fn bar() fn bar() + fn foo() fn foo() + "#]], ); } #[test] fn completes_qualified_macros() { - assert_debug_snapshot!( - do_reference_completion( - " - #[macro_export] - macro_rules! foo { - () => {} - } - - fn main() { - let _ = crate::<|> - } - " - ), - @r###" - [ - CompletionItem { - label: "foo!(…)", - source_range: 82..82, - delete: 82..82, - insert: "foo!($0)", - kind: Macro, - lookup: "foo!", - detail: "#[macro_export]\nmacro_rules! foo", - }, - CompletionItem { - label: "main()", - source_range: 82..82, - delete: 82..82, - insert: "main()$0", - kind: Function, - lookup: "main", - detail: "fn main()", - }, - ] - "### + check( + r#" +#[macro_export] +macro_rules! foo { () => {} } + +fn main() { let _ = crate::<|> } + "#, + expect![[r##" + ma foo!(…) #[macro_export] + macro_rules! foo + fn main() fn main() + "##]], ); } #[test] fn test_super_super_completion() { - assert_debug_snapshot!( - do_reference_completion( - r" - mod a { - const A: usize = 0; - - mod b { - const B: usize = 0; - - mod c { - use super::super::<|> - } - } - } - ", - ), - @r###" - [ - CompletionItem { - label: "A", - source_range: 120..120, - delete: 120..120, - insert: "A", - kind: Const, - }, - CompletionItem { - label: "b", - source_range: 120..120, - delete: 120..120, - insert: "b", - kind: Module, - }, - ] - "### + check( + r#" +mod a { + const A: usize = 0; + mod b { + const B: usize = 0; + mod c { use super::super::<|> } + } +} +"#, + expect![[r#" + ct A + md b + "#]], ); } #[test] fn completes_reexported_items_under_correct_name() { - assert_debug_snapshot!( - do_reference_completion( - r" - fn foo() { - self::m::<|> - } + check( + r#" +fn foo() { self::m::<|> } - mod m { - pub use super::p::wrong_fn as right_fn; - pub use super::p::WRONG_CONST as RIGHT_CONST; - pub use super::p::WrongType as RightType; - } - mod p { - fn wrong_fn() {} - const WRONG_CONST: u32 = 1; - struct WrongType {}; - } - " - ), - @r###" - [ - CompletionItem { - label: "RIGHT_CONST", - source_range: 24..24, - delete: 24..24, - insert: "RIGHT_CONST", - kind: Const, - }, - CompletionItem { - label: "RightType", - source_range: 24..24, - delete: 24..24, - insert: "RightType", - kind: Struct, - }, - CompletionItem { - label: "right_fn()", - source_range: 24..24, - delete: 24..24, - insert: "right_fn()$0", - kind: Function, - lookup: "right_fn", - detail: "fn wrong_fn()", - }, - ] - "### +mod m { + pub use super::p::wrong_fn as right_fn; + pub use super::p::WRONG_CONST as RIGHT_CONST; + pub use super::p::WrongType as RightType; +} +mod p { + fn wrong_fn() {} + const WRONG_CONST: u32 = 1; + struct WrongType {}; +} +"#, + expect![[r#" + ct RIGHT_CONST + st RightType + fn right_fn() fn wrong_fn() + "#]], + ); + + check_edit( + "RightType", + r#" +fn foo() { self::m::<|> } + +mod m { + pub use super::p::wrong_fn as right_fn; + pub use super::p::WRONG_CONST as RIGHT_CONST; + pub use super::p::WrongType as RightType; +} +mod p { + fn wrong_fn() {} + const WRONG_CONST: u32 = 1; + struct WrongType {}; +} +"#, + r#" +fn foo() { self::m::RightType } + +mod m { + pub use super::p::wrong_fn as right_fn; + pub use super::p::WRONG_CONST as RIGHT_CONST; + pub use super::p::WrongType as RightType; +} +mod p { + fn wrong_fn() {} + const WRONG_CONST: u32 = 1; + struct WrongType {}; +} +"#, ); } #[test] fn completes_in_simple_macro_call() { - let completions = do_reference_completion( + check( r#" - macro_rules! m { ($e:expr) => { $e } } - fn main() { m!(self::f<|>); } - fn foo() {} - "#, +macro_rules! m { ($e:expr) => { $e } } +fn main() { m!(self::f<|>); } +fn foo() {} +"#, + expect![[r#" + fn foo() fn foo() + fn main() fn main() + "#]], ); - assert_debug_snapshot!(completions, @r###" - [ - CompletionItem { - label: "foo()", - source_range: 60..61, - delete: 60..61, - insert: "foo()$0", - kind: Function, - lookup: "foo", - detail: "fn foo()", - }, - CompletionItem { - label: "main()", - source_range: 60..61, - delete: 60..61, - insert: "main()$0", - kind: Function, - lookup: "main", - detail: "fn main()", - }, - ] - "###); } #[test] fn function_mod_share_name() { - assert_debug_snapshot!( - do_reference_completion( - r" - fn foo() { - self::m::<|> - } + check( + r#" +fn foo() { self::m::<|> } - mod m { - pub mod z {} - pub fn z() {} - } - ", - ), - @r###" - [ - CompletionItem { - label: "z", - source_range: 24..24, - delete: 24..24, - insert: "z", - kind: Module, - }, - CompletionItem { - label: "z()", - source_range: 24..24, - delete: 24..24, - insert: "z()$0", - kind: Function, - lookup: "z", - detail: "pub fn z()", - }, - ] - "### +mod m { + pub mod z {} + pub fn z() {} +} +"#, + expect![[r#" + md z + fn z() pub fn z() + "#]], ); } #[test] fn completes_hashmap_new() { - assert_debug_snapshot!( - do_reference_completion( - r" - struct RandomState; - struct HashMap {} - - impl HashMap { - pub fn new() -> HashMap { } - } - fn foo() { - HashMap::<|> - } - " - ), - @r###" - [ - CompletionItem { - label: "new()", - source_range: 179..179, - delete: 179..179, - insert: "new()$0", - kind: Function, - lookup: "new", - detail: "pub fn new() -> HashMap", - }, - ] - "### + check( + r#" +struct RandomState; +struct HashMap {} + +impl HashMap { + pub fn new() -> HashMap { } +} +fn foo() { + HashMap::<|> +} +"#, + expect![[r#" + fn new() pub fn new() -> HashMap + "#]], ); } #[test] fn dont_complete_attr() { - assert_debug_snapshot!( - do_reference_completion( - r" - mod foo { pub struct Foo; } - #[foo::<|>] - fn f() {} - " - ), - @r###"[]"### - ) + check( + r#" +mod foo { pub struct Foo; } +#[foo::<|>] +fn f() {} +"#, + expect![[""]], + ); } } diff --git a/crates/ra_ide/src/completion/presentation.rs b/crates/ra_ide/src/completion/presentation.rs index 946bbef7c..bfa7e08be 100644 --- a/crates/ra_ide/src/completion/presentation.rs +++ b/crates/ra_ide/src/completion/presentation.rs @@ -683,6 +683,57 @@ impl S { }, ] "#]], + ); + + check( + r#" +use self::my<|>; + +/// mod docs +mod my { } + +/// enum docs +enum E { + /// variant docs + V +} +use self::E::*; +"#, + expect![[r#" + [ + CompletionItem { + label: "E", + source_range: 10..12, + delete: 10..12, + insert: "E", + kind: Enum, + documentation: Documentation( + "enum docs", + ), + }, + CompletionItem { + label: "V", + source_range: 10..12, + delete: 10..12, + insert: "V", + kind: EnumVariant, + detail: "()", + documentation: Documentation( + "variant docs", + ), + }, + CompletionItem { + label: "my", + source_range: 10..12, + delete: 10..12, + insert: "my", + kind: Module, + documentation: Documentation( + "mod docs", + ), + }, + ] + "#]], ) } -- cgit v1.2.3 From 943fa4639569cc2c93d3ff8f7f5b1a30cc332cb0 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 4 Jul 2020 19:03:58 +0200 Subject: Alight details in comkplation list --- crates/ra_ide/src/completion/complete_dot.rs | 8 ++-- crates/ra_ide/src/completion/complete_keyword.rs | 12 +++--- crates/ra_ide/src/completion/complete_pattern.rs | 2 +- crates/ra_ide/src/completion/complete_postfix.rs | 24 ++++++------ .../src/completion/complete_qualified_path.rs | 44 +++++++++++----------- crates/ra_ide/src/completion/complete_snippet.rs | 6 +-- crates/ra_ide/src/completion/test_utils.rs | 17 ++++++++- 7 files changed, 63 insertions(+), 50 deletions(-) diff --git a/crates/ra_ide/src/completion/complete_dot.rs b/crates/ra_ide/src/completion/complete_dot.rs index 667a8b949..3c6c8c81a 100644 --- a/crates/ra_ide/src/completion/complete_dot.rs +++ b/crates/ra_ide/src/completion/complete_dot.rs @@ -83,7 +83,7 @@ fn foo(s: S) { s.<|> } "#, expect![[r#" me bar() fn bar(&self) - fd foo u32 + fd foo u32 "#]], ); } @@ -98,7 +98,7 @@ impl S { } "#, expect![[r#" - me foo() fn foo(self) + me foo() fn foo(self) fd the_field (u32,) "#]], ) @@ -114,7 +114,7 @@ impl A { } "#, expect![[r#" - me foo() fn foo(&self) + me foo() fn foo(&self) fd the_field (u32, i32) "#]], ) @@ -148,7 +148,7 @@ fn foo(a: inner::A) { a.<|> } "#, expect![[r#" fd crate_field u32 - fd pub_field u32 + fd pub_field u32 fd super_field u32 "#]], ); diff --git a/crates/ra_ide/src/completion/complete_keyword.rs b/crates/ra_ide/src/completion/complete_keyword.rs index 340d57a49..2dc401f57 100644 --- a/crates/ra_ide/src/completion/complete_keyword.rs +++ b/crates/ra_ide/src/completion/complete_keyword.rs @@ -216,17 +216,17 @@ mod tests { check( r"use a::<|>", expect![[r#" - kw self - kw super:: - "#]], + kw self + kw super:: + "#]], ); check( r"use a::{b, <|>}", expect![[r#" - kw self - kw super:: - "#]], + kw self + kw super:: + "#]], ); } diff --git a/crates/ra_ide/src/completion/complete_pattern.rs b/crates/ra_ide/src/completion/complete_pattern.rs index 41c16df7b..13fa7548d 100644 --- a/crates/ra_ide/src/completion/complete_pattern.rs +++ b/crates/ra_ide/src/completion/complete_pattern.rs @@ -61,7 +61,7 @@ fn foo() { expect![[r#" st Bar en E - ev X () + ev X () ct Z md m "#]], diff --git a/crates/ra_ide/src/completion/complete_postfix.rs b/crates/ra_ide/src/completion/complete_postfix.rs index 14013dc2f..8735b9010 100644 --- a/crates/ra_ide/src/completion/complete_postfix.rs +++ b/crates/ra_ide/src/completion/complete_postfix.rs @@ -260,14 +260,14 @@ fn main() { } "#, expect![[r#" - sn box Box::new(expr) - sn call function(expr) - sn dbg dbg!(expr) - sn if if expr {} + sn box Box::new(expr) + sn call function(expr) + sn dbg dbg!(expr) + sn if if expr {} sn match match expr {} - sn not !expr - sn ref &expr - sn refm &mut expr + sn not !expr + sn ref &expr + sn refm &mut expr sn while while expr {} "#]], ); @@ -283,12 +283,12 @@ fn main() { } "#, expect![[r#" - sn box Box::new(expr) - sn call function(expr) - sn dbg dbg!(expr) + sn box Box::new(expr) + sn call function(expr) + sn dbg dbg!(expr) sn match match expr {} - sn ref &expr - sn refm &mut expr + sn ref &expr + sn refm &mut expr "#]], ) } diff --git a/crates/ra_ide/src/completion/complete_qualified_path.rs b/crates/ra_ide/src/completion/complete_qualified_path.rs index ba4121103..e5553e28f 100644 --- a/crates/ra_ide/src/completion/complete_qualified_path.rs +++ b/crates/ra_ide/src/completion/complete_qualified_path.rs @@ -332,7 +332,7 @@ fn foo() { let _ = E::<|> } "#, expect![[r#" ev Bar(…) (i32) - ev Foo () + ev Foo () "#]], ); } @@ -354,8 +354,8 @@ impl S { fn foo() { let _ = S::<|> } "#, expect![[r#" - ct C const C: i32 = 42; - ta T type T = i32; + ct C const C: i32 = 42; + ta T type T = i32; fn a() fn a() me b() fn b(&self) "#]], @@ -382,8 +382,8 @@ mod m { fn foo() { let _ = S::<|> } "#, expect![[r#" - ct PUBLIC_CONST pub(super) const PUBLIC_CONST: u32 = 1; - ta PublicType pub(super) type PublicType = u32; + ct PUBLIC_CONST pub(super) const PUBLIC_CONST: u32 = 1; + ta PublicType pub(super) type PublicType = u32; fn public_method() pub(super) fn public_method() "#]], ); @@ -504,13 +504,13 @@ trait Sub: Super { fn foo() { T::<|> } "#, expect![[r#" - ct C2 const C2: (); - ct CONST const CONST: u8; - ta SubTy type SubTy; - ta Ty type Ty; - fn func() fn func() - me method() fn method(&self) - fn subfunc() fn subfunc() + ct C2 const C2: (); + ct CONST const CONST: u8; + ta SubTy type SubTy; + ta Ty type Ty; + fn func() fn func() + me method() fn method(&self) + fn subfunc() fn subfunc() me submethod() fn submethod(&self) "#]], ); @@ -544,13 +544,13 @@ impl Sub for Wrap { } "#, expect![[r#" - ct C2 const C2: () = (); - ct CONST const CONST: u8 = 0; - ta SubTy type SubTy; - ta Ty type Ty; - fn func() fn func() - me method() fn method(&self) - fn subfunc() fn subfunc() + ct C2 const C2: () = (); + ct CONST const CONST: u8 = 0; + ta SubTy type SubTy; + ta Ty type Ty; + fn func() fn func() + me method() fn method(&self) + fn subfunc() fn subfunc() me submethod() fn submethod(&self) "#]], ); @@ -586,7 +586,7 @@ fn main() { let _ = crate::<|> } expect![[r##" ma foo!(…) #[macro_export] macro_rules! foo - fn main() fn main() + fn main() fn main() "##]], ); } @@ -630,7 +630,7 @@ mod p { expect![[r#" ct RIGHT_CONST st RightType - fn right_fn() fn wrong_fn() + fn right_fn() fn wrong_fn() "#]], ); @@ -676,7 +676,7 @@ fn main() { m!(self::f<|>); } fn foo() {} "#, expect![[r#" - fn foo() fn foo() + fn foo() fn foo() fn main() fn main() "#]], ); diff --git a/crates/ra_ide/src/completion/complete_snippet.rs b/crates/ra_ide/src/completion/complete_snippet.rs index c70023564..28d8f7876 100644 --- a/crates/ra_ide/src/completion/complete_snippet.rs +++ b/crates/ra_ide/src/completion/complete_snippet.rs @@ -84,9 +84,9 @@ mod tests { check( r#"fn foo(x: i32) { <|> }"#, expect![[r#" - sn pd - sn ppd - "#]], + sn pd + sn ppd + "#]], ); } diff --git a/crates/ra_ide/src/completion/test_utils.rs b/crates/ra_ide/src/completion/test_utils.rs index cbae1da85..c2be23697 100644 --- a/crates/ra_ide/src/completion/test_utils.rs +++ b/crates/ra_ide/src/completion/test_utils.rs @@ -43,12 +43,21 @@ pub(crate) fn completion_list_with_config( .filter(|c| c.completion_kind == kind) .collect(); kind_completions.sort_by_key(|c| c.label().to_owned()); + let label_width = kind_completions + .iter() + .map(|it| monospace_width(it.label())) + .max() + .unwrap_or_default() + .min(16); kind_completions .into_iter() .map(|it| { - let mut buf = format!("{} {}", it.kind().unwrap().tag(), it.label()); + let tag = it.kind().unwrap().tag(); + let var_name = format!("{} {}", tag, it.label()); + let mut buf = var_name; if let Some(detail) = it.detail() { - format_to!(buf, " {}", detail); + let width = label_width.saturating_sub(monospace_width(it.label())); + format_to!(buf, "{:width$} {}", "", detail, width = width); } format_to!(buf, "\n"); buf @@ -56,6 +65,10 @@ pub(crate) fn completion_list_with_config( .collect() } +fn monospace_width(s: &str) -> usize { + s.chars().count() +} + pub(crate) fn check_edit(what: &str, ra_fixture_before: &str, ra_fixture_after: &str) { check_edit_with_config(what, ra_fixture_before, ra_fixture_after, &CompletionConfig::default()) } -- cgit v1.2.3