mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Fix tests
This commit is contained in:
parent
2fa2e7560f
commit
4b32b2c0b2
1 changed files with 21 additions and 34 deletions
|
@ -17,68 +17,66 @@ function setUp() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function testJoinedSegments() {
|
function testJoinedSegments() {
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir dir_joined)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir dir_joined)
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black}%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black}%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
||||||
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
||||||
function testTransitiveJoinedSegments() {
|
function testTransitiveJoinedSegments() {
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir root_indicator_joined dir_joined)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir root_indicator_joined dir_joined)
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black}%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black}%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
||||||
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
||||||
function testJoiningWithConditionalSegment() {
|
function testJoiningWithConditionalSegment() {
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir background_jobs dir_joined)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir background_jobs dir_joined)
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black} %F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black} %F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
||||||
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDynamicColoringOfSegmentsWork() {
|
function testDynamicColoringOfSegmentsWork() {
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
||||||
POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='red'
|
local POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='red'
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
assertEquals "%K{red} %F{black}/tmp %k%F{red}%f " "$(build_left_prompt)"
|
assertEquals "%K{red} %F{black}/tmp %k%F{red}%f " "$(build_left_prompt)"
|
||||||
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
unset POWERLEVEL9K_DIR_DEFAULT_BACKGROUND
|
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDynamicColoringOfVisualIdentifiersWork() {
|
function testDynamicColoringOfVisualIdentifiersWork() {
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
||||||
POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR='green'
|
local POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR='green'
|
||||||
POWERLEVEL9K_FOLDER_ICON="icon-here"
|
local POWERLEVEL9K_FOLDER_ICON="icon-here"
|
||||||
|
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
assertEquals "%K{blue} %F{green%}icon-here %f%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
assertEquals "%K{blue} %F{green%}icon-here %f%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
||||||
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
unset POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR
|
|
||||||
unset POWERLEVEL9K_FOLDER_ICON
|
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
||||||
function testColoringOfVisualIdentifiersDoesNotOverwriteColoringOfSegment() {
|
function testColoringOfVisualIdentifiersDoesNotOverwriteColoringOfSegment() {
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
||||||
POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR='green'
|
local POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR='green'
|
||||||
POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='red'
|
local POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='red'
|
||||||
POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='yellow'
|
local POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='yellow'
|
||||||
POWERLEVEL9K_FOLDER_ICON="icon-here"
|
local POWERLEVEL9K_FOLDER_ICON="icon-here"
|
||||||
|
|
||||||
# Re-Source the icons, as the POWERLEVEL9K_MODE is directly
|
# Re-Source the icons, as the POWERLEVEL9K_MODE is directly
|
||||||
# evaluated there.
|
# evaluated there.
|
||||||
|
@ -88,17 +86,13 @@ function testColoringOfVisualIdentifiersDoesNotOverwriteColoringOfSegment() {
|
||||||
|
|
||||||
assertEquals "%K{yellow} %F{green%}icon-here %f%F{red}/tmp %k%F{yellow}%f " "$(build_left_prompt)"
|
assertEquals "%K{yellow} %F{green%}icon-here %f%F{red}/tmp %k%F{yellow}%f " "$(build_left_prompt)"
|
||||||
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
unset POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR
|
|
||||||
unset POWERLEVEL9K_DIR_DEFAULT_FOREGROUND
|
|
||||||
unset POWERLEVEL9K_DIR_DEFAULT_BACKGROUND
|
|
||||||
unset POWERLEVEL9K_FOLDER_ICON
|
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
||||||
function testOverwritingIconsWork() {
|
function testOverwritingIconsWork() {
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
|
||||||
POWERLEVEL9K_FOLDER_ICON='icon-here'
|
local POWERLEVEL9K_FOLDER_ICON='icon-here'
|
||||||
#local testFolder=$(mktemp -d -p p9k)
|
#local testFolder=$(mktemp -d -p p9k)
|
||||||
# Move testFolder under home folder
|
# Move testFolder under home folder
|
||||||
#mv testFolder ~
|
#mv testFolder ~
|
||||||
|
@ -108,29 +102,22 @@ function testOverwritingIconsWork() {
|
||||||
cd /tmp
|
cd /tmp
|
||||||
assertEquals "%K{blue} %F{black%}icon-here %f%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
assertEquals "%K{blue} %F{black%}icon-here %f%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
|
||||||
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
unset POWERLEVEL9K_DIR_FOLDER_ICON
|
|
||||||
cd -
|
cd -
|
||||||
# rm -fr ~/$testFolder
|
# rm -fr ~/$testFolder
|
||||||
}
|
}
|
||||||
|
|
||||||
function testNewlineOnRpromptCanBeDisabled() {
|
function testNewlineOnRpromptCanBeDisabled() {
|
||||||
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
|
local POWERLEVEL9K_PROMPT_ON_NEWLINE=true
|
||||||
POWERLEVEL9K_RPROMPT_ON_NEWLINE=false
|
local POWERLEVEL9K_RPROMPT_ON_NEWLINE=false
|
||||||
POWERLEVEL9K_CUSTOM_WORLD='echo world'
|
local POWERLEVEL9K_CUSTOM_WORLD='echo world'
|
||||||
POWERLEVEL9K_CUSTOM_RWORLD='echo rworld'
|
local POWERLEVEL9K_CUSTOM_RWORLD='echo rworld'
|
||||||
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(custom_world)
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(custom_world)
|
||||||
|
local -a POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS
|
||||||
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(custom_rworld)
|
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(custom_rworld)
|
||||||
|
|
||||||
powerlevel9k_prepare_prompts
|
powerlevel9k_prepare_prompts
|
||||||
assertEquals '$(print_icon MULTILINE_FIRST_PROMPT_PREFIX)[39m[0m[49m[47m [30mworld [49m[37m[39m $(print_icon MULTILINE_LAST_PROMPT_PREFIX)[1A[39m[0m[49m[37m[39m[47m[30m rworld[K[00m[1B' "$(print -P ${PROMPT}${RPROMPT})"
|
assertEquals '$(print_icon MULTILINE_FIRST_PROMPT_PREFIX)[39m[0m[49m[47m [30mworld [49m[37m[39m $(print_icon MULTILINE_LAST_PROMPT_PREFIX)[1A[39m[0m[49m[37m[39m[47m[30m rworld[K[00m[1B' "$(print -P ${PROMPT}${RPROMPT})"
|
||||||
|
|
||||||
unset POWERLEVEL9K_PROMPT_ON_NEWLINE
|
|
||||||
unset POWERLEVEL9K_RPROMPT_ON_NEWLINE
|
|
||||||
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
||||||
unset POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS
|
|
||||||
unset POWERLEVEL9K_CUSTOM_WORLD
|
|
||||||
unset POWERLEVEL9K_CUSTOM_RWORLD
|
|
||||||
}
|
}
|
||||||
|
|
||||||
source shunit2/source/2.1/src/shunit2
|
source shunit2/source/2.1/src/shunit2
|
||||||
|
|
Loading…
Reference in a new issue