Skip to content

Commit 6294286

Browse files
Merge #6610
6610: add 'Re-enable this test' assist r=SomeoneToIgnore a=jakobhellermann The `Ignore this test` assist previously allowed ignoring multiple times, each time adding a `#[ignore]` attribute. This PR instead shows an assist to undo the ignoring. Co-authored-by: Jakob Hellermann <[email protected]>
2 parents 2ff78cd + a172c23 commit 6294286

File tree

1 file changed

+76
-7
lines changed

1 file changed

+76
-7
lines changed

crates/assists/src/handlers/ignore_test.rs

Lines changed: 76 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
use syntax::{ast, AstNode};
1+
use syntax::{
2+
ast::{self, AttrsOwner},
3+
AstNode, AstToken,
4+
};
25

36
use crate::{utils::test_related_attribute, AssistContext, AssistId, AssistKind, Assists};
47

@@ -25,10 +28,76 @@ pub(crate) fn ignore_test(acc: &mut Assists, ctx: &AssistContext) -> Option<()>
2528
let func = attr.syntax().parent().and_then(ast::Fn::cast)?;
2629
let attr = test_related_attribute(&func)?;
2730

28-
acc.add(
29-
AssistId("ignore_test", AssistKind::None),
30-
"Ignore this test",
31-
attr.syntax().text_range(),
32-
|builder| builder.insert(attr.syntax().text_range().end(), &format!("\n#[ignore]")),
33-
)
31+
match has_ignore_attribute(&func) {
32+
None => acc.add(
33+
AssistId("ignore_test", AssistKind::None),
34+
"Ignore this test",
35+
attr.syntax().text_range(),
36+
|builder| builder.insert(attr.syntax().text_range().end(), &format!("\n#[ignore]")),
37+
),
38+
Some(ignore_attr) => acc.add(
39+
AssistId("unignore_test", AssistKind::None),
40+
"Re-enable this test",
41+
ignore_attr.syntax().text_range(),
42+
|builder| {
43+
builder.delete(ignore_attr.syntax().text_range());
44+
let whitespace = ignore_attr
45+
.syntax()
46+
.next_sibling_or_token()
47+
.and_then(|x| x.into_token())
48+
.and_then(ast::Whitespace::cast);
49+
if let Some(whitespace) = whitespace {
50+
builder.delete(whitespace.syntax().text_range());
51+
}
52+
},
53+
),
54+
}
55+
}
56+
57+
fn has_ignore_attribute(fn_def: &ast::Fn) -> Option<ast::Attr> {
58+
fn_def.attrs().find_map(|attr| {
59+
if attr.path()?.syntax().text().to_string() == "ignore" {
60+
Some(attr)
61+
} else {
62+
None
63+
}
64+
})
65+
}
66+
67+
#[cfg(test)]
68+
mod tests {
69+
use super::ignore_test;
70+
use crate::tests::check_assist;
71+
72+
#[test]
73+
fn test_base_case() {
74+
check_assist(
75+
ignore_test,
76+
r#"
77+
#[test<|>]
78+
fn test() {}
79+
"#,
80+
r#"
81+
#[test]
82+
#[ignore]
83+
fn test() {}
84+
"#,
85+
)
86+
}
87+
88+
#[test]
89+
fn test_unignore() {
90+
check_assist(
91+
ignore_test,
92+
r#"
93+
#[test<|>]
94+
#[ignore]
95+
fn test() {}
96+
"#,
97+
r#"
98+
#[test]
99+
fn test() {}
100+
"#,
101+
)
102+
}
34103
}

0 commit comments

Comments
 (0)