From efb336a23b65a9a2d56889396b13c1757bdaf354 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sun, 29 Dec 2019 14:58:33 -0300 Subject: Initial commit --- .../tests/__sf_section_kubecontext.test.fish | 119 +++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 .config/fisher/github.com/matchai/spacefish/tests/__sf_section_kubecontext.test.fish (limited to '.config/fisher/github.com/matchai/spacefish/tests/__sf_section_kubecontext.test.fish') diff --git a/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_kubecontext.test.fish b/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_kubecontext.test.fish new file mode 100644 index 00000000..3b0f3400 --- /dev/null +++ b/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_kubecontext.test.fish @@ -0,0 +1,119 @@ +source $DIRNAME/spacefish_test_setup.fish + +function setup + spacefish_test_setup + mock kubectl config 0 "echo \"testkube\"" +end + +test "Prints section" + ( + set_color --bold + echo -n "at " + set_color normal + set_color --bold cyan + echo -n "☸️ testkube (testkube)" + set_color normal + set_color --bold + echo -n " " + set_color normal + ) = (__sf_section_kubecontext) +end + +test "Kubecontext symbol does not appear outside of a Kubernetes project" + ( + mock kubectl config 1 + ) = (__sf_section_kubecontext) +end + +test "Changing SPACEFISH_KUBECONTEXT_SYMBOL changes the displayed character" + ( + set SPACEFISH_KUBECONTEXT_SYMBOL "· " + + set_color --bold + echo -n "at " + set_color normal + set_color --bold cyan + echo -n "· testkube (testkube)" + set_color normal + set_color --bold + echo -n " " + set_color normal + ) = (__sf_section_kubecontext) +end + +test "Changing SPACEFISH_KUBECONTEXT_PREFIX changes the character prefix" + ( + set sf_exit_code 0 + set SPACEFISH_KUBECONTEXT_PREFIX · + + set_color --bold + echo -n "·" + set_color normal + set_color --bold cyan + echo -n "☸️ testkube (testkube)" + set_color normal + set_color --bold + echo -n " " + set_color normal + ) = (__sf_section_kubecontext) +end + +test "Changing SPACEFISH_KUBECONTEXT_SUFFIX changes the character suffix" + ( + set sf_exit_code 0 + set SPACEFISH_KUBECONTEXT_SUFFIX · + + set_color --bold + echo -n "at " + set_color normal + set_color --bold cyan + echo -n "☸️ testkube (testkube)" + set_color normal + set_color --bold + echo -n "·" + set_color normal + ) = (__sf_section_kubecontext) +end + +test "Doesn't display the section when SPACEFISH_KUBECONTEXT_SHOW is set to \"false\"" + ( + set SPACEFISH_KUBECONTEXT_SHOW false + ) = (__sf_section_kubecontext) +end + +test "Doesn't display the namespace section when SPACEFISH_KUBECONTEXT_NAMESPACE_SHOW is set to \"false\"" + ( + set SPACEFISH_KUBECONTEXT_NAMESPACE_SHOW false + set sf_exit_code 0 + set SPACEFISH_KUBECONTEXT_SUFFIX · + + set_color --bold + echo -n "at " + set_color normal + set_color --bold cyan + echo -n "☸️ testkube" + set_color normal + set_color --bold + echo -n "·" + set_color normal + ) = (__sf_section_kubecontext) +end + +test "Doesn't display the namespace section when kube_context is set to \"default\"" + ( + mock kubectl config 0 "echo \"default\"" + + set sf_exit_code 0 + set SPACEFISH_KUBECONTEXT_SUFFIX · + + set_color --bold + echo -n "at " + set_color normal + set_color --bold cyan + echo -n "☸️ default" + set_color normal + set_color --bold + echo -n "·" + set_color normal + ) = (__sf_section_kubecontext) +end -- cgit v1.2.3