Feature: Broadcast
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: A command is issued with no prior Broadcast received
  1. Given no prior Broadcast was received
  2. And a new Broadcast "This is a LIVE Broadcast!" with id "12345" is available
  3. When I enter "sdk version"
  4. Then I see "This is a LIVE Broadcast!"
    Output: 
    
    This is a LIVE Broadcast!
    SDKMAN x.y.z
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: A command is issued where the prior Broadcast was different to the Live one
  1. Given a prior Broadcast "This is an OLD Broadcast!" with id "12344" was issued
  2. And a new Broadcast "This is a LIVE Broadcast!" with id "12345" is available
  3. When I enter "sdk version"
  4. Then I see "This is a LIVE Broadcast!"
    Output: 
    
    This is a LIVE Broadcast!
    SDKMAN x.y.z
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: A command is issued where the prior Broadcast was the same as the Live one
  1. Given a prior Broadcast "This is a LIVE Broadcast!" with id "12345" was issued
  2. And a new Broadcast "This is a LIVE Broadcast!" with id "12345" is available
  3. When I enter "sdk version"
  4. Then I do not see "This is a LIVE Broadcast!"
    Output: 
    
    SDKMAN x.y.z
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: A Broadcast command recalls a prior Broadcast
  1. Given a prior Broadcast "This is an OLD Broadcast!" with id "12344" was issued
  2. And a new Broadcast "This is an OLD Broadcast!" with id "12344" is available
  3. When I enter "sdk broadcast"
  4. Then I see "This is an OLD Broadcast!"
    Output: 
    
    This is an OLD Broadcast!
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: A Broadcast command is issued with no prior Broadcast received
  1. Given no prior Broadcast was received
  2. And a new Broadcast "This is a LIVE Broadcast!" with id "12345" is available
  3. When I enter "sdk broadcast"
  4. Then I see "This is a LIVE Broadcast!"
    Output: 
    
    This is a LIVE Broadcast!
    
    
    
Feature: Command Line Interop
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Enter sdk
  1. When I enter "sdk"
  2. Then I see "Usage: sdk <command> [candidate] [version]"
  3. And I see "sdk offline <enable|disable>"
    Output: 
    
    broadcast message
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Ask for help
  1. When I enter "sdk help"
  2. Then I see "Usage: sdk <command> [candidate] [version]"
    Output: 
    
    broadcast message
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Enter an invalid Command
  1. When I enter "sdk goopoo grails"
  2. Then I see "Invalid command: goopoo"
  3. And I see "Usage: sdk <command> [candidate] [version]"
    Output: 
    
    broadcast message
    Invalid command: goopoo
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Enter an invalid Candidate
  1. When I enter "sdk install groffle"
  2. Then I see "Stop! groffle is not a valid candidate."
    Output: 
    
    broadcast message
    
    Stop! groffle is not a valid candidate.
    
    
    
Feature: Current Candidate
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display current candidate version in use
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk current grails"
  4. Then I see "Using grails version 1.3.9"
    Output: 
    
    broadcast message
    Using grails version 1.3.9
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display current candidate version when none is in use
  1. Given the candidate "grails" version "1.3.9" is already installed but not default
  2. And the system is bootstrapped
  3. When I enter "sdk current grails"
  4. Then I see "Not using any version of grails"
    Output: 
    
    broadcast message
    Not using any version of grails
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display current candidate versions when none is specified and none is in use
  1. Given the candidate "grails" version "1.3.9" is already installed but not default
  2. And the system is bootstrapped
  3. When I enter "sdk current"
  4. Then I see "No candidates are in use"
    Output: 
    
    broadcast message
    No candidates are in use
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display current candidate versions when none is specified and one is in use
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk current"
  4. Then I see "Using:"
  5. And I see "grails: 2.1.0"
    Output: 
    
    broadcast message
    Using:
    grails: 2.1.0
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display current candidate versions when none is specified and multiple are in use
  1. Given the candidate "groovy" version "2.0.5" is already installed and default
  2. And the candidate "grails" version "2.1.0" is already installed and default
  3. And the system is bootstrapped
  4. When I enter "sdk current"
  5. Then I see "Using:"
  6. And I see "grails: 2.1.0"
  7. And I see "groovy: 2.0.5"
    Output: 
    
    broadcast message
    Using:
    groovy: 2.0.5
    grails: 2.1.0
    
    
    
Feature: Default Version
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Default a candidate version that is not installed
  1. Given the candidate "groovy" version "2.0.5" is a valid candidate version
  2. And the system is bootstrapped
  3. When I enter "sdk default groovy 2.0.5"
  4. Then I see "Stop! groovy 2.0.5 is not installed."
    Output: 
    
    broadcast message
    
    Stop! groovy 2.0.5 is not installed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Default a candidate version that is installed and not default
  1. Given the candidate "groovy" version "2.0.5" is a valid candidate version
  2. And the candidate "groovy" version "2.0.5" is already installed but not default
  3. And the system is bootstrapped
  4. When I enter "sdk default groovy 2.0.5"
  5. Then I see "Default groovy version set to 2.0.5"
  6. And the candidate "groovy" version "2.0.5" should be the default
    Output: 
    
    broadcast message
    
    Default groovy version set to 2.0.5
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Default a candidate version that is installed and already default
  1. Given the candidate "groovy" version "2.0.5" is a valid candidate version
  2. And the candidate "groovy" version "2.0.5" is already installed and default
  3. And the system is bootstrapped
  4. When I enter "sdk default groovy 2.0.5"
  5. Then I see "Default groovy version set to 2.0.5"
  6. And the candidate "groovy" version "2.0.5" should be the default
    Output: 
    
    broadcast message
    
    Default groovy version set to 2.0.5
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Default a candidate version that does not exist
  1. Given the candidate "groovy" version "2.9.9" is not available for download
  2. And the system is bootstrapped
  3. When I enter "sdk default groovy 2.9.9"
  4. Then I see "Stop! 2.9.9 is not a valid groovy version."
    Output: 
    
    broadcast message
    
    Stop! 2.9.9 is not a valid groovy version.
    
    
    
Feature: Flush
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Flush omitting the Qualifier
  1. When I enter "sdk flush"
  2. Then I see "Stop! Please specify what you want to flush."
    Output: 
    
    Stop! Please specify what you want to flush.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clear out the Candidate List
  1. Given the candidate "grails" is known locally
  2. When I enter "sdk flush candidates"
  3. Then no candidates are know locally
  4. And I see "Candidates have been flushed."
    Output: 
    
    Candidates have been flushed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clear out an uninitialised Candidate List
  1. Given I enter "sdk flush candidates"
  2. When I enter "sdk flush candidates"
  3. Then I see "No candidate list found so not flushed."
    Output: 
    
    No candidate list found so not flushed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clean up the current Broadcast
  1. Given a prior Broadcast "This is an old broadcast" with id "12344" was issued
  2. When I enter "sdk flush broadcast"
  3. Then no broadcast message can be found
  4. And I see "Broadcast has been flushed."
    Output: 
    
    Broadcast has been flushed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clean up an uninitialised Broadcast
  1. Given the broadcast has been flushed
  2. When I enter "sdk flush broadcast"
  3. Then I see "No prior broadcast found so not flushed."
    Output: 
    
    No prior broadcast found so not flushed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clean up the last known Remote Version
  1. Given a prior version "x.y.z" was detected
  2. When I enter "sdk flush version"
  3. Then no version token can be found
  4. And I see "Version Token has been flushed."
    Output: 
    
    Version Token has been flushed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clean up an uninitialised last known Remote Version
  1. Given the Remote Version has been flushed
  2. When I enter "sdk flush version"
  3. Then I see "No prior Remote Version found so not flushed."
    Output: 
    
    No prior Remote Version found so not flushed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clear out the cached Archives
  1. Given the archive "grails-1.3.9.zip" has been cached
  2. When I enter "sdk flush archives"
  3. Then no archives are cached
  4. And I see "1 archive(s) flushed"
    Output: 
    
    1 archive(s) flushed, freeing 4.0K	/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/archives.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Clear out the temporary space
  1. Given the file "res-1.2.0.zip" in temporary storage
  2. When I enter "sdk flush temp"
  3. Then no "res-1.2.0.zip" file is present in temporary storage
  4. And I see "1 archive(s) flushed"
    Output: 
    
    1 archive(s) flushed, freeing 4.0K	/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/tmp.
    
    
    
Feature: Idempotent Self Update
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
  4. And an available selfupdate
Scenario: Attempt Self Update on an up to date system
  1. When I enter "sdk selfupdate"
  2. Then I see "No update available at this time."
    Output: 
    
    No update available at this time.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
  4. And an available selfupdate
Scenario: Force Self Update on an up to date system
  1. When I enter "sdk selfupdate force"
  2. Then I see "Successfully upgraded SDKMAN."
    Output: 
    
    Successfully upgraded SDKMAN.
    
    
    
Feature: Install Candidate
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Install a default Candidate
  1. Given the default "grails" candidate is "2.1.0"
  2. When I enter "sdk install grails" and answer "Y"
  3. Then I see "Done installing!"
  4. Then the candidate "grails" version "2.1.0" is installed
    Output: 
    
    broadcast message
    
    Downloading: grails 2.1.0
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0  73019      0 --:--:-- --:--:-- --:--:-- 73019
    
    Installing: grails 2.1.0
    Done installing!
    
    Do you want grails 2.1.0 to be set as default? (Y/n): 
    Setting grails 2.1.0 as default.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Install a specific Candidate
  1. And the candidate "grails" version "1.3.9" is available for download
  2. When I enter "sdk install grails 1.3.9" and answer "Y"
  3. Then I see "Done installing!"
  4. Then the candidate "grails" version "1.3.9" is installed
    Output: 
    
    broadcast message
    
    Downloading: grails 1.3.9
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0   273k      0 --:--:-- --:--:-- --:--:--  273k
    
    Installing: grails 1.3.9
    Done installing!
    
    Do you want grails 1.3.9 to be set as default? (Y/n): 
    Setting grails 1.3.9 as default.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Install a Candidate version that does not exist
  1. Given the candidate "grails" version "1.4.4" is not available for download
  2. When I enter "sdk install grails 1.4.4"
  3. Then I see "Stop! 1.4.4 is not a valid grails version."
    Output: 
    
    broadcast message
    
    Stop! 1.4.4 is not a valid grails version.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Install a Candidate version that is already installed
  1. Given the candidate "grails" version "1.3.9" is available for download
  2. And the candidate "grails" version "1.3.9" is already installed and default
  3. When I enter "sdk install grails 1.3.9"
  4. Then I see "Stop! grails 1.3.9 is already installed."
    Output: 
    
    broadcast message
    
    Stop! grails 1.3.9 is already installed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Install a candidate and select to use it
  1. Given the candidate "grails" version "2.1.0" is available for download
  2. When I enter "sdk install grails 2.1.0" and answer "Y"
  3. Then the candidate "grails" version "2.1.0" is installed
  4. And I see "Done installing!"
  5. And I see "Do you want grails 2.1.0 to be set as default? (Y/n)"
  6. And I see "Setting grails 2.1.0 as default."
  7. Then the candidate "grails" version "2.1.0" should be the default
    Output: 
    
    broadcast message
    
    Downloading: grails 2.1.0
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0   290k      0 --:--:-- --:--:-- --:--:--  290k
    
    Installing: grails 2.1.0
    Done installing!
    
    Do you want grails 2.1.0 to be set as default? (Y/n): 
    Setting grails 2.1.0 as default.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Install a candidate and select to use it automatically
  1. Given the candidate "grails" version "2.1.0" is available for download
  2. And I have configured "sdkman_auto_answer" to "true"
  3. When I enter "sdk install grails 2.1.0"
  4. Then the candidate "grails" version "2.1.0" is installed
  5. And I see "Done installing!"
  6. And I see "Setting grails 2.1.0 as default."
  7. Then the candidate "grails" version "2.1.0" should be the default
    Output: 
    
    broadcast message
    
    Downloading: grails 2.1.0
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0  93453      0 --:--:-- --:--:-- --:--:-- 93453
    
    Installing: grails 2.1.0
    Done installing!
    
    
    Setting grails 2.1.0 as default.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Install a candidate and do not select to use it
  1. Given the candidate "grails" version "2.1.0" is available for download
  2. When I enter "sdk install grails 2.1.0" and answer "n"
  3. Then the candidate "grails" version "2.1.0" is installed
  4. And I see "Done installing!"
  5. And I see "Do you want grails 2.1.0 to be set as default? (Y/n)"
  6. And I do not see "Setting grails 2.1.0 as default."
  7. Then the candidate "grails" version "2.1.0" should not be the default
    Output: 
    
    broadcast message
    
    Downloading: grails 2.1.0
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0   264k      0 --:--:-- --:--:-- --:--:--  264k
    
    Installing: grails 2.1.0
    Done installing!
    
    Do you want grails 2.1.0 to be set as default? (Y/n): 
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
#revisit to redownload automatically
Scenario: Abort installation on download of a corrupt Candidate archive
  1. Given the candidate "grails" version "1.3.6" is available for download
  2. And the archive for candidate "grails" version "1.3.6" is corrupt
  3. When I enter "sdk install grails 1.3.6"
  4. Then I see "Stop! The archive was corrupt and has been removed! Please try installing again."
  5. And the candidate "grails" version "1.3.6" is not installed
  6. And the archive for candidate "grails" version "1.3.6" is removed
    Output: 
    
    broadcast message
    
    Downloading: grails 1.3.6
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100    31  100    31    0     0   4955      0 --:--:-- --:--:-- --:--:--  4955
    
    Stop! The archive was corrupt and has been removed! Please try installing again.
    
    
    
Feature: List Candidate Versions
A dummy template to be served back that has the following information: * Candidate: grails * Current: 2.1.0 * Versions: 2.1.0,2.1.1,2.1.2 (CSV)
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: List an uninstalled available Version
  1. Given I do not have a "grails" candidate installed
  2. And the candidate "grails" has a version list available
  3. And the system is bootstrapped
  4. When I enter "sdk list grails"
  5. Then I see "Candidate: grails"
    Output: 
    
    broadcast message
    Candidate: grails; Versions: ; Current: 
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: List an installed available Version not in use
  1. Given the candidate "grails" version "2.1.0" is already installed but not default
  2. And the candidate "grails" has a version list available
  3. And the system is bootstrapped
  4. When I enter "sdk list grails"
  5. Then I see "Versions: 2.1.0"
  6. And I do not see "Current: 2.1.0"
    Output: 
    
    broadcast message
    Candidate: grails; Versions: 2.1.0; Current: 
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: List an installed available Version in use
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" has a version list available
  3. And the system is bootstrapped
  4. When I enter "sdk list grails"
  5. Then I see "Current: 2.1.0"
  6. And I see "Versions: 2.1.0"
    Output: 
    
    broadcast message
    Candidate: grails; Versions: 2.1.0; Current: 2.1.0
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: List installed multiple Versions
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" version "2.0.9" is already installed but not default
  3. And the candidate "grails" has a version list available
  4. And the system is bootstrapped
  5. When I enter "sdk list grails"
  6. Then I see "Current: 2.1.0"
  7. And I see "Versions: 2.0.9,2.1.0"
    Output: 
    
    broadcast message
    Candidate: grails; Versions: 2.0.9,2.1.0; Current: 2.1.0
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: List an installed local version not in use
  1. Given I have a local candidate "grails" version "2.3-SNAPSHOT" at "/tmp/groovy-core"
  2. And the candidate "groovy" version "2.3-SNAPSHOT" is already linked to "/tmp/groovy-core"
  3. And the candidate "groovy" has a version list available
  4. And the system is bootstrapped
  5. When I enter "sdk list groovy"
  6. Then I see "Versions: 2.3-SNAPSHOT"
  7. And I do not see "Current: 2.3-SNAPSHOT"
    Output: 
    
    broadcast message
    Candidate: groovy; Versions: 2.3-SNAPSHOT; Current: 
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: List an installed local Version in use
  1. Given I have a local candidate "groovy" version "2.2-SNAPSHOT" at "/tmp/groovy-core"
  2. And the candidate "groovy" version "2.2-SNAPSHOT" is already linked to "/tmp/groovy-core"
  3. And the candidate "groovy" version "2.2-SNAPSHOT" is the default
  4. And the candidate "groovy" has a version list available
  5. And the system is bootstrapped
  6. When I enter "sdk list groovy"
  7. Then I see "Current: 2.2-SNAPSHOT"
  8. And I see "Versions: 2.2-SNAPSHOT"
    Output: 
    
    broadcast message
    Candidate: groovy; Versions: 2.2-SNAPSHOT; Current: 2.2-SNAPSHOT
    
    
    
Feature: List Candidates
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: A List of Available Candidates can be viewed
  1. Given the system is bootstrapped
  2. And The candidate list is available
  3. When I enter "sdk list"
  4. Then I see "Candidate List"
    Output: 
    
    broadcast message
    Candidate List
    
    
    
Feature: Local Development Versions
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Install a new local development version
  1. Given the candidate "groovy" version "2.1-SNAPSHOT" is not available for download
  2. And I have a local candidate "groovy" version "2.1-SNAPSHOT" at "/tmp/groovy-core"
  3. And the system is bootstrapped
  4. When I enter "sdk install groovy 2.1-SNAPSHOT /tmp/groovy-core"
  5. Then I see "Linking groovy 2.1-SNAPSHOT to /tmp/groovy-core"
  6. And the candidate "groovy" version "2.1-SNAPSHOT" is linked to "/tmp/groovy-core"
    Output: 
    
    broadcast message
    Linking groovy 2.1-SNAPSHOT to /tmp/groovy-core
    Done installing!
    
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Attempt installing a local development version that already exists
  1. Given the candidate "groovy" version "2.1-SNAPSHOT" is not available for download
  2. And the candidate "groovy" version "2.1-SNAPSHOT" is already linked to "/tmp/groovy-core"
  3. And the system is bootstrapped
  4. When I enter "sdk install groovy 2.1-SNAPSHOT /tmp/groovy-core"
  5. Then I see "Stop! groovy 2.1-SNAPSHOT is already installed."
  6. And the candidate "groovy" version "2.1-SNAPSHOT" is linked to "/tmp/groovy-core"
    Output: 
    
    broadcast message
    
    Stop! groovy 2.1-SNAPSHOT is already installed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Uninstall a local development version
  1. Given the candidate "groovy" version "2.1-SNAPSHOT" is already linked to "/tmp/groovy-core"
  2. And the system is bootstrapped
  3. When I enter "sdk uninstall groovy 2.1-SNAPSHOT"
  4. Then I see "Uninstalling groovy 2.1-SNAPSHOT"
  5. And the candidate "groovy" version "2.1-SNAPSHOT" is not installed
    Output: 
    
    broadcast message
    
    Uninstalling groovy 2.1-SNAPSHOT...
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Attempt uninstalling a local development version that is not installed
  1. Given the candidate "groovy" version "2.1-SNAPSHOT" is not installed
  2. And the system is bootstrapped
  3. When I enter "sdk uninstall groovy 2.1-SNAPSHOT"
  4. Then I see "groovy 2.1-SNAPSHOT is not installed."
    Output: 
    
    broadcast message
    
    groovy 2.1-SNAPSHOT is not installed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Make the local development version the default for the candidate
  1. Given the candidate "groovy" version "2.0.6" is already installed and default
  2. And the candidate "groovy" version "2.1-SNAPSHOT" is not available for download
  3. And the candidate "groovy" version "2.1-SNAPSHOT" is already linked to "/tmp/groovy-core"
  4. And the system is bootstrapped
  5. When I enter "sdk default groovy 2.1-SNAPSHOT"
  6. Then I see "Default groovy version set to 2.1-SNAPSHOT"
  7. And the candidate "groovy" version "2.1-SNAPSHOT" should be the default
    Output: 
    
    broadcast message
    
    Default groovy version set to 2.1-SNAPSHOT
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use a local development version
  1. Given the candidate "groovy" version "2.0.6" is already installed and default
  2. And the candidate "groovy" version "2.1-SNAPSHOT" is not available for download
  3. And the candidate "groovy" version "2.1-SNAPSHOT" is already linked to "/tmp/groovy-core"
  4. And the system is bootstrapped
  5. When I enter "sdk use groovy 2.1-SNAPSHOT"
  6. Then I see "Using groovy version 2.1-SNAPSHOT in this shell"
  7. And the candidate "groovy" version "2.1-SNAPSHOT" should be in use
    Output: 
    
    Groovy Version: 2.1-SNAPSHOT
    
    
    
Feature: Mnemonics
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for listing an uninstalled available Version
  1. Given I do not have a "grails" candidate installed
  2. And a "grails" list view is available for consumption
  3. And the system is bootstrapped
  4. When I enter "sdk l grails"
  5. Then I see "Available Grails Versions"
    Output: 
    
    broadcast message
    Available Grails Versions
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Alternate shortcut for listing uninstalled available Version
  1. Given I do not have a "grails" candidate installed
  2. And a "grails" list view is available for consumption
  3. And the system is bootstrapped
  4. When I enter "sdk ls grails"
  5. Then I see "Available Grails Versions"
    Output: 
    
    broadcast message
    Available Grails Versions
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for asking help
  1. Given the system is bootstrapped
  2. When I enter "sdk h"
  3. Then I see "Usage: sdk <command> [candidate] [version]"
    Output: 
    
    broadcast message
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for displaying current Candidate Version in use
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk c grails"
  4. Then I see "Using grails version 1.3.9"
    Output: 
    
    broadcast message
    Using grails version 1.3.9
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for displaying current Candidate Versions
  1. Given the candidate "groovy" version "2.0.5" is already installed and default
  2. And the candidate "grails" version "2.1.0" is already installed and default
  3. And the system is bootstrapped
  4. When I enter "sdk c"
  5. Then I see "Using:"
  6. And I see "grails: 2.1.0"
  7. And I see "groovy: 2.0.5"
    Output: 
    
    broadcast message
    Using:
    groovy: 2.0.5
    grails: 2.1.0
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for displaying outdated Candidate Version in use
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the default "grails" candidate is "2.4.4"
  3. And the system is bootstrapped
  4. When I enter "sdk o grails"
  5. Then I see "Outdated:"
  6. And I see "grails (1.3.9 < 2.4.4)"
    Output: 
    
    broadcast message
    Outdated:
    grails (1.3.9 < 2.4.4)
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for displaying outdated Candidate Versions
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the default "grails" candidate is "2.4.4"
  3. And the candidate "groovy" version "2.0.5" is already installed and default
  4. And the default "groovy" candidate is "2.4.1"
  5. And the system is bootstrapped
  6. When I enter "sdk o"
  7. Then I see "Outdated:"
  8. And I see "grails (1.3.9 < 2.4.4)"
  9. And I see "groovy (2.0.5 < 2.4.1)"
    Output: 
    
    broadcast message
    Outdated:
    groovy (2.0.5 < 2.4.1)
    grails (1.3.9 < 2.4.4)
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for installing a Candidate Version
  1. Given the candidate "grails" version "2.1.0" is not installed
  2. And the candidate "grails" version "2.1.0" is available for download
  3. And the system is bootstrapped
  4. When I enter "sdk i grails 2.1.0" and answer "Y"
  5. Then I see "Installing: grails 2.1.0"
  6. And the candidate "grails" version "2.1.0" is installed
    Output: 
    
    broadcast message
    
    Downloading: grails 2.1.0
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0  94845      0 --:--:-- --:--:-- --:--:-- 94845
    
    Installing: grails 2.1.0
    Done installing!
    
    Do you want grails 2.1.0 to be set as default? (Y/n): 
    Setting grails 2.1.0 as default.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for uninstalling a Candidate Version
  1. Given the candidate "groovy" version "2.0.5" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk rm groovy 2.0.5"
  4. Then I see "Uninstalling groovy 2.0.5"
  5. And the candidate "groovy" version "2.0.5" is not installed
    Output: 
    
    broadcast message
    
    Unselecting groovy 2.0.5...
    
    Uninstalling groovy 2.0.5...
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for showing the current Version of sdkman
  1. Given the system is bootstrapped
  2. When I enter "sdk v"
  3. Then I see "SDKMAN x.y.z"
    Output: 
    
    broadcast message
    SDKMAN x.y.z
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for using a candidate version that is installed
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" version "2.1.0" is a valid candidate version
  3. And the candidate "grails" version "1.3.9" is already installed but not default
  4. And the candidate "grails" version "1.3.9" is a valid candidate version
  5. And the system is bootstrapped
  6. When I enter "sdk u grails 1.3.9"
  7. Then I see "Using grails version 1.3.9 in this shell."
  8. Then the candidate "grails" version "1.3.9" should be in use
  9. And the candidate "grails" version "2.1.0" should be the default
    Output: 
    
    Grails Version: 1.3.9
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for defaulting a Candidate Version that is installed and not default
  1. Given the candidate "groovy" version "2.0.5" is already installed but not default
  2. And the candidate "groovy" version "2.0.5" is a valid candidate version
  3. And the system is bootstrapped
  4. When I enter "sdk d groovy 2.0.5"
  5. Then I see "Default groovy version set to 2.0.5"
  6. And the candidate "groovy" version "2.0.5" should be the default
    Output: 
    
    broadcast message
    
    Default groovy version set to 2.0.5
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Shortcut for a Broadcast command issued
  1. Given no prior Broadcast was received
  2. And a new Broadcast "This is a LIVE Broadcast!" with id "12345" is available
  3. And the system is bootstrapped
  4. When I enter "sdk b"
  5. Then I see "This is a LIVE Broadcast!"
    Output: 
    
    This is a LIVE Broadcast!
    
    
    
Feature: Offline Mode
#offline modes
Scenario: Enter an invalid offline mode
  1. Given offline mode is disabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk offline grails"
  5. Then I see "Stop! grails is not a valid offline mode."
    Output: 
    
    broadcast message
    
    Stop! grails is not a valid offline mode.
    
    
    
Scenario: Issue Offline command without qualification
  1. Given offline mode is disabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk offline"
  5. Then I see "Offline mode enabled."
    Output: 
    
    broadcast message
    Offline mode enabled.
    
    
    
Scenario: Enable Offline Mode with internet reachable
  1. Given offline mode is disabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk offline enable"
  5. Then I see "Offline mode enabled."
  6. And I do not see "INTERNET NOT REACHABLE!"
  7. When I enter "sdk install grails 2.1.0"
  8. Then I do not see "INTERNET NOT REACHABLE!"
  9. And I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
Scenario: Disable Offline Mode with internet reachable
  1. Given offline mode is enabled with reachable internet
  2. And the candidate "grails" version "2.1.0" is available for download
  3. And an initialised environment
  4. And the system is bootstrapped
  5. When I enter "sdk offline disable"
  6. Then I see "Online mode re-enabled!"
  7. When I enter "sdk install grails 2.1.0" and answer "Y"
  8. Then I see "Done installing!"
  9. And the candidate "grails" version "2.1.0" is installed
    Output: 
    
    broadcast message
    
    Downloading: grails 2.1.0
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0  92462      0 --:--:-- --:--:-- --:--:-- 92462
    
    Installing: grails 2.1.0
    Done installing!
    
    Do you want grails 2.1.0 to be set as default? (Y/n): 
    Setting grails 2.1.0 as default.
    
    
    
Scenario: Disable Offline Mode with internet unreachable
  1. Given offline mode is enabled with unreachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk offline disable"
  5. Then I see "Online mode re-enabled!"
  6. When I enter "sdk install grails 2.1.0"
  7. Then I see "INTERNET NOT REACHABLE!"
  8. And I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
#broadcast
Scenario: Recall a broadcast while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When a prior Broadcast "This is an OLD Broadcast!" with id "12344" was issued
  5. And I enter "sdk broadcast"
  6. Then I see "This is an OLD Broadcast!"
    Output: 
    
    This is an OLD Broadcast!
    
    
    
#sdk version
Scenario: Determine the sdkman version while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk version"
  5. Then I see the current sdkman version
    Output: 
    
    SDKMAN x.y.z
    
    
    
#list candidate version
Scenario: List candidate versions found while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk list grails"
  5. Then I see "Offline: only showing installed grails versions"
    Output: 
    
    ------------------------------------------------------------
    Offline: only showing installed grails versions
    ------------------------------------------------------------
                                                                
       None installed!
    ------------------------------------------------------------
    * - installed                                               
    > - currently in use                                        
    ------------------------------------------------------------
    
    
    
#use version
Scenario: Use an uninstalled candidate version while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And the candidate "grails" version "1.3.9" is already installed and default
  3. And the candidate "grails" version "2.1.0" is not installed
  4. And an initialised environment
  5. And the system is bootstrapped
  6. When I enter "sdk use grails 2.1.0"
  7. Then I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
#default version
Scenario: Set the default to an uninstalled candidate version while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And the candidate "grails" version "1.3.9" is already installed and default
  3. And an initialised environment
  4. And the system is bootstrapped
  5. When I enter "sdk default grails 2.1.0"
  6. Then I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
#install command
Scenario: Install a candidate version that is not installed while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And the candidate "grails" version "2.1.0" is not installed
  3. And an initialised environment
  4. And the system is bootstrapped
  5. When I enter "sdk install grails 2.1.0"
  6. Then I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
#uninstall command
Scenario: Uninstall a candidate version while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And the candidate "grails" version "2.1.0" is already installed and default
  3. And an initialised environment
  4. And the system is bootstrapped
  5. When I enter "sdk uninstall grails 2.1.0"
  6. And the candidate "grails" version "2.1.0" is not installed
    Output: 
    
    
    Unselecting grails 2.1.0...
    
    Uninstalling grails 2.1.0...
    
    
    
#current command
Scenario: Display the current version of a candidate while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And the candidate "grails" version "2.1.0" is already installed and default
  3. And an initialised environment
  4. And the system is bootstrapped
  5. When I enter "sdk current grails"
  6. Then I see "Using grails version 2.1.0"
    Output: 
    
    Using grails version 2.1.0
    
    
    
#help command
Scenario: Request help while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk help"
  5. Then I see "Usage: sdk <command> [candidate] [version]"
    Output: 
    
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
#selfupdate command
Scenario: Attempt self-update while in Offline Mode
  1. Given offline mode is enabled with reachable internet
  2. And an initialised environment
  3. And the system is bootstrapped
  4. When I enter "sdk selfupdate"
  5. Then I see "This command is not available while offline."
    Output: 
    
    This command is not available while offline.
    
    
    
Feature: Outdated Candidate
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display outdated candidate version in use when it is outdated
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the default "grails" candidate is "2.4.4"
  3. And the system is bootstrapped
  4. When I enter "sdk outdated grails"
  5. Then I see "Outdated:"
  6. And I see "grails (1.3.9 < 2.4.4)"
    Output: 
    
    broadcast message
    Outdated:
    grails (1.3.9 < 2.4.4)
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display outdated candidate version in use when it is not outdated
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the default "grails" candidate is "1.3.9"
  3. And the system is bootstrapped
  4. When I enter "sdk outdated grails"
  5. Then I see "grails is up-to-date"
    Output: 
    
    broadcast message
    grails is up-to-date
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display outdated candidate version when none is in use
  1. Given the candidate "grails" does not exist locally
  2. And the system is bootstrapped
  3. When I enter "sdk outdated grails"
  4. Then I see "Not using any version of grails"
    Output: 
    
    broadcast message
    Not using any version of grails
    grails is up-to-date
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display outdated candidate versions when none is specified and none is in use
  1. Given the candidate "grails" does not exist locally
  2. And the system is bootstrapped
  3. When I enter "sdk outdated"
  4. Then I see "No candidates are in use"
    Output: 
    
    broadcast message
    No candidates are in use
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display outdated candidate versions when none is specified and one is in use
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the default "grails" candidate is "2.4.4"
  3. And the system is bootstrapped
  4. When I enter "sdk outdated"
  5. Then I see "Outdated:"
  6. And I see "grails (1.3.9 < 2.4.4)"
    Output: 
    
    broadcast message
    Outdated:
    grails (1.3.9 < 2.4.4)
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display outdated candidate versions when none is specified and multiple are in use
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the default "grails" candidate is "2.4.4"
  3. And the candidate "groovy" version "2.0.5" is already installed and default
  4. And the default "groovy" candidate is "2.4.1"
  5. And the system is bootstrapped
  6. When I enter "sdk outdated"
  7. Then I see "Outdated:"
  8. And I see "grails (1.3.9 < 2.4.4)"
  9. And I see "groovy (2.0.5 < 2.4.1)"
    Output: 
    
    broadcast message
    Outdated:
    groovy (2.0.5 < 2.4.1)
    grails (1.3.9 < 2.4.4)
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Display outdated candidate versions when none specified and multiple in use but not outdated
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the default "grails" candidate is "1.3.9"
  3. And the candidate "groovy" version "2.0.5" is already installed and default
  4. And the default "groovy" candidate is "2.0.5"
  5. And the system is bootstrapped
  6. When I enter "sdk outdated"
  7. Then I see "All candidates are up-to-date"
    Output: 
    
    broadcast message
    All candidates are up-to-date
    
    
    
Feature: Path Initialisation
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: sdkman is initialised for the first time
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "echo $PATH"
  4. Then I see a single occurrence of "grails"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/candidates/grails/current/bin:/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/bin:/usr/sbin:/usr/bin:/sbin:/bin
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: sdkman is initialised a subsequent time
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the system is bootstrapped
  3. And the system is bootstrapped again
  4. And I enter "echo $PATH"
  5. Then I see a single occurrence of "grails"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/candidates/grails/current/bin:/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/bin:/usr/sbin:/usr/bin:/sbin:/bin
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Install a candidate and see it on the PATH
  1. Given the system is bootstrapped
  2. When I enter "echo $PATH"
  3. Then I see no occurrences of "grails"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/bin:/usr/sbin:/usr/bin:/sbin:/bin
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Install a candidate and see it on the PATH
  1. And the candidate "grails" version "2.1.0" is available for download
  2. And the system is bootstrapped
  3. And I enter "sdk install grails 2.1.0" and answer "Y"
  4. When I enter "echo $PATH"
  5. Then I see a single occurrence of "grails"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/candidates/grails/current/bin:/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/bin:/usr/sbin:/usr/bin:/sbin:/bin
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Install multiple candidate versions and see it once on the PATH
  1. Given the candidate "grails" version "1.3.9" is available for download
  2. And the candidate "grails" version "2.1.0" is available for download
  3. And the system is bootstrapped
  4. And I enter "sdk install grails 1.3.9" and answer "Y"
  5. And I enter "sdk install grails 2.1.0" and answer "Y"
  6. When I enter "echo $PATH"
  7. Then I see a single occurrence of "grails"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/candidates/grails/current/bin:/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/bin:/usr/sbin:/usr/bin:/sbin:/bin
    
    
    
Feature: Self Update
Background:
  1. Given the internet is reachable
Scenario: Force a Selfupdate
  1. Given an initialised environment
  2. And the system is bootstrapped
  3. When I enter "sdk selfupdate force"
  4. Then I do not see "A new version of SDKMAN is available..."
  5. And I do not see "Would you like to upgrade now? (Y/n)"
  6. And I do not see "Not upgrading today..."
  7. And I see "Updating SDKMAN..."
  8. And I see "Successfully upgraded SDKMAN."
    Output: 
    
    
    Updating SDKMAN...
    Purge existing scripts...
    Refresh directory structure...
    Prime the config file...
    Extract script archive...
    Unziping scripts to: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/tmp/stage
    Moving sdkman-init file to bin folder...
    Move remaining module scripts to src folder: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/src
    Clean up staging folder...
    
    
    Successfully upgraded SDKMAN.
    
    Please open a new terminal, or run the following in the existing one:
    
        source "/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/bin/sdkman-init.sh"
    
    
    
    
    
Background:
  1. Given the internet is reachable
Scenario: Selfupdate when out of date
  1. Given an outdated initialised environment
  2. And the system is bootstrapped
  3. When I enter "sdk selfupdate"
  4. Then I do not see "A new version of SDKMAN is available..."
  5. And I do not see "Would you like to upgrade now? (Y/n)"
  6. And I do not see "Not upgrading today..."
  7. And I see "Updating SDKMAN..."
  8. And I see "Successfully upgraded SDKMAN."
    Output: 
    
    
    Updating SDKMAN...
    Purge existing scripts...
    Refresh directory structure...
    Prime the config file...
    Extract script archive...
    Unziping scripts to: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/tmp/stage
    Moving sdkman-init file to bin folder...
    Move remaining module scripts to src folder: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/src
    Clean up staging folder...
    
    
    Successfully upgraded SDKMAN.
    
    Please open a new terminal, or run the following in the existing one:
    
        source "/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/bin/sdkman-init.sh"
    
    
    
    
    
Background:
  1. Given the internet is reachable
Scenario: Agree to a suggested Selfupdate
  1. Given an outdated initialised environment
  2. And the system is bootstrapped
  3. When I enter "sdk help" and answer "Y"
  4. Then I see "A new version of SDKMAN is available..."
  5. And I see "Would you like to upgrade now? (Y/n)"
  6. And I see "Successfully upgraded SDKMAN."
  7. And I do not see "Not upgrading today..."
    Output: 
    
    broadcast message
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    ATTENTION: A new version of SDKMAN is available...
    
    The current version is x.y.z, but you have x.y.y.
    
    Would you like to upgrade now? (Y/n)
    Updating SDKMAN...
    Purge existing scripts...
    Refresh directory structure...
    Prime the config file...
    Extract script archive...
    Unziping scripts to: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/tmp/stage
    Moving sdkman-init file to bin folder...
    Move remaining module scripts to src folder: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/src
    Clean up staging folder...
    
    
    Successfully upgraded SDKMAN.
    
    Please open a new terminal, or run the following in the existing one:
    
        source "/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/bin/sdkman-init.sh"
    
    
    
    
    
Background:
  1. Given the internet is reachable
Scenario: Do not agree to a suggested Selfupdate
  1. Given an outdated initialised environment
  2. And the system is bootstrapped
  3. When I enter "sdk help" and answer "N"
  4. Then I see "A new version of SDKMAN is available..."
  5. And I see "Would you like to upgrade now? (Y/n)"
  6. And I see "Not upgrading today..."
  7. And I do not see "Successfully upgraded SDKMAN."
    Output: 
    
    broadcast message
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    ATTENTION: A new version of SDKMAN is available...
    
    The current version is x.y.z, but you have x.y.y.
    
    Would you like to upgrade now? (Y/n)Not upgrading today...
    
    
    
Background:
  1. Given the internet is reachable
Scenario: Automatically Selfupdate
  1. Given an outdated initialised environment
  2. And the configuration file has been primed with "sdkman_auto_selfupdate=true"
  3. And the system is bootstrapped
  4. When I enter "sdk help"
  5. Then I see "A new version of SDKMAN is available..."
  6. And I do not see "Would you like to upgrade now? (Y/n)"
  7. And I do not see "Not upgrading today..."
  8. And I see "Successfully upgraded SDKMAN."
    Output: 
    
    broadcast message
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    ATTENTION: A new version of SDKMAN is available...
    
    The current version is x.y.z, but you have x.y.y.
    
    
    Updating SDKMAN...
    Purge existing scripts...
    Refresh directory structure...
    Prime the config file...
    Extract script archive...
    Unziping scripts to: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/tmp/stage
    Moving sdkman-init file to bin folder...
    Move remaining module scripts to src folder: /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/src
    Clean up staging folder...
    
    
    Successfully upgraded SDKMAN.
    
    Please open a new terminal, or run the following in the existing one:
    
        source "/tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/bin/sdkman-init.sh"
    
    
    
    
    
Background:
  1. Given the internet is reachable
Scenario: Do not automatically Selfupdate
  1. Given an outdated initialised environment
  2. And the configuration file has been primed with "sdkman_auto_selfupdate=false"
  3. And the system is bootstrapped
  4. When I enter "sdk help" and answer "n"
  5. Then I see "A new version of SDKMAN is available..."
  6. And I see "Would you like to upgrade now? (Y/n)"
  7. And I see "Not upgrading today..."
  8. And I do not see "Successfully upgraded SDKMAN."
    Output: 
    
    broadcast message
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    ATTENTION: A new version of SDKMAN is available...
    
    The current version is x.y.z, but you have x.y.y.
    
    Would you like to upgrade now? (Y/n)Not upgrading today...
    
    
    
Background:
  1. Given the internet is reachable
Scenario: Bother the user with Upgrade message once a day
  1. Given an outdated initialised environment
  2. And the system is bootstrapped
  3. When I enter "sdk help" and answer "N"
  4. Then I see "A new version of SDKMAN is available..."
  5. And I see "Would you like to upgrade now? (Y/n)"
  6. And I see "Not upgrading today..."
  7. And I enter "sdk help"
  8. Then I do not see "A new version of SDKMAN is available..."
  9. And I do not see "Would you like to upgrade now? (Y/n)"
  10. And I do not see "Not upgrading now..."
  11. And I do not see "Successfully upgraded SDKMAN."
    Output: 
    
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is reachable
Scenario: Selfupdate when not out of date
  1. Given an initialised environment
  2. And the system is bootstrapped
  3. When I enter "sdk selfupdate"
  4. Then I see "No update available at this time."
    Output: 
    
    No update available at this time.
    
    
    
Feature: Service Unavailable
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# list commands
Scenario: List candidate versions found while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" version "1.3.9" is already installed but not default
  3. And the system is bootstrapped
  4. When I enter "sdk list grails"
  5. Then I see "Offline: only showing installed grails versions"
  6. And I see "> 2.1.0"
  7. And I see "* 1.3.9"
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    ------------------------------------------------------------
    Offline: only showing installed grails versions
    ------------------------------------------------------------
                                                                
     * 1.3.9
     > 2.1.0
    ------------------------------------------------------------
    * - installed                                               
    > - currently in use                                        
    ------------------------------------------------------------
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: List candidate versions not found while Offline
  1. Given the system is bootstrapped
  2. When I enter "sdk list grails"
  3. Then I see "Offline: only showing installed grails versions"
  4. And I see "None installed!"
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    ------------------------------------------------------------
    Offline: only showing installed grails versions
    ------------------------------------------------------------
                                                                
       None installed!
    ------------------------------------------------------------
    * - installed                                               
    > - currently in use                                        
    ------------------------------------------------------------
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: List Available Candidates while Offline
  1. Given the system is bootstrapped
  2. When I enter "sdk list"
  3. Then I see "This command is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    This command is not available while offline.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# use command
Scenario: Use the default candidate version while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" version "1.3.9" is already installed but not default
  3. And the system is bootstrapped
  4. When I enter "sdk use grails"
  5. Then I see "Using grails version 2.1.0 in this shell."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    
    Using grails version 2.1.0 in this shell.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Use the default candidate version when non selected while Offline
  1. Given the candidate "grails" version "1.3.9" is already installed but not default
  2. And the candidate "grails" version "2.1.0" is already installed but not default
  3. And the system is bootstrapped
  4. When I enter "sdk use grails"
  5. Then I see "This command is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    This command is not available while offline.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Use an uninstalled candidate version while Offline
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the candidate "grails" version "2.1.0" is not installed
  3. And the system is bootstrapped
  4. When I enter "sdk use grails 2.1.0"
  5. Then I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Use an invalid candidate version while Offline
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk use grails 9.9.9"
  4. Then I see "Stop! grails 9.9.9 is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Stop! grails 9.9.9 is not available while offline.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Use an installed candidate version while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" version "1.3.9" is already installed but not default
  3. And the system is bootstrapped
  4. When I enter "sdk use grails 1.3.9"
  5. Then I see "Using grails version 1.3.9 in this shell."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    
    Using grails version 1.3.9 in this shell.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# default command
Scenario: Set the default to an uninstalled candidate version while Offline
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk default grails 2.1.0"
  4. Then I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Set the default to an invalid candidate version while Offline
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk default grails 999"
  4. Then I see "Stop! grails 999 is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Stop! grails 999 is not available while offline.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Set the default to an installed candidate version while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" version "1.3.9" is already installed but not default
  3. And the system is bootstrapped
  4. When I enter "sdk default grails 1.3.9"
  5. Then I see "Default grails version set to 1.3.9"
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    
    Default grails version set to 1.3.9
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# install command
Scenario: Install a candidate version that is not installed while Offline
  1. Given the candidate "grails" version "2.1.0" is not installed
  2. And the system is bootstrapped
  3. When I enter "sdk install grails 2.1.0"
  4. Then I see "Stop! grails 2.1.0 is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Stop! grails 2.1.0 is not available while offline.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Install a candidate version that is already installed while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk install grails 2.1.0"
  4. Then I see "Stop! grails 2.1.0 is already installed."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    
    Stop! grails 2.1.0 is already installed.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# uninstall command
Scenario: Uninstall a candidate version while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk uninstall grails 2.1.0"
  4. Then I see "Unselecting grails 2.1.0..."
  5. And I see "Uninstalling grails 2.1.0..."
  6. And the candidate "grails" version "2.1.0" is not in use
  7. And the candidate "grails" version "2.1.0" is not installed
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    
    Unselecting grails 2.1.0...
    
    Uninstalling grails 2.1.0...
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Uninstall a candidate version that is not installed while Offline
  1. Given the candidate "grails" version "2.1.0" is not installed
  2. And the system is bootstrapped
  3. When I enter "sdk uninstall grails 2.1.0"
  4. Then I see "grails 2.1.0 is not installed."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    
    grails 2.1.0 is not installed.
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# current command
Scenario: Display the current version of a candidate while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk current grails"
  4. Then I see "Using grails version 2.1.0"
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Using grails version 2.1.0
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
Scenario: Display the current version of all candidates while Offline
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "groovy" version "2.0.5" is already installed and default
  3. And the system is bootstrapped
  4. When I enter "sdk current"
  5. Then I see "Using:"
  6. And I see "grails: 2.1.0"
  7. And I see "groovy: 2.0.5"
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    Using:
    groovy: 2.0.5
    grails: 2.1.0
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# version command
Scenario: Determine the sdkman version when Offline
  1. Given the system is bootstrapped
  2. When I enter "sdk version"
  3. Then I see the current sdkman version
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    SDKMAN x.y.z
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# broadcast command
Scenario: Recall a broadcast while Offline
  1. Given a prior Broadcast "This is an OLD Broadcast!" with id "12344" was issued
  2. And the system is bootstrapped
  3. When I enter "sdk broadcast"
  4. Then I see "This is an OLD Broadcast!"
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    This is an OLD Broadcast!
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# help command
Scenario: Request help while Offline
  1. Given the system is bootstrapped
  2. When I enter "sdk help"
  3. Then I see "Usage: sdk <command> [candidate] [version]"
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is not reachable
  2. And an initialised environment
# selfupdate command
Scenario: Attempt self-update while Offline
  1. Given the system is bootstrapped
  2. When I enter "sdk selfupdate"
  3. Then I see "This command is not available while offline."
    Output: 
    
    ==== INTERNET NOT REACHABLE! ===============================
    
     Some functionality is disabled or only partially available.
     If this persists, please enable the offline mode:
    
       $ sdk offline
    
    ============================================================
    
    This command is not available while offline.
    
    
    
Feature: Uninstall Candidate
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Uninstall an installed Candidate Version not in use
  1. Given the candidate "grails" version "2.1.0" is already installed but not default
  2. And the system is bootstrapped
  3. When I enter "sdk uninstall grails 2.1.0"
  4. Then I do not see "Unselecting grails 2.1.0"
  5. Then I see "Uninstalling grails 2.1.0"
  6. And the candidate "grails" version "2.1.0" is not installed
    Output: 
    
    broadcast message
    
    Uninstalling grails 2.1.0...
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Uninstall a Candidate Version in use
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the system is bootstrapped
  3. When I enter "sdk uninstall grails 2.1.0"
  4. Then I see "Unselecting grails 2.1.0"
  5. And I see "Uninstalling grails 2.1.0"
  6. And the candidate "grails" version "2.1.0" is not installed
  7. And the candidate "grails" is no longer selected
    Output: 
    
    broadcast message
    
    Unselecting grails 2.1.0...
    
    Uninstalling grails 2.1.0...
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Attempt uninstalling a Candidate Version that is not installed
  1. Given the candidate "grails" version "1.3.9" is not installed
  2. And the system is bootstrapped
  3. When I enter "sdk uninstall grails 1.3.9"
  4. Then I see "grails 1.3.9 is not installed."
    Output: 
    
    broadcast message
    
    grails 1.3.9 is not installed.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Attempt uninstalling with no Candidate specified
  1. Given the system is bootstrapped
  2. When I enter "sdk uninstall"
  3. Then I see "No candidate provided."
    Output: 
    
    broadcast message
    
    No candidate provided.
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Attempt uninstalling with an invalid Candidate specified
  1. Given the system is bootstrapped
  2. When I enter "sdk uninstall groffle"
  3. Then I see "Stop! groffle is not a valid candidate."
    Output: 
    
    broadcast message
    
    Stop! groffle is not a valid candidate.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Attempt uninstalling without a version provided
  1. Given the system is bootstrapped
  2. When I enter "sdk uninstall grails"
  3. Then I see "No candidate version provided."
    Output: 
    
    broadcast message
    
    No candidate version provided.
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Feature: Use Version
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use without providing a Candidate
  1. Given the system is bootstrapped
  2. When I enter "sdk use"
  3. Then I see "Usage: sdk <command> [candidate] [version]"
    Output: 
    
    broadcast message
    
    No candidate provided.
    
    Usage: sdk  [candidate] [version]
           sdk offline 
    
       commands:
           install   or i     [version]
           uninstall or rm    
           list      or ls   [candidate]
           use       or u     [version]
           default   or d     [version]
           current   or c    [candidate]
           outdated  or o    [candidate]
           version   or v
           broadcast or b
           help      or h
           offline           [enable|disable]
           selfupdate        [force]
           flush             
    
       candidate  :  the SDK to install: groovy, scala, grails, akka, etc.
                     use list command for comprehensive list of candidates
                     eg: $ sdk list
    
       version    :  where optional, defaults to latest stable if not provided
                     eg: $ sdk install groovy
    
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use a candidate version that is installed
  1. Given the candidate "grails" version "2.1.0" is already installed and default
  2. And the candidate "grails" version "1.3.9" is a valid candidate version
  3. And the candidate "grails" version "1.3.9" is already installed but not default
  4. And the system is bootstrapped
  5. When I enter "sdk use grails 1.3.9"
  6. Then I see "Using grails version 1.3.9 in this shell."
  7. Then the candidate "grails" version "1.3.9" should be in use
  8. And the candidate "grails" version "2.1.0" should be the default
    Output: 
    
    Grails Version: 1.3.9
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use a candidate version that is not installed
  1. Given the candidate "grails" version "1.3.9" is available for download
  2. And the system is bootstrapped
  3. When I enter "sdk use grails 1.3.9" and answer "Y"
  4. Then I see "Using grails version 1.3.9 in this shell."
  5. And the candidate "grails" version "1.3.9" should be in use
    Output: 
    
    Grails version: 1.3.9
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use a candidate version that is automatically installed
  1. Given I have configured "sdkman_auto_answer" to "true"
  2. And the candidate "grails" version "1.3.9" is available for download
  3. And the system is bootstrapped
  4. When I enter "sdk use grails 1.3.9"
  5. Then I see "Stop! grails 1.3.9 is not installed."
  6. Then I see "Using grails version 1.3.9 in this shell."
  7. And the candidate "grails" version "1.3.9" should be in use
    Output: 
    
    Grails version: 1.3.9
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use a candidate version that does not exist
  1. Given the candidate "groovy" version "1.9.9" is not available for download
  2. And the system is bootstrapped
  3. When I enter "sdk use groovy 1.9.9"
  4. Then I see "Stop! 1.9.9 is not a valid groovy version."
    Output: 
    
    broadcast message
    
    Stop! 1.9.9 is not a valid groovy version.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use a candidate version that only exists locally
  1. Given the candidate "grails" version "2.0.0.M1" is not available for download
  2. And the candidate "grails" version "2.0.0.M1" is already installed but not default
  3. And the system is bootstrapped
  4. When I enter "sdk use grails 2.0.0.M1"
  5. Then I see "Using grails version 2.0.0.M1 in this shell."
    Output: 
    
    broadcast message
    Setting grails version 2.0.0.M1 as default.
    
    Using grails version 2.0.0.M1 in this shell.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use an uninstalled candidate version of an uninstalled candidate and it becomes default
  1. Given the candidate "grails" version "1.3.9" is available for download
  2. And the candidate "grails" does not exist locally
  3. And the system is bootstrapped
  4. When I enter "sdk use grails 1.3.9" and answer "Y"
  5. Then I see "Setting grails version 1.3.9 as default."
  6. And I see "Using grails version 1.3.9 in this shell."
  7. And the candidate "grails" version "1.3.9" is installed
  8. And the candidate "grails" version "1.3.9" should be the default
    Output: 
    
    broadcast message
    
    Stop! grails 1.3.9 is not installed.
    Do you want to install it now? (Y/n): 
    Downloading: grails 1.3.9
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0  94829      0 --:--:-- --:--:-- --:--:-- 94829
    
    Installing: grails 1.3.9
    Done installing!
    
    Setting grails version 1.3.9 as default.
    
    Using grails version 1.3.9 in this shell.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use an uninstalled candidate version of an installed candidate and it does not become default
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the candidate "grails" version "2.1.0" is available for download
  3. And the system is bootstrapped
  4. When I enter "sdk use grails 2.1.0" and answer "Y"
  5. Then I do not see "Setting grails version 1.3.9 as default."
  6. And I see "Using grails version 2.1.0 in this shell."
  7. And the candidate "grails" version "2.1.0" is installed
  8. And the candidate "grails" version "1.3.9" should be the default
    Output: 
    
    broadcast message
    
    Stop! grails 2.1.0 is not installed.
    Do you want to install it now? (Y/n): 
    Downloading: grails 2.1.0
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    
    100   541  100   541    0     0  95921      0 --:--:-- --:--:-- --:--:-- 95921
    
    Installing: grails 2.1.0
    Done installing!
    
    
    Using grails version 2.1.0 in this shell.
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
#scenarios related to updating _HOME variable
Scenario: Use an installed version of an installed candidate updates the candidate _HOME variable
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the candidate "grails" version "2.1.0" is already installed but not default
  3. And the candidate "grails" version "2.1.0" is available for download
  4. And the system is bootstrapped
  5. And the "GRAILS_HOME" variable contains "grails/current"
  6. When I enter "sdk use grails 2.1.0"
  7. And I see "Using grails version 2.1.0 in this shell."
  8. Then the "GRAILS_HOME" variable contains "grails/2.1.0"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/candidates/grails/2.1.0
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use an uninstalled version of an uninstalled candidate updates the candidate _HOME variable
  1. Given the candidate "grails" does not exist locally
  2. And the candidate "grails" version "2.1.0" is available for download
  3. And the system is bootstrapped
  4. And the "GRAILS_HOME" variable is not set
  5. When I enter "sdk use grails 2.1.0" and answer "Y"
  6. Then the "GRAILS_HOME" variable contains "grails/2.1.0"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/candidates/grails/2.1.0
    
    
    
Background:
  1. Given the internet is reachable
  2. And an initialised environment
Scenario: Use an uninstalled version of an installed candidate updates the candidate _HOME variable
  1. Given the candidate "grails" version "1.3.9" is already installed and default
  2. And the candidate "grails" version "2.1.0" is available for download
  3. And the system is bootstrapped
  4. And the "GRAILS_HOME" variable contains "grails/current"
  5. When I enter "sdk use grails 2.1.0" and answer "Y"
  6. Then the "GRAILS_HOME" variable contains "grails/2.1.0"
    Output: 
    
    /tmp/sdkman-test/c5a977d6-ac59-4993-8c1f-45284a93de65/.sdkman/candidates/grails/2.1.0
    
    
    
Feature: Version
Background:
  1. Given the internet is reachable
  2. And an initialised environment
  3. And the system is bootstrapped
Scenario: Show the current version of sdkman
  1. When I enter "sdk version"
  2. Then I see "SDKMAN x.y.z"
    Output: 
    
    broadcast message
    SDKMAN x.y.z