Test for autoenv setting

This commit is contained in:
Raphael Reitzig 2021-01-29 13:26:07 +01:00
parent 7b17fcc4b7
commit 61f1cf8efc
7 changed files with 154 additions and 12 deletions

View file

@ -0,0 +1,85 @@
Feature: Support autoenv setting
When the user sets `sdkman_auto_env=true`, we should always `use` the
candidates specified in `./.sdkmanrc`, if any.
Background:
Given SDKMAN! candidate list is up to date
And candidate ant is installed at version 1.9.7
And candidate ant is installed at version 1.9.9
And candidate ant is installed at version 1.10.1
And candidate crash is installed at version 1.2.11
And candidate crash is installed at version 1.3.0
Scenario: No action if autoenv turned off
Given SDKMAN! config sets sdkman_auto_env to false
And file /tmp/autoenv-test/.sdkmanrc exists with content
"""
ant=1.9.9
"""
When we run fish script
"""
echo (basename $ANT_HOME) > /tmp/autoenv-test.log
cd /tmp/autoenv-test
echo (basename $ANT_HOME) >> /tmp/autoenv-test.log
cd ..
echo (basename $ANT_HOME) >> /tmp/autoenv-test.log
"""
Then file /tmp/autoenv-test.log contains
"""
current
current
current
"""
Scenario: .sdkmanrc loaded if autoenv turned on
Given SDKMAN! config sets sdkman_auto_env to true
And file /tmp/autoenv-test/.sdkmanrc exists with content
"""
ant=1.9.9
"""
When we run fish script
"""
echo (basename $ANT_HOME) > /tmp/autoenv-test.log
cd /tmp/autoenv-test
echo (basename $ANT_HOME) >> /tmp/autoenv-test.log
cd ..
echo (basename $ANT_HOME) >> /tmp/autoenv-test.log
"""
Then file /tmp/autoenv-test.log contains
"""
current
1.9.9
1.10.1
"""
# TODO: we would expect `current` in the last line -- but that's what sdk currently does!
# TODO: This one doesn't work due to a bug in sdkman. Track: https://github.com/sdkman/sdkman-cli/pull/878
@pending
Scenario: Switching between directories with .sdkmanrc
Given SDKMAN! config sets sdkman_auto_env to true
And file /tmp/autoenv-test-1/.sdkmanrc exists with content
"""
ant=1.9.9
crash=1.2.11
"""
And file /tmp/autoenv-test-2/.sdkmanrc exists with content
"""
ant=1.9.7
"""
When we run fish script
"""
echo (basename $ANT_HOME),(basename $CRASH_HOME) > /tmp/autoenv-test.log
cd /tmp/autoenv-test-1
echo (basename $ANT_HOME),(basename $CRASH_HOME) >> /tmp/autoenv-test.log
cd ../autoenv-test-2
echo (basename $ANT_HOME),(basename $CRASH_HOME) >> /tmp/autoenv-test.log
cd ..
echo (basename $ANT_HOME),(basename $CRASH_HOME) >> /tmp/autoenv-test.log
"""
Then file /tmp/autoenv-test.log contains
"""
current,current
1.9.9,1.2.11
1.9.7,current
current,current
"""