-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c9df89
commit 6adc038
Showing
4 changed files
with
263 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,197 @@ | ||
//! Tests the interaction of the `analyze graph` command. | ||
#![cfg(not(target_family = "wasm"))] | ||
|
||
use assert_fs::prelude::*; | ||
use std::process::Command; | ||
use std::str; | ||
|
||
use anyhow::Result; | ||
use assert_fs::fixture::ChildPath; | ||
use insta_cmd::{assert_cmd_snapshot, get_cargo_bin}; | ||
use tempfile::TempDir; | ||
|
||
fn command() -> Command { | ||
let mut command = Command::new(get_cargo_bin("ruff")); | ||
command.arg("analyze"); | ||
command.arg("graph"); | ||
command.arg("--preview"); | ||
command | ||
} | ||
|
||
#[test] | ||
fn dependencies() -> Result<()> { | ||
let tempdir = TempDir::new()?; | ||
let root = ChildPath::new(tempdir.path()); | ||
|
||
root.child("ruff").child("__init__.py").write_str("")?; | ||
root.child("ruff") | ||
.child("a.py") | ||
.write_str(indoc::indoc! {r#" | ||
import ruff.b | ||
"#})?; | ||
root.child("ruff") | ||
.child("b.py") | ||
.write_str(indoc::indoc! {r#" | ||
from ruff import c | ||
"#})?; | ||
root.child("ruff") | ||
.child("c.py") | ||
.write_str(indoc::indoc! {r#" | ||
from . import d | ||
"#})?; | ||
root.child("ruff") | ||
.child("d.py") | ||
.write_str(indoc::indoc! {r#" | ||
from .e import f | ||
"#})?; | ||
root.child("ruff") | ||
.child("e.py") | ||
.write_str(indoc::indoc! {r#" | ||
def f(): pass | ||
"#})?; | ||
|
||
assert_cmd_snapshot!(command().current_dir(&root), @r###" | ||
success: true | ||
exit_code: 0 | ||
----- stdout ----- | ||
{ | ||
"ruff/__init__.py": [], | ||
"ruff/a.py": [ | ||
"ruff/b.py" | ||
], | ||
"ruff/b.py": [ | ||
"ruff/c.py" | ||
], | ||
"ruff/c.py": [ | ||
"ruff/d.py" | ||
], | ||
"ruff/d.py": [ | ||
"ruff/e.py" | ||
], | ||
"ruff/e.py": [] | ||
} | ||
----- stderr ----- | ||
"###); | ||
|
||
Ok(()) | ||
} | ||
|
||
#[test] | ||
fn dependents() -> Result<()> { | ||
let tempdir = TempDir::new()?; | ||
|
||
let root = ChildPath::new(tempdir.path()); | ||
|
||
root.child("ruff").child("__init__.py").write_str("")?; | ||
root.child("ruff") | ||
.child("a.py") | ||
.write_str(indoc::indoc! {r#" | ||
import ruff.b | ||
"#})?; | ||
root.child("ruff") | ||
.child("b.py") | ||
.write_str(indoc::indoc! {r#" | ||
from ruff import c | ||
"#})?; | ||
root.child("ruff") | ||
.child("c.py") | ||
.write_str(indoc::indoc! {r#" | ||
from . import d | ||
"#})?; | ||
root.child("ruff") | ||
.child("d.py") | ||
.write_str(indoc::indoc! {r#" | ||
from .e import f | ||
"#})?; | ||
root.child("ruff") | ||
.child("e.py") | ||
.write_str(indoc::indoc! {r#" | ||
def f(): pass | ||
"#})?; | ||
|
||
assert_cmd_snapshot!(command().arg("--direction").arg("dependents").current_dir(&root), @r###" | ||
success: true | ||
exit_code: 0 | ||
----- stdout ----- | ||
{ | ||
"ruff/__init__.py": [], | ||
"ruff/a.py": [], | ||
"ruff/b.py": [ | ||
"ruff/a.py" | ||
], | ||
"ruff/c.py": [ | ||
"ruff/b.py" | ||
], | ||
"ruff/d.py": [ | ||
"ruff/c.py" | ||
], | ||
"ruff/e.py": [ | ||
"ruff/d.py" | ||
] | ||
} | ||
----- stderr ----- | ||
"###); | ||
|
||
Ok(()) | ||
} | ||
|
||
#[test] | ||
fn string_detection() -> Result<()> { | ||
let tempdir = TempDir::new()?; | ||
|
||
let root = ChildPath::new(tempdir.path()); | ||
|
||
root.child("ruff").child("__init__.py").write_str("")?; | ||
root.child("ruff") | ||
.child("a.py") | ||
.write_str(indoc::indoc! {r#" | ||
import ruff.b | ||
"#})?; | ||
root.child("ruff") | ||
.child("b.py") | ||
.write_str(indoc::indoc! {r#" | ||
import importlib | ||
importlib.import_module("ruff.c") | ||
"#})?; | ||
root.child("ruff").child("c.py").write_str("")?; | ||
|
||
assert_cmd_snapshot!(command().current_dir(&root), @r###" | ||
success: true | ||
exit_code: 0 | ||
----- stdout ----- | ||
{ | ||
"ruff/__init__.py": [], | ||
"ruff/a.py": [ | ||
"ruff/b.py" | ||
], | ||
"ruff/b.py": [], | ||
"ruff/c.py": [] | ||
} | ||
----- stderr ----- | ||
"###); | ||
|
||
assert_cmd_snapshot!(command().arg("--detect-string-imports").current_dir(&root), @r###" | ||
success: true | ||
exit_code: 0 | ||
----- stdout ----- | ||
{ | ||
"ruff/__init__.py": [], | ||
"ruff/a.py": [ | ||
"ruff/b.py" | ||
], | ||
"ruff/b.py": [ | ||
"ruff/c.py" | ||
], | ||
"ruff/c.py": [] | ||
} | ||
----- stderr ----- | ||
"###); | ||
|
||
Ok(()) | ||
} |