Skip to content

Commit 5d77213

Browse files
Chore: Add witness hint for enum_tuple_variant_field_marked_deprecated lint (#1216)
Adds a witness hint for the `enum_tuple_variant_field_marked_deprecated` lint. ## Example `enum_tuple_variant_field_marked_deprecated` outputs the following witness hint for one of the `./test_crates/enum_tuple_variant_field_marked_deprecated/` tests. ```rust match value { enum_tuple_variant_field_marked_deprecated::TupleVariantEnum::TupleVariant (_, to_be_deprecated, _) => (), _ => (), } ``` This compiles on both versions, but demonstrates the issue with the deprecated field, and would emit an error if compiled. ## Commit Notes + Added witness hint for `enum_tuple_variant_field_marked_deprecated` + Added new parts to query for `enum_tuple_variant_field_marked_deprecated` to fetch relevant data for the witness ## Comments Once again, similar to #1214 I wasn't 100% sure on what to call the bound variable (`to_be_deprecated`) when destructuring the tuple, but I think this mostly works. Let me know if you think the name should get changed!
1 parent 887bb81 commit 5d77213

3 files changed

+63
-0
lines changed

src/lints/enum_tuple_variant_field_marked_deprecated.ron

+8
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ SemverQuery(
3131
public_api_eligible @filter(op: "=", value: ["$true"])
3232
deprecated @filter(op: "!=", value: ["$true"])
3333
}
34+
35+
field @fold @transform(op: "count") @output(name: "field_count")
3436
}
3537
}
3638
}
@@ -79,4 +81,10 @@ SemverQuery(
7981
},
8082
error_message: "A field in an enum's tuple variant is now #[deprecated]. Downstream crates will get a compiler warning when accessing this field.",
8183
per_result_error_template: Some("field {{enum_name}}::{{variant_name}}.{{field_name}} in {{span_filename}}:{{span_begin_line}}"),
84+
witness: (
85+
hint_template: r#"match value {
86+
{{ join "::" path }}::{{ variant_name }} ({{#repeat field_count }}{{#if (eq (to_string @index) ../field_name)}}witness{{else}}_{{/if}}{{#unless @last }}, {{/unless}}{{/repeat}}) => (),
87+
_ => (),
88+
}"#,
89+
),
8290
)

test_outputs/query_execution/enum_tuple_variant_field_marked_deprecated.snap

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ expression: "&query_execution_results"
66
"./test_crates/enum_struct_variant_field_marked_deprecated/": [
77
{
88
"enum_name": String("NormalEnum"),
9+
"field_count": Uint64(2),
910
"field_name": String("0"),
1011
"path": List([
1112
String("enum_struct_variant_field_marked_deprecated"),
@@ -20,6 +21,7 @@ expression: "&query_execution_results"
2021
"./test_crates/enum_tuple_variant_field_marked_deprecated/": [
2122
{
2223
"enum_name": String("TupleVariantEnum"),
24+
"field_count": Uint64(3),
2325
"field_name": String("0"),
2426
"path": List([
2527
String("enum_tuple_variant_field_marked_deprecated"),
@@ -32,6 +34,7 @@ expression: "&query_execution_results"
3234
},
3335
{
3436
"enum_name": String("TupleVariantEnum"),
37+
"field_count": Uint64(3),
3538
"field_name": String("1"),
3639
"path": List([
3740
String("enum_tuple_variant_field_marked_deprecated"),
@@ -44,6 +47,7 @@ expression: "&query_execution_results"
4447
},
4548
{
4649
"enum_name": String("TupleVariantEnum"),
50+
"field_count": Uint64(3),
4751
"field_name": String("1"),
4852
"path": List([
4953
String("enum_tuple_variant_field_marked_deprecated"),
@@ -56,6 +60,7 @@ expression: "&query_execution_results"
5660
},
5761
{
5862
"enum_name": String("EnumWithHiddenVariant"),
63+
"field_count": Uint64(2),
5964
"field_name": String("0"),
6065
"path": List([
6166
String("enum_tuple_variant_field_marked_deprecated"),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
source: src/query.rs
3+
description: "Lint `enum_tuple_variant_field_marked_deprecated` did not have the expected witness output.\nSee https://github.com/obi1kenobi/cargo-semver-checks/blob/main/CONTRIBUTING.md#testing-witnesses\nfor more information."
4+
expression: "&actual_witnesses"
5+
snapshot_kind: text
6+
---
7+
[["./test_crates/enum_struct_variant_field_marked_deprecated/"]]
8+
filename = 'src/lib.rs'
9+
begin_line = 19
10+
hint = '''
11+
match value {
12+
enum_struct_variant_field_marked_deprecated::NormalEnum::TupleVariant (witness, _) => (),
13+
_ => (),
14+
}'''
15+
16+
[["./test_crates/enum_tuple_variant_field_marked_deprecated/"]]
17+
filename = 'src/lib.rs'
18+
begin_line = 7
19+
hint = '''
20+
match value {
21+
enum_tuple_variant_field_marked_deprecated::TupleVariantEnum::TupleVariant (witness, _, _) => (),
22+
_ => (),
23+
}'''
24+
25+
[["./test_crates/enum_tuple_variant_field_marked_deprecated/"]]
26+
filename = 'src/lib.rs'
27+
begin_line = 8
28+
hint = '''
29+
match value {
30+
enum_tuple_variant_field_marked_deprecated::TupleVariantEnum::TupleVariant (_, witness, _) => (),
31+
_ => (),
32+
}'''
33+
34+
[["./test_crates/enum_tuple_variant_field_marked_deprecated/"]]
35+
filename = 'src/lib.rs'
36+
begin_line = 13
37+
hint = '''
38+
match value {
39+
enum_tuple_variant_field_marked_deprecated::TupleVariantEnum::AnotherTuple (_, witness, _) => (),
40+
_ => (),
41+
}'''
42+
43+
[["./test_crates/enum_tuple_variant_field_marked_deprecated/"]]
44+
filename = 'src/lib.rs'
45+
begin_line = 57
46+
hint = '''
47+
match value {
48+
enum_tuple_variant_field_marked_deprecated::EnumWithHiddenVariant::NormalTuple (witness, _) => (),
49+
_ => (),
50+
}'''

0 commit comments

Comments
 (0)