summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/php.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testsuite/php.rs')
-rw-r--r--tests/testsuite/php.rs56
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/testsuite/php.rs b/tests/testsuite/php.rs
new file mode 100644
index 000000000..49759abd0
--- /dev/null
+++ b/tests/testsuite/php.rs
@@ -0,0 +1,56 @@
+use std::fs::File;
+use std::io;
+
+use ansi_term::Color;
+
+use crate::common;
+use crate::common::TestCommand;
+
+#[test]
+fn folder_without_php_files() -> io::Result<()> {
+ let dir = common::new_tempdir()?;
+
+ let output = common::render_module("php")
+ .arg("--path")
+ .arg(dir.path())
+ .output()?;
+ let actual = String::from_utf8(output.stdout).unwrap();
+
+ let expected = "";
+ assert_eq!(expected, actual);
+ Ok(())
+}
+
+#[test]
+#[ignore]
+fn folder_with_composer_file() -> io::Result<()> {
+ let dir = common::new_tempdir()?;
+ File::create(dir.path().join("composer.json"))?;
+
+ let output = common::render_module("php")
+ .arg("--path")
+ .arg(dir.path())
+ .output()?;
+ let actual = String::from_utf8(output.stdout).unwrap();
+
+ let expected = format!("via {} ", Color::Red.bold().paint("🐘 v7.3.8"));
+ assert_eq!(expected, actual);
+ Ok(())
+}
+
+#[test]
+#[ignore]
+fn folder_with_php_file() -> io::Result<()> {
+ let dir = common::new_tempdir()?;
+ File::create(dir.path().join("any.php"))?;
+
+ let output = common::render_module("php")
+ .arg("--path")
+ .arg(dir.path())
+ .output()?;
+ let actual = String::from_utf8(output.stdout).unwrap();
+
+ let expected = format!("via {} ", Color::Red.bold().paint("🐘 v7.3.8"));
+ assert_eq!(expected, actual);
+ Ok(())
+}