Lint inner fn marked as #[test]
This commit is contained in:
parent
d6e2239a07
commit
6a2003e4e3
4 changed files with 87 additions and 1 deletions
|
@ -1704,7 +1704,6 @@ impl LintPass for SoftLints {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
declare_lint! {
|
declare_lint! {
|
||||||
pub ELLIPSIS_INCLUSIVE_RANGE_PATTERNS,
|
pub ELLIPSIS_INCLUSIVE_RANGE_PATTERNS,
|
||||||
Allow,
|
Allow,
|
||||||
|
@ -1739,3 +1738,44 @@ impl EarlyLintPass for EllipsisInclusiveRangePatterns {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare_lint! {
|
||||||
|
UNTESTABLE_METHOD,
|
||||||
|
Warn,
|
||||||
|
"detects untestable method marked as #[test]"
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct UntestableMethod;
|
||||||
|
|
||||||
|
impl LintPass for UntestableMethod {
|
||||||
|
fn get_lints(&self) -> LintArray {
|
||||||
|
lint_array!(UNTESTABLE_METHOD)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UntestableMethod {
|
||||||
|
fn check_item(&mut self, cx: &LateContext, it: &hir::Item) {
|
||||||
|
match it.node {
|
||||||
|
hir::ItemFn(..) => {
|
||||||
|
for attr in &it.attrs {
|
||||||
|
if attr.name() == "test" {
|
||||||
|
let parent = cx.tcx.hir.get_parent(it.id);
|
||||||
|
match cx.tcx.hir.find(parent) {
|
||||||
|
Some(hir_map::NodeItem(hir::Item {node: hir::ItemMod(_), ..})) |
|
||||||
|
None => {}
|
||||||
|
_ => {
|
||||||
|
cx.struct_span_lint(
|
||||||
|
UNTESTABLE_METHOD,
|
||||||
|
attr.span,
|
||||||
|
"cannot test inner function",
|
||||||
|
).emit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => return,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -130,6 +130,7 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
|
||||||
MutableTransmutes: MutableTransmutes,
|
MutableTransmutes: MutableTransmutes,
|
||||||
UnionsWithDropFields: UnionsWithDropFields,
|
UnionsWithDropFields: UnionsWithDropFields,
|
||||||
UnreachablePub: UnreachablePub,
|
UnreachablePub: UnreachablePub,
|
||||||
|
UntestableMethod: UntestableMethod,
|
||||||
TypeAliasBounds: TypeAliasBounds,
|
TypeAliasBounds: TypeAliasBounds,
|
||||||
UnusedBrokenConst: UnusedBrokenConst,
|
UnusedBrokenConst: UnusedBrokenConst,
|
||||||
TrivialConstraints: TrivialConstraints,
|
TrivialConstraints: TrivialConstraints,
|
||||||
|
|
29
src/test/ui/lint/test-inner-fn.rs
Normal file
29
src/test/ui/lint/test-inner-fn.rs
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
|
||||||
|
// file at the top-level directory of this distribution and at
|
||||||
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
|
// compile-flags: --test -D untestable_method
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn foo() {
|
||||||
|
#[test] //~ ERROR cannot test inner function [untestable_method]
|
||||||
|
fn bar() {}
|
||||||
|
bar();
|
||||||
|
}
|
||||||
|
|
||||||
|
mod x {
|
||||||
|
#[test]
|
||||||
|
fn foo() {
|
||||||
|
#[test] //~ ERROR cannot test inner function [untestable_method]
|
||||||
|
fn bar() {}
|
||||||
|
bar();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {}
|
16
src/test/ui/lint/test-inner-fn.stderr
Normal file
16
src/test/ui/lint/test-inner-fn.stderr
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
error: cannot test inner function
|
||||||
|
--> $DIR/test-inner-fn.rs:15:5
|
||||||
|
|
|
||||||
|
LL | #[test] //~ ERROR cannot test inner function [untestable_method]
|
||||||
|
| ^^^^^^^
|
||||||
|
|
|
||||||
|
= note: requested on the command line with `-D untestable-method`
|
||||||
|
|
||||||
|
error: cannot test inner function
|
||||||
|
--> $DIR/test-inner-fn.rs:23:9
|
||||||
|
|
|
||||||
|
LL | #[test] //~ ERROR cannot test inner function [untestable_method]
|
||||||
|
| ^^^^^^^
|
||||||
|
|
||||||
|
error: aborting due to 2 previous errors
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue