powerlevel10k/test/powerlevel9k.spec

124 lines
3.6 KiB
RPMSpec
Raw Normal View History

#!/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
2016-02-13 17:35:06 +01:00
function setUp() {
2016-02-13 17:41:26 +01:00
export TERM="xterm-256color"
# Load Powerlevel9k
source powerlevel9k.zsh-theme
source functions/*
2017-02-04 08:53:35 +01:00
# Unset mode, so that user settings
# do not interfere with tests
unset POWERLEVEL9K_MODE
}
function testJoinedSegments() {
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir dir_joined)
2017-02-04 08:53:35 +01:00
cd /tmp
2017-02-04 08:53:35 +01:00
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black}%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
2017-02-04 08:53:35 +01:00
cd -
}
function testTransitiveJoinedSegments() {
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir root_indicator_joined dir_joined)
2017-02-04 08:53:35 +01:00
cd /tmp
2017-02-04 08:53:35 +01:00
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black}%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
2017-02-04 08:53:35 +01:00
cd -
}
function testJoiningWithConditionalSegment() {
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir background_jobs dir_joined)
2017-02-04 08:53:35 +01:00
cd /tmp
2017-02-04 08:53:35 +01:00
assertEquals "%K{blue} %F{black}/tmp %K{blue}%F{black} %F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
2017-02-04 08:53:35 +01:00
cd -
}
function testDynamicColoringOfSegmentsWork() {
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
2018-07-19 22:25:15 +02:00
local POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='red'
2017-02-04 08:53:35 +01:00
cd /tmp
2017-02-04 08:53:35 +01:00
assertEquals "%K{red} %F{black}/tmp %k%F{red}%f " "$(build_left_prompt)"
2017-02-04 08:53:35 +01:00
cd -
}
2016-02-13 17:25:03 +01:00
function testDynamicColoringOfVisualIdentifiersWork() {
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
2016-02-13 17:25:03 +01:00
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
2018-07-19 22:25:15 +02:00
local POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR='green'
local POWERLEVEL9K_FOLDER_ICON="icon-here"
2016-02-13 17:25:03 +01:00
2017-02-04 08:53:35 +01:00
cd /tmp
2016-02-13 17:25:03 +01:00
assertEquals "%K{blue} %F{green%}icon-here %f%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
2016-02-13 17:25:03 +01:00
2017-02-04 08:53:35 +01:00
cd -
2016-02-13 17:25:03 +01:00
}
function testColoringOfVisualIdentifiersDoesNotOverwriteColoringOfSegment() {
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
2016-02-13 17:25:03 +01:00
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
2018-07-19 22:25:15 +02:00
local POWERLEVEL9K_DIR_DEFAULT_VISUAL_IDENTIFIER_COLOR='green'
local POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='red'
local POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='yellow'
local POWERLEVEL9K_FOLDER_ICON="icon-here"
2016-02-13 17:25:03 +01:00
# Re-Source the icons, as the POWERLEVEL9K_MODE is directly
# evaluated there.
source functions/icons.zsh
2017-02-04 08:53:35 +01:00
cd /tmp
assertEquals "%K{yellow} %F{green%}icon-here %f%F{red}/tmp %k%F{yellow}%f " "$(build_left_prompt)"
2016-02-13 17:25:03 +01:00
2017-02-04 08:53:35 +01:00
cd -
2016-02-13 17:25:03 +01:00
}
2016-02-13 17:37:55 +01:00
function testOverwritingIconsWork() {
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
2016-02-13 17:37:55 +01:00
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir)
2018-07-19 22:25:15 +02:00
local POWERLEVEL9K_FOLDER_ICON='icon-here'
2017-02-04 08:53:35 +01:00
#local testFolder=$(mktemp -d -p p9k)
# Move testFolder under home folder
#mv testFolder ~
# Go into testFolder
#cd ~/$testFolder
2016-02-13 17:37:55 +01:00
2017-02-04 08:53:35 +01:00
cd /tmp
assertEquals "%K{blue} %F{black%}icon-here %f%F{black}/tmp %k%F{blue}%f " "$(build_left_prompt)"
2016-02-13 17:37:55 +01:00
2017-02-04 08:53:35 +01:00
cd -
# rm -fr ~/$testFolder
2016-02-13 17:37:55 +01:00
}
2018-05-26 00:27:36 +02:00
function testNewlineOnRpromptCanBeDisabled() {
2018-07-19 22:25:15 +02:00
local POWERLEVEL9K_PROMPT_ON_NEWLINE=true
local POWERLEVEL9K_RPROMPT_ON_NEWLINE=false
local POWERLEVEL9K_CUSTOM_WORLD='echo world'
local POWERLEVEL9K_CUSTOM_RWORLD='echo rworld'
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
2018-05-26 00:27:36 +02:00
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(custom_world)
2018-07-19 22:25:15 +02:00
local -a POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS
2018-05-26 00:27:36 +02:00
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(custom_rworld)
powerlevel9k_prepare_prompts
2018-06-20 21:44:12 +02:00
assertEquals '$(print_icon MULTILINE_FIRST_PROMPT_PREFIX) world  $(print_icon MULTILINE_LAST_PROMPT_PREFIX) rworld' "$(print -P ${PROMPT}${RPROMPT})"
2018-05-26 00:27:36 +02:00
}
source shunit2/source/2.1/src/shunit2