summaryrefslogtreecommitdiff
path: root/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_php.test.fish
diff options
context:
space:
mode:
Diffstat (limited to '.config/fisher/github.com/matchai/spacefish/tests/__sf_section_php.test.fish')
-rw-r--r--.config/fisher/github.com/matchai/spacefish/tests/__sf_section_php.test.fish110
1 files changed, 110 insertions, 0 deletions
diff --git a/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_php.test.fish b/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_php.test.fish
new file mode 100644
index 00000000..f0333bd7
--- /dev/null
+++ b/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_php.test.fish
@@ -0,0 +1,110 @@
+source $DIRNAME/spacefish_test_setup.fish
+
+function setup
+ spacefish_test_setup
+ mock php -v 0 "echo \"PHP 7.1.16 (cli) (built: Mar 31 2018 02:59:59) ( NTS )
+ Copyright (c) 1997-2018 The PHP Group
+ Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies\""
+ mkdir -p /tmp/tmp-spacefish
+ cd /tmp/tmp-spacefish
+end
+
+function teardown
+ rm -rf /tmp/tmp-spacefish
+end
+
+test "Prints section when composer.json is present"
+ (
+ touch /tmp/tmp-spacefish/composer.json
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold blue
+ echo -n "馃悩 v7.1.16"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_php)
+end
+
+test "Prints section when a *.php file is present"
+ (
+ touch /tmp/tmp-spacefish/testfile.php
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold blue
+ echo -n "馃悩 v7.1.16"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_php)
+end
+
+test "Doesn't print the section when composer.json and *.php aren't present"
+ () = (__sf_section_php)
+end
+
+test "Changing SPACEFISH_PHP_SYMBOL changes the displayed character"
+ (
+ touch /tmp/tmp-spacefish/composer.json
+ set SPACEFISH_PHP_SYMBOL "路 "
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold blue
+ echo -n "路 v7.1.16"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_php)
+end
+
+test "Changing SPACEFISH_PHP_PREFIX changes the character prefix"
+ (
+ touch /tmp/tmp-spacefish/composer.json
+ set sf_exit_code 0
+ set SPACEFISH_PHP_PREFIX 路
+
+ set_color --bold
+ echo -n "路"
+ set_color normal
+ set_color --bold blue
+ echo -n "馃悩 v7.1.16"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_php)
+end
+
+test "Changing SPACEFISH_PHP_SUFFIX changes the character suffix"
+ (
+ touch /tmp/tmp-spacefish/composer.json
+ set sf_exit_code 0
+ set SPACEFISH_PHP_SUFFIX 路
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold blue
+ echo -n "馃悩 v7.1.16"
+ set_color normal
+ set_color --bold
+ echo -n "路"
+ set_color normal
+ ) = (__sf_section_php)
+end
+
+test "doesn't display the section when SPACEFISH_PHP_SHOW is set to \"false\""
+ (
+ touch /tmp/tmp-spacefish/composer.json
+ set SPACEFISH_PHP_SHOW false
+ ) = (__sf_section_php)
+end