mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-01-07 09:17:26 -08:00
98 lines
3 KiB
Go
98 lines
3 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestRuby(t *testing.T) {
|
||
|
cases := []struct {
|
||
|
ExpectedString string
|
||
|
ExpectedEnabled bool
|
||
|
HasRbenv bool
|
||
|
HasRvmprompt bool
|
||
|
HasChruby bool
|
||
|
HasAsdf bool
|
||
|
HasRuby bool
|
||
|
Version string
|
||
|
HasRubyFiles bool
|
||
|
HasRakeFile bool
|
||
|
HasGemFile bool
|
||
|
DisplayVersion bool
|
||
|
}{
|
||
|
{ExpectedString: "", ExpectedEnabled: false},
|
||
|
{ExpectedString: "", ExpectedEnabled: true, DisplayVersion: false, HasRubyFiles: true},
|
||
|
{ExpectedString: "", ExpectedEnabled: true, DisplayVersion: false, HasRakeFile: true},
|
||
|
{ExpectedString: "", ExpectedEnabled: true, DisplayVersion: false, HasGemFile: true},
|
||
|
{ExpectedString: "", ExpectedEnabled: false, DisplayVersion: true, HasGemFile: true},
|
||
|
{ExpectedString: "", ExpectedEnabled: false, DisplayVersion: true},
|
||
|
{
|
||
|
ExpectedString: "ruby-2.6.3",
|
||
|
ExpectedEnabled: true,
|
||
|
DisplayVersion: true,
|
||
|
HasRubyFiles: true,
|
||
|
HasChruby: true,
|
||
|
Version: ` * ruby-2.6.3
|
||
|
ruby-1.9.3-p392
|
||
|
jruby-1.7.0
|
||
|
rubinius-2.0.0-rc1`,
|
||
|
},
|
||
|
{
|
||
|
ExpectedString: "ruby-1.9.3-p392",
|
||
|
ExpectedEnabled: true,
|
||
|
DisplayVersion: true,
|
||
|
HasRubyFiles: true,
|
||
|
HasChruby: true,
|
||
|
Version: ` ruby-2.6.3
|
||
|
* ruby-1.9.3-p392
|
||
|
jruby-1.7.0
|
||
|
rubinius-2.0.0-rc1`,
|
||
|
},
|
||
|
{
|
||
|
ExpectedString: "2.6.3",
|
||
|
ExpectedEnabled: true,
|
||
|
DisplayVersion: true,
|
||
|
HasRubyFiles: true,
|
||
|
HasAsdf: true,
|
||
|
Version: "ruby 2.6.3 /Users/jan/Projects/oh-my-posh3/.tool-versions",
|
||
|
},
|
||
|
{
|
||
|
ExpectedString: "",
|
||
|
ExpectedEnabled: false,
|
||
|
DisplayVersion: true,
|
||
|
HasRubyFiles: true,
|
||
|
HasAsdf: true,
|
||
|
Version: "ruby ______ No version set. Run \"asdf <global|shell|local> ruby <version>\"",
|
||
|
},
|
||
|
}
|
||
|
for _, tc := range cases {
|
||
|
env := new(MockedEnvironment)
|
||
|
env.On("hasCommand", "rbenv").Return(tc.HasRbenv)
|
||
|
env.On("runCommand", "rbenv", []string{"version-name"}).Return(tc.Version, nil)
|
||
|
env.On("hasCommand", "rvm-prompt").Return(tc.HasRvmprompt)
|
||
|
env.On("runCommand", "rvm-prompt", []string{"i", "v", "g"}).Return(tc.Version, nil)
|
||
|
env.On("hasCommand", "chruby").Return(tc.HasChruby)
|
||
|
env.On("runCommand", "chruby", []string(nil)).Return(tc.Version, nil)
|
||
|
env.On("hasCommand", "asdf").Return(tc.HasAsdf)
|
||
|
env.On("runCommand", "asdf", []string{"current", "ruby"}).Return(tc.Version, nil)
|
||
|
env.On("hasCommand", "ruby").Return(tc.HasRuby)
|
||
|
env.On("runCommand", "ruby", []string{"--version"}).Return(tc.Version, nil)
|
||
|
env.On("hasFiles", "*.rb").Return(tc.HasRubyFiles)
|
||
|
env.On("hasFiles", "Rakefile").Return(tc.HasRakeFile)
|
||
|
env.On("hasFiles", "Gemfile").Return(tc.HasGemFile)
|
||
|
props := &properties{
|
||
|
values: map[Property]interface{}{
|
||
|
DisplayVersion: tc.DisplayVersion,
|
||
|
},
|
||
|
}
|
||
|
ruby := &ruby{
|
||
|
env: env,
|
||
|
props: props,
|
||
|
}
|
||
|
assert.Equal(t, tc.ExpectedEnabled, ruby.enabled(), fmt.Sprintf("Failed in case: %+v", tc))
|
||
|
assert.Equal(t, tc.ExpectedString, ruby.string(), fmt.Sprintf("Failed in case: %+v", tc))
|
||
|
}
|
||
|
}
|