2015-12-23 16:48:30 +00:00
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
2020-01-04 10:00:00 +00:00
|
|
|
extern crate rustc_span;
|
2017-01-30 11:30:16 +00:00
|
|
|
use std::collections::Bound;
|
2015-12-23 16:48:30 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_overlapping() {
|
2018-11-27 20:11:50 +00:00
|
|
|
use clippy_lints::matches::overlapping;
|
2020-01-04 10:00:00 +00:00
|
|
|
use rustc_span::source_map::DUMMY_SP;
|
2015-12-23 16:48:30 +00:00
|
|
|
|
2018-03-15 15:08:49 +00:00
|
|
|
let sp = |s, e| clippy_lints::matches::SpannedRange {
|
|
|
|
span: DUMMY_SP,
|
|
|
|
node: (s, e),
|
2016-06-05 23:42:39 +00:00
|
|
|
};
|
2015-12-23 16:48:30 +00:00
|
|
|
|
|
|
|
assert_eq!(None, overlapping::<u8>(&[]));
|
2017-01-30 11:30:16 +00:00
|
|
|
assert_eq!(None, overlapping(&[sp(1, Bound::Included(4))]));
|
2018-03-15 15:08:49 +00:00
|
|
|
assert_eq!(
|
|
|
|
None,
|
|
|
|
overlapping(&[sp(1, Bound::Included(4)), sp(5, Bound::Included(6))])
|
|
|
|
);
|
2017-08-09 07:30:56 +00:00
|
|
|
assert_eq!(
|
|
|
|
None,
|
2017-09-05 09:33:04 +00:00
|
|
|
overlapping(&[
|
|
|
|
sp(1, Bound::Included(4)),
|
|
|
|
sp(5, Bound::Included(6)),
|
|
|
|
sp(10, Bound::Included(11))
|
|
|
|
],)
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
Some((&sp(1, Bound::Included(4)), &sp(3, Bound::Included(6)))),
|
|
|
|
overlapping(&[sp(1, Bound::Included(4)), sp(3, Bound::Included(6))])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
Some((&sp(5, Bound::Included(6)), &sp(6, Bound::Included(11)))),
|
2017-09-05 09:33:04 +00:00
|
|
|
overlapping(&[
|
|
|
|
sp(1, Bound::Included(4)),
|
|
|
|
sp(5, Bound::Included(6)),
|
|
|
|
sp(6, Bound::Included(11))
|
|
|
|
],)
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2015-12-23 16:48:30 +00:00
|
|
|
}
|