]> git.lizzy.rs Git - rust.git/blobdiff - crates/ide_assists/src/handlers/generate_is_empty_from_len.rs
Add macro test
[rust.git] / crates / ide_assists / src / handlers / generate_is_empty_from_len.rs
index bd29dddb3b16c53da4313223b5bd979cb2f9db71..910010a044fc9bd85b29723f0bae868ca5d8079e 100644 (file)
@@ -1,7 +1,7 @@
-use hir::{AssocItem, HasSource, Impl};
+use hir::{known, HasSource, Name};
 use syntax::{
     ast::{self, NameOwner},
-    AstNode, TextRange,
+    AstNode,
 };
 
 use crate::{
@@ -14,6 +14,8 @@
 // Generates is_empty implementation from the len method.
 //
 // ```
+// struct MyStruct { data: Vec<String> }
+//
 // impl MyStruct {
 //     p$0ub fn len(&self) -> usize {
 //         self.data.len()
@@ -22,6 +24,8 @@
 // ```
 // ->
 // ```
+// struct MyStruct { data: Vec<String> }
+//
 // impl MyStruct {
 //     pub fn len(&self) -> usize {
 //         self.data.len()
@@ -46,60 +50,50 @@ pub(crate) fn generate_is_empty_from_len(acc: &mut Assists, ctx: &AssistContext)
         return None;
     }
 
-    let impl_ = fn_node.syntax().ancestors().into_iter().find_map(ast::Impl::cast)?;
-    let impl_def = ctx.sema.to_def(&impl_)?;
-    if is_empty_implemented(ctx, &impl_def) {
+    let impl_ = fn_node.syntax().ancestors().find_map(ast::Impl::cast)?;
+    let len_fn = get_impl_method(ctx, &impl_, &known::len)?;
+    if !len_fn.ret_type(ctx.sema.db).is_usize() {
+        cov_mark::hit!(len_fn_different_return_type);
+        return None;
+    }
+
+    if get_impl_method(ctx, &impl_, &known::is_empty).is_some() {
         cov_mark::hit!(is_empty_already_implemented);
         return None;
     }
 
-    let range = get_text_range_of_len_function(ctx, &impl_def)?;
+    let node = len_fn.source(ctx.sema.db)?;
+    let range = node.syntax().value.text_range();
 
     acc.add(
         AssistId("generate_is_empty_from_len", AssistKind::Generate),
         "Generate a is_empty impl from a len function",
         range,
         |builder| {
-            let code = get_is_empty_code();
+            let code = r#"
+
+    pub fn is_empty(&self) -> bool {
+        self.len() == 0
+    }"#
+            .to_string();
             builder.insert(range.end(), code)
         },
     )
 }
 
-fn get_function_from_impl(ctx: &AssistContext, impl_def: &Impl, name: &str) -> Option<AssocItem> {
+fn get_impl_method(
+    ctx: &AssistContext,
+    impl_: &ast::Impl,
+    fn_name: &Name,
+) -> Option<hir::Function> {
     let db = ctx.sema.db;
-    impl_def.items(db).into_iter().filter(|item| matches!(item, AssocItem::Function(_value))).find(
-        |func| match func.name(db) {
-            Some(fn_name) => fn_name.to_string() == name,
-            None => false,
-        },
-    )
-}
+    let impl_def: hir::Impl = ctx.sema.to_def(impl_)?;
 
-fn is_empty_implemented(ctx: &AssistContext, impl_def: &Impl) -> bool {
-    get_function_from_impl(ctx, impl_def, "is_empty").is_some()
-}
-
-fn get_text_range_of_len_function(ctx: &AssistContext, impl_def: &Impl) -> Option<TextRange> {
-    let db = ctx.sema.db;
-    let len_fn = get_function_from_impl(ctx, impl_def, "len")?;
-
-    let mut range = None;
-    if let AssocItem::Function(node) = len_fn {
-        let node = node.source(db)?;
-        range = Some(node.syntax().value.text_range());
-    }
-
-    range
-}
-
-fn get_is_empty_code() -> String {
-    r#"
-
-    pub fn is_empty(&self) -> bool {
-        self.len() == 0
-    }"#
-    .to_string()
+    let scope = ctx.sema.scope(impl_.syntax());
+    let krate = impl_def.module(db).krate();
+    let ty = impl_def.self_ty(db);
+    let traits_in_scope = scope.traits_in_scope();
+    ty.iterate_method_candidates(db, krate, &traits_in_scope, Some(fn_name), |_, func| Some(func))
 }
 
 #[cfg(test)]
@@ -114,6 +108,8 @@ fn len_function_not_present() {
         check_assist_not_applicable(
             generate_is_empty_from_len,
             r#"
+struct MyStruct { data: Vec<String> }
+
 impl MyStruct {
     p$0ub fn test(&self) -> usize {
             self.data.len()
@@ -129,6 +125,8 @@ fn len_function_with_parameters() {
         check_assist_not_applicable(
             generate_is_empty_from_len,
             r#"
+struct MyStruct { data: Vec<String> }
+
 impl MyStruct {
     p$0ub fn len(&self, _i: bool) -> usize {
         self.data.len()
@@ -144,6 +142,8 @@ fn is_empty_already_implemented() {
         check_assist_not_applicable(
             generate_is_empty_from_len,
             r#"
+struct MyStruct { data: Vec<String> }
+
 impl MyStruct {
     p$0ub fn len(&self) -> usize {
         self.data.len()
@@ -157,11 +157,30 @@ pub fn is_empty(&self) -> bool {
         );
     }
 
+    #[test]
+    fn len_fn_different_return_type() {
+        cov_mark::check!(len_fn_different_return_type);
+        check_assist_not_applicable(
+            generate_is_empty_from_len,
+            r#"
+struct MyStruct { data: Vec<String> }
+
+impl MyStruct {
+    p$0ub fn len(&self) -> u32 {
+        self.data.len()
+    }
+}
+"#,
+        );
+    }
+
     #[test]
     fn generate_is_empty() {
         check_assist(
             generate_is_empty_from_len,
             r#"
+struct MyStruct { data: Vec<String> }
+
 impl MyStruct {
     p$0ub fn len(&self) -> usize {
         self.data.len()
@@ -169,6 +188,8 @@ impl MyStruct {
 }
 "#,
             r#"
+struct MyStruct { data: Vec<String> }
+
 impl MyStruct {
     pub fn len(&self) -> usize {
         self.data.len()
@@ -187,6 +208,8 @@ fn multiple_functions_in_impl() {
         check_assist(
             generate_is_empty_from_len,
             r#"
+struct MyStruct { data: Vec<String> }
+
 impl MyStruct {
     pub fn new() -> Self {
         Self { data: 0 }
@@ -197,11 +220,13 @@ pub fn new() -> Self {
     }
 
     pub fn work(&self) -> Option<usize> {
-        // do some work
+
     }
 }
 "#,
             r#"
+struct MyStruct { data: Vec<String> }
+
 impl MyStruct {
     pub fn new() -> Self {
         Self { data: 0 }
@@ -216,7 +241,29 @@ pub fn is_empty(&self) -> bool {
     }
 
     pub fn work(&self) -> Option<usize> {
-        // do some work
+
+    }
+}
+"#,
+        );
+    }
+
+    #[test]
+    fn multiple_impls() {
+        check_assist_not_applicable(
+            generate_is_empty_from_len,
+            r#"
+struct MyStruct { data: Vec<String> }
+
+impl MyStruct {
+    p$0ub fn len(&self) -> usize {
+        self.data.len()
+    }
+}
+
+impl MyStruct {
+    pub fn is_empty(&self) -> bool {
+        self.len() == 0
     }
 }
 "#,