Skip to content

Commit

Permalink
internal: Sort computed runnables
Browse files Browse the repository at this point in the history
  • Loading branch information
Veykril committed May 14, 2024
1 parent 7afd8d8 commit 465ebbc
Showing 1 changed file with 34 additions and 20 deletions.
54 changes: 34 additions & 20 deletions crates/ide/src/runnables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use ide_db::{
FxHashMap, FxHashSet, RootDatabase, SymbolKind,
};
use itertools::Itertools;
use span::TextSize;
use stdx::{always, format_to};
use syntax::{
ast::{self, AstNode},
Expand Down Expand Up @@ -48,23 +49,34 @@ impl fmt::Display for TestId {

#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum RunnableKind {
Test { test_id: TestId, attr: TestAttr },
TestMod { path: String },
Test { test_id: TestId, attr: TestAttr },
Bench { test_id: TestId },
DocTest { test_id: TestId },
Bin,
}

#[cfg(test)]
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
enum RunnableTestKind {
#[derive(Debug, Clone, Hash, PartialEq, Eq, PartialOrd, Ord)]
enum RunnableDiscKind {
Test,
TestMod,
DocTest,
Bench,
Bin,
}

impl RunnableKind {
fn disc(&self) -> RunnableDiscKind {
match self {
RunnableKind::TestMod { .. } => RunnableDiscKind::TestMod,
RunnableKind::Test { .. } => RunnableDiscKind::Test,
RunnableKind::DocTest { .. } => RunnableDiscKind::DocTest,
RunnableKind::Bench { .. } => RunnableDiscKind::Bench,
RunnableKind::Bin => RunnableDiscKind::Bin,
}
}
}

impl Runnable {
// test package::module::testname
pub fn label(&self, target: Option<String>) -> String {
Expand Down Expand Up @@ -97,17 +109,6 @@ impl Runnable {
s.push_str(suffix);
s
}

#[cfg(test)]
fn test_kind(&self) -> RunnableTestKind {
match &self.kind {
RunnableKind::TestMod { .. } => RunnableTestKind::TestMod,
RunnableKind::Test { .. } => RunnableTestKind::Test,
RunnableKind::DocTest { .. } => RunnableTestKind::DocTest,
RunnableKind::Bench { .. } => RunnableTestKind::Bench,
RunnableKind::Bin => RunnableTestKind::Bin,
}
}
}

// Feature: Run
Expand Down Expand Up @@ -193,6 +194,20 @@ pub(crate) fn runnables(db: &RootDatabase, file_id: FileId) -> Vec<Runnable> {
r
})
}));
res.sort_by(|Runnable { nav, kind, .. }, Runnable { nav: nav_b, kind: kind_b, .. }| {
// full_range.start < focus_range.start < name, should give us a decent unique ordering
nav.full_range
.start()
.cmp(&nav_b.full_range.start())
.then_with(|| {
let t_0 = || TextSize::from(0);
nav.focus_range
.map_or_else(t_0, |it| it.start())
.cmp(&nav_b.focus_range.map_or_else(t_0, |it| it.start()))
})
.then_with(|| kind.disc().cmp(&kind_b.disc()))
.then_with(|| nav.name.cmp(&nav_b.name))
});
res
}

Expand Down Expand Up @@ -571,13 +586,12 @@ mod tests {

fn check(ra_fixture: &str, expect: Expect) {
let (analysis, position) = fixture::position(ra_fixture);
let mut runnables = analysis.runnables(position.file_id).unwrap();
runnables.sort_by_key(|it| (it.nav.full_range.start(), it.nav.name.clone()));

let result = runnables
let result = analysis
.runnables(position.file_id)
.unwrap()
.into_iter()
.map(|runnable| {
let mut a = format!("({:?}, {:?}", runnable.test_kind(), runnable.nav);
let mut a = format!("({:?}, {:?}", runnable.kind.disc(), runnable.nav);
if runnable.use_name_in_title {
a.push_str(", true");
}
Expand Down

0 comments on commit 465ebbc

Please sign in to comment.