-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement struct_now_doc_hidden lint #587
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4810db7
implement struct_now_doc_hidden lint
u9g 56a3791
Update src/lints/struct_now_doc_hidden.ron
u9g a8d279c
no need to filter on struct type
u9g 35897c8
Update src/lints/struct_now_doc_hidden.ron
u9g b3c3e45
Update src/lints/struct_now_doc_hidden.ron
u9g ded09b0
fix no end new line
u9g 17ca637
remove struct_type from expected output
u9g 88ced54
add struct-in-mod tests
u9g 38115fd
add even more nested mods
u9g 21f829d
add mispelled doc hidden and hidden field to tests
u9g bc0de14
add better explanation comment
u9g f605781
add test for adding doc hidden to a now-private struct
u9g ed0424e
add comment to test
u9g a333bae
add test for possible doc hidden mistake
u9g 22798c0
replace invalid test with valid test of alias of hidden
u9g File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
SemverQuery( | ||
id: "struct_now_doc_hidden", | ||
human_readable_name: "pub struct is now #[doc(hidden)]", | ||
description: "A pub struct is now marked #[doc(hidden)] and is thus no longer part of the public API.", | ||
required_update: Major, | ||
reference_link: Some("https://doc.rust-lang.org/rustdoc/write-documentation/the-doc-attribute.html#hidden"), | ||
query: r#" | ||
{ | ||
CrateDiff { | ||
baseline { | ||
item { | ||
... on Struct { | ||
visibility_limit @filter(op: "=", value: ["$public"]) | ||
|
||
importable_path { | ||
path @output @tag | ||
public_api @filter(op: "=", value: ["$true"]) | ||
} | ||
} | ||
} | ||
} | ||
current { | ||
item { | ||
... on Struct { | ||
visibility_limit @filter(op: "=", value: ["$public"]) | ||
struct_name: name @output | ||
|
||
importable_path { | ||
path @filter(op: "=", value: ["%path"]) | ||
public_api @filter(op: "!=", value: ["$true"]) | ||
} | ||
|
||
span_: span @optional { | ||
filename @output | ||
begin_line @output | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}"#, | ||
arguments: { | ||
"public": "public", | ||
"true": true, | ||
}, | ||
error_message: "A pub struct is now #[doc(hidden)], removing it from the crate's public API.", | ||
per_result_error_template: Some("struct {{struct_name}} in file {{span_filename}}:{{span_begin_line}}"), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[package] | ||
publish = false | ||
name = "struct_now_doc_hidden" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
mod MyNonPublicMod { | ||
// despite adding #[doc(hidden)], this struct is in a | ||
// private mod, so it isn't part of the crate's public | ||
// api | ||
#[doc(hidden)] | ||
pub struct MyStruct; | ||
} | ||
|
||
pub mod MyPublicMod { | ||
// added #[doc(hidden)], however this struct is in a | ||
// public mod, so it is part of the crate's public api | ||
#[doc(hidden)] | ||
pub struct MyStruct; | ||
} | ||
|
||
mod MyNestedNonPublicMod { | ||
pub mod PublicInnerStruct { | ||
// despite adding #[doc(hidden)], this struct is in a | ||
// private outer mod, so it isn't part of the crate's public | ||
// api | ||
#[doc(hidden)] | ||
pub struct MyStruct; | ||
} | ||
} | ||
|
||
pub mod MyNestedPublicMod { | ||
pub mod PublicInnerStruct { | ||
// added #[doc(hidden)], however this struct is in a | ||
// public mod, so it is part of the crate's public api | ||
#[doc(hidden)] | ||
pub struct MyStruct; | ||
} | ||
} | ||
|
||
#[doc(alias = "hidden")] // shouldn't flag, this is just aliased as hidden, | ||
// but it should be #[doc(hidden)] | ||
pub struct AliasedAsDocHidden; | ||
|
||
#[doc(hidden)] // should flag, this is the simplest case of adding #[doc(hidden)] to a pub struct. | ||
pub struct Example; | ||
|
||
pub struct PublicStructHiddenField { | ||
// shouldn't flag `struct_now_doc_hidden` rule | ||
// as this is a field that's hidden, | ||
// not the entire struct | ||
#[doc(hidden)] | ||
pub my_field: i8, | ||
} | ||
|
||
#[doc(hidden)] | ||
struct PublicStructThatGoesPrivate; | ||
|
||
#[doc = "hidden"] // shouldn't flag, this is just documented with the string "hidden", | ||
// it's not actually #[doc(hidden)] | ||
pub struct PublicStructDocumentedWithStringHidden; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[package] | ||
publish = false | ||
name = "struct_now_doc_hidden" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
mod MyNonPublicMod { | ||
pub struct MyStruct; | ||
} | ||
|
||
pub mod MyPublicMod { | ||
pub struct MyStruct; | ||
} | ||
|
||
pub struct AliasedAsDocHidden; | ||
|
||
pub struct Example; | ||
|
||
pub struct PublicStructHiddenField { | ||
pub my_field: i8, | ||
} | ||
|
||
mod MyNestedNonPublicMod { | ||
pub mod PublicInnerStruct { | ||
pub struct MyStruct; | ||
} | ||
} | ||
|
||
pub mod MyNestedPublicMod { | ||
pub mod PublicInnerStruct { | ||
pub struct MyStruct; | ||
} | ||
} | ||
|
||
pub struct PublicStructThatGoesPrivate; | ||
|
||
pub struct PublicStructDocumentedWithStringHidden; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"./test_crates/struct_now_doc_hidden/": [ | ||
{ | ||
"path": List([ | ||
String("struct_now_doc_hidden"), | ||
String("MyPublicMod"), | ||
String("MyStruct"), | ||
]), | ||
"span_begin_line": Uint64(13), | ||
"span_filename": String("src/lib.rs"), | ||
"struct_name": String("MyStruct"), | ||
}, | ||
{ | ||
"path": List([ | ||
String("struct_now_doc_hidden"), | ||
String("MyNestedPublicMod"), | ||
String("PublicInnerStruct"), | ||
String("MyStruct"), | ||
]), | ||
"span_begin_line": Uint64(31), | ||
"span_filename": String("src/lib.rs"), | ||
"struct_name": String("MyStruct"), | ||
}, | ||
{ | ||
"path": List([ | ||
String("struct_now_doc_hidden"), | ||
String("Example"), | ||
]), | ||
"span_begin_line": Uint64(40), | ||
"span_filename": String("src/lib.rs"), | ||
"struct_name": String("Example"), | ||
}, | ||
], | ||
"./test_crates/type_hidden_from_public_api/": [ | ||
{ | ||
"path": List([ | ||
String("type_hidden_from_public_api"), | ||
String("ExamplePlainStruct"), | ||
]), | ||
"span_begin_line": Uint64(2), | ||
"span_filename": String("src/lib.rs"), | ||
"struct_name": String("ExamplePlainStruct"), | ||
}, | ||
{ | ||
"path": List([ | ||
String("type_hidden_from_public_api"), | ||
String("ExampleTupleStruct"), | ||
]), | ||
"span_begin_line": Uint64(7), | ||
"span_filename": String("src/lib.rs"), | ||
"struct_name": String("ExampleTupleStruct"), | ||
}, | ||
{ | ||
"path": List([ | ||
String("type_hidden_from_public_api"), | ||
String("ExampleUnitStruct"), | ||
]), | ||
"span_begin_line": Uint64(10), | ||
"span_filename": String("src/lib.rs"), | ||
"struct_name": String("ExampleUnitStruct"), | ||
}, | ||
], | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These test cases are fine, but please do try to think of some more edge cases to test for. Simple lints like this are great for practicing those skills!
One trick to help you think of test cases that is called "mutation testing." Take the correct lint you've implemented, and intentionally introduce a bug into it: for example, delete a filter clause, change a filter operator, or add an unnecessary filter or edge traversal somewhere. Then run the tests and see if they catch the bug.
You know you have good test coverage when no matter what bug you introduce, the tests always catch it.
After some practice, you'll be able to run this process "in your head" without actually modifying the lint, and you'll be able to directly write sufficient test cases to catch most reasonable bugs. At the moment, I think there are several plausible ways to accidentally mis-implement this lint that I don't think our test suite as a whole will catch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really good point, I went ahead and tried to get rid of some lines in the lint which actually ended up being optional entirely :)
In terms of tests, I added a bunch more tests that should make it a lot harder to mis-implement this rule.