salt/tests/unit/modules/test_rvm.py
Chris Heald 5139275602 Add env support for rvm.installed and rvm.do, opts support for .installed
Currently, the RVM state has no way to pass environment variables (ie, RUBY_CONFIGURE_OPTS)
or compilation flags (-C, --patch) to the Ruby installer. This patch enables this
functionality, permitting installation of customized Ruby installs. For example, the following
should now work:

   ruby-2.3.0:
     rvm.installed:
       - env:
           - RUBY_CONFIGURE_OPTS: --with-jemalloc
       - opts:
           - '--patch /path/to/my.patch'
           - '-C --enable-shared,--with-readline-dir=$HOME/.rvm/usr'
2017-04-10 12:40:56 -07:00

193 lines
6.1 KiB
Python

# -*- coding: utf-8 -*-
# Import Python libs
from __future__ import absolute_import
# Import Salt Testing libs
from tests.support.mixins import LoaderModuleMockMixin
from tests.support.unit import skipIf, TestCase
from tests.support.mock import NO_MOCK, NO_MOCK_REASON, MagicMock, patch, call
# Import salt libs
import salt.modules.rvm as rvm
@skipIf(NO_MOCK, NO_MOCK_REASON)
class TestRvmModule(TestCase, LoaderModuleMockMixin):
def setup_loader_modules(self):
return {
rvm: {
'__salt__': {
'cmd.has_exec': MagicMock(return_value=True),
'config.option': MagicMock(return_value=None)
}
}
}
def test_rvm(self):
mock = MagicMock(return_value={'retcode': 0, 'stdout': ''})
with patch.dict(rvm.__salt__, {'cmd.run_all': mock}):
rvm._rvm(['install', '1.9.3'])
mock.assert_called_once_with(
['/usr/local/rvm/bin/rvm', 'install', '1.9.3'],
runas=None,
cwd=None,
python_shell=False,
env=None
)
def test_rvm_do(self):
mock = MagicMock(return_value={'retcode': 0, 'stdout': 'stdout'})
with patch.dict(rvm.__salt__, {'cmd.run_all': mock}):
rvm._rvm_do('1.9.3', ['gemset', 'list'])
mock.assert_called_once_with(
['/usr/local/rvm/bin/rvm', '1.9.3', 'do', 'gemset', 'list'],
runas=None,
cwd=None,
python_shell=False,
env=None
)
def test_install(self):
mock = MagicMock(return_value={'retcode': 0})
with patch.dict(rvm.__salt__, {'cmd.run_all': mock}):
rvm.install()
mock.assert_called_once_with('curl -Ls https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer | bash -s stable', runas=None, python_shell=True)
def test_install_ruby_nonroot(self):
mock = MagicMock(return_value={'retcode': 0, 'stdout': 'stdout'})
expected = [
call(
['/usr/local/rvm/bin/rvm', 'autolibs', 'disable', '2.0.0'],
runas='rvm',
cwd=None,
python_shell=False,
env=None
),
call(
['/usr/local/rvm/bin/rvm', 'install', '2.0.0',
'--disable-binary'],
runas='rvm',
cwd=None,
python_shell=False,
env=None
)
]
with patch.dict(rvm.__salt__, {'cmd.run_all': mock}):
rvm.install_ruby('2.0.0', runas='rvm')
self.assertEqual(mock.call_args_list, expected)
def test_install_with_env(self):
mock = MagicMock(return_value={'retcode': 0, 'stdout': 'stdout'})
expected = [
call(
['/usr/local/rvm/bin/rvm', 'install', '2.0.0'],
runas=None,
cwd=None,
python_shell=False,
env=[{'RUBY_CONFIGURE_OPTS': '--foobar'}]
)
]
with patch.dict(rvm.__salt__, {'cmd.run_all': mock}):
rvm.install_ruby('2.0.0', env=[{'RUBY_CONFIGURE_OPTS': '--foobar'}])
self.assertEqual(mock.call_args_list, expected)
def test_install_with_opts(self):
mock = MagicMock(return_value={'retcode': 0, 'stdout': 'stdout'})
expected = [
call(
['/usr/local/rvm/bin/rvm', 'install', '2.0.0',
'-C --enable-shared,--with-readline-dir=$HOME/.rvm/usr',
'--patch /path/to/awesome.patch'],
runas=None,
cwd=None,
python_shell=False,
env=None
)
]
with patch.dict(rvm.__salt__, {'cmd.run_all': mock}):
rvm.install_ruby('2.0.0', opts=[
'-C --enable-shared,--with-readline-dir=$HOME/.rvm/usr',
'--patch /path/to/awesome.patch'
])
self.assertEqual(mock.call_args_list, expected)
def test_list(self):
list_output = '''
rvm rubies
jruby-1.6.5.1 [ amd64 ]
ree-1.8.7-2011.03 [ x86_64 ]
ree-1.8.7-2011.12 [ x86_64 ]
=* ree-1.8.7-2012.02 [ x86_64 ]
ruby-1.9.2-p180 [ x86_64 ]
ruby-1.9.3-p125 [ x86_64 ]
ruby-head [ x86_64 ]
# => - current
# =* - current && default
# * - default
'''
with patch.object(rvm, '_rvm') as mock_method:
mock_method.return_value = list_output
self.assertEqual(
[['jruby', '1.6.5.1', False],
['ree', '1.8.7-2011.03', False],
['ree', '1.8.7-2011.12', False],
['ree', '1.8.7-2012.02', True],
['ruby', '1.9.2-p180', False],
['ruby', '1.9.3-p125', False],
['ruby', 'head', False]],
rvm.list_())
def test_gemset_list(self):
output = '''
gemsets for ree-1.8.7-2012.02 (found in /usr/local/rvm/gems/ree-1.8.7-2012.02)
global
bar
foo
'''
with patch.object(rvm, '_rvm_do') as mock_method:
mock_method.return_value = output
self.assertEqual(
['global', 'bar', 'foo'],
rvm.gemset_list())
def test_gemset_list_all(self):
output = '''
gemsets for ruby-1.9.3-p125 (found in /usr/local/rvm/gems/ruby-1.9.3-p125)
9bar
9foo
global
gemsets for ruby-head (found in /usr/local/rvm/gems/ruby-head)
global
headbar
headfoo
gemsets for jruby-1.6.5.1 (found in /usr/local/rvm/gems/jruby-1.6.5.1)
global
jbar
jfoo
gemsets for ruby-1.9.2-p180 (found in /usr/local/rvm/gems/ruby-1.9.2-p180)
global
'''
with patch.object(rvm, '_rvm_do') as mock_method:
mock_method.return_value = output
self.assertEqual(
{'jruby-1.6.5.1': ['global', 'jbar', 'jfoo'],
'ruby-1.9.2-p180': ['global'],
'ruby-1.9.3-p125': ['9bar', '9foo', 'global'],
'ruby-head': ['global', 'headbar', 'headfoo']},
rvm.gemset_list_all())