2018-07-18 20:25:35 +00:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
#vim:ft=zsh ts=2 sw=2 sts=2 et fenc=utf-8
|
|
|
|
|
|
|
|
# Required for shunit2 to run correctly
|
|
|
|
setopt shwordsplit
|
|
|
|
SHUNIT_PARENT=$0
|
|
|
|
|
|
|
|
function setUp() {
|
|
|
|
export TERM="xterm-256color"
|
|
|
|
}
|
|
|
|
|
|
|
|
function testSshSegmentPrintsNothingIfNoSshConnection() {
|
2018-07-19 20:39:19 +00:00
|
|
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh custom_world)
|
2018-07-18 20:25:35 +00:00
|
|
|
local POWERLEVEL9K_CUSTOM_WORLD='echo "world"'
|
|
|
|
local POWERLEVEL9K_SSH_ICON="ssh-icon"
|
|
|
|
# Weak test: Emulate No SSH connection by unsetting
|
|
|
|
# $SSH_CLIENT and $SSH_TTY
|
|
|
|
unset SSH_CLIENT
|
|
|
|
unset SSH_TTY
|
|
|
|
|
2018-07-25 05:52:06 +00:00
|
|
|
# Load Powerlevel9k
|
|
|
|
source powerlevel9k.zsh-theme
|
|
|
|
|
2018-08-17 16:53:26 +00:00
|
|
|
assertEquals "%K{007} %F{000}world %k%F{007}%f " "$(build_left_prompt)"
|
2018-07-18 20:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testSshSegmentWorksIfOnlySshClientIsSet() {
|
2018-07-19 20:39:19 +00:00
|
|
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh)
|
2018-07-18 20:25:35 +00:00
|
|
|
local POWERLEVEL9K_SSH_ICON="ssh-icon"
|
|
|
|
# Weak test: Emulate No SSH connection by unsetting
|
|
|
|
# $SSH_CLIENT and $SSH_TTY
|
|
|
|
SSH_CLIENT='ssh-client'
|
|
|
|
unset SSH_TTY
|
|
|
|
|
2018-07-25 05:52:06 +00:00
|
|
|
# Load Powerlevel9k
|
|
|
|
source powerlevel9k.zsh-theme
|
|
|
|
|
2018-08-17 16:53:26 +00:00
|
|
|
assertEquals "%K{000} %F{003}ssh-icon%f %k%F{000}%f " "$(build_left_prompt)"
|
2018-07-18 20:25:35 +00:00
|
|
|
|
|
|
|
unset SSH_CLIENT
|
|
|
|
}
|
|
|
|
|
|
|
|
function testSshSegmentWorksIfOnlySshTtyIsSet() {
|
2018-07-19 20:39:19 +00:00
|
|
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh)
|
2018-07-18 20:25:35 +00:00
|
|
|
local POWERLEVEL9K_SSH_ICON="ssh-icon"
|
|
|
|
# Weak test: Emulate No SSH connection by unsetting
|
|
|
|
# $SSH_CLIENT and $SSH_TTY
|
|
|
|
SSH_TTY='ssh-tty'
|
|
|
|
unset SSH_CLIENT
|
|
|
|
|
2018-07-25 05:52:06 +00:00
|
|
|
# Load Powerlevel9k
|
|
|
|
source powerlevel9k.zsh-theme
|
|
|
|
|
2018-08-17 16:53:26 +00:00
|
|
|
assertEquals "%K{000} %F{003}ssh-icon%f %k%F{000}%f " "$(build_left_prompt)"
|
2018-07-18 20:25:35 +00:00
|
|
|
|
|
|
|
unset SSH_TTY
|
|
|
|
}
|
|
|
|
|
|
|
|
function testSshSegmentWorksIfAllNecessaryVariablesAreSet() {
|
2018-07-19 20:39:19 +00:00
|
|
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh)
|
2018-07-18 20:25:35 +00:00
|
|
|
local POWERLEVEL9K_SSH_ICON="ssh-icon"
|
|
|
|
# Weak test: Emulate No SSH connection by unsetting
|
|
|
|
# $SSH_CLIENT and $SSH_TTY
|
|
|
|
SSH_CLIENT='ssh-client'
|
|
|
|
SSH_TTY='ssh-tty'
|
|
|
|
|
2018-07-25 05:52:06 +00:00
|
|
|
# Load Powerlevel9k
|
|
|
|
source powerlevel9k.zsh-theme
|
|
|
|
|
2018-08-17 16:53:26 +00:00
|
|
|
assertEquals "%K{000} %F{003}ssh-icon%f %k%F{000}%f " "$(build_left_prompt)"
|
2018-07-18 20:25:35 +00:00
|
|
|
|
|
|
|
unset SSH_TTY
|
|
|
|
unset SSH_CLIENT
|
|
|
|
}
|
|
|
|
|
2018-08-04 15:34:52 +00:00
|
|
|
source shunit2/shunit2
|