mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
3273bbdab7
Conflicts: - doc/ref/configuration/master.rst - doc/ref/modules/all/index.rst - doc/topics/grains/index.rst - doc/topics/releases/2016.3.4.rst - doc/topics/spm/spm_formula.rst - doc/topics/tutorials/cron.rst - doc/topics/tutorials/index.rst - doc/topics/tutorials/stormpath.rst - salt/engines/slack.py - salt/log/handlers/fluent_mod.py - salt/modules/cyg.py - salt/modules/junos.py - salt/modules/namecheap_dns.py - salt/modules/namecheap_domains.py - salt/modules/namecheap_ns.py - salt/modules/namecheap_ssl.py - salt/modules/namecheap_users.py - salt/modules/reg.py - salt/modules/tomcat.py - salt/modules/vault.py - salt/modules/win_file.py - salt/modules/zpool.py - salt/output/highstate.py - salt/renderers/pass.py - salt/runners/cache.py - salt/states/boto_apigateway.py - salt/states/boto_iam.py - salt/states/boto_route53.py - salt/states/msteams.py - salt/states/reg.py - salt/states/win_iis.py - tests/integration/modules/test_cmdmod.py - tests/integration/states/test_user.py - tests/support/helpers.py - tests/unit/cloud/clouds/test_openstack.py - tests/unit/fileserver/test_gitfs.py - tests/unit/modules/test_junos.py - tests/unit/pillar/test_git.py - tests/unit/states/test_win_path.py - tests/unit/test_pillar.py - tests/unit/utils/test_format_call.py - tests/unit/utils/test_utils.py - tests/unit/utils/test_warnings.py
84 lines
3.1 KiB
Python
84 lines
3.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: Erik Johnson (erik@saltstack.com)
|
|
tests.integration.states.npm
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
'''
|
|
# Import Python libs
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
|
import os
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.case import ModuleCase
|
|
from tests.support.unit import skipIf
|
|
from tests.support.helpers import destructiveTest, requires_network
|
|
from tests.support.mixins import SaltReturnAssertsMixin
|
|
from tests.support.runtests import RUNTIME_VARS
|
|
|
|
# Import salt libs
|
|
import salt.modules.cmdmod as cmd
|
|
import salt.utils.path
|
|
from salt.utils.versions import LooseVersion
|
|
|
|
MAX_NPM_VERSION = '5.0.0'
|
|
|
|
|
|
@skipIf(salt.utils.path.which('npm') is None, 'npm not installed')
|
|
class NpmStateTest(ModuleCase, SaltReturnAssertsMixin):
|
|
|
|
@requires_network()
|
|
@destructiveTest
|
|
def test_npm_installed_removed(self):
|
|
'''
|
|
Basic test to determine if NPM module was successfully installed and
|
|
removed.
|
|
'''
|
|
ret = self.run_state('npm.installed', name='pm2', registry="http://registry.npmjs.org/")
|
|
self.assertSaltTrueReturn(ret)
|
|
ret = self.run_state('npm.removed', name='pm2')
|
|
self.assertSaltTrueReturn(ret)
|
|
|
|
@requires_network()
|
|
@destructiveTest
|
|
def test_npm_install_url_referenced_package(self):
|
|
'''
|
|
Determine if URL-referenced NPM module can be successfully installed.
|
|
'''
|
|
if LooseVersion(cmd.run('npm -v')) >= LooseVersion(MAX_NPM_VERSION):
|
|
user = os.environ.get('SUDO_USER', 'root')
|
|
npm_dir = os.path.join(RUNTIME_VARS.TMP, 'git-install-npm')
|
|
self.run_state('file.directory', name=npm_dir, user=user, dir_mode='755')
|
|
else:
|
|
user = None
|
|
npm_dir = None
|
|
ret = self.run_state('npm.installed',
|
|
name='request/request#v2.81.1',
|
|
runas=user,
|
|
dir=npm_dir,
|
|
registry="http://registry.npmjs.org/")
|
|
self.assertSaltTrueReturn(ret)
|
|
ret = self.run_state('npm.removed', name='git://github.com/request/request', runas=user, dir=npm_dir)
|
|
self.assertSaltTrueReturn(ret)
|
|
if npm_dir is not None:
|
|
self.run_state('file.absent', name=npm_dir)
|
|
|
|
@requires_network()
|
|
@destructiveTest
|
|
def test_npm_installed_pkgs(self):
|
|
'''
|
|
Basic test to determine if NPM module successfully installs multiple
|
|
packages.
|
|
'''
|
|
ret = self.run_state('npm.installed', name='unused', pkgs=['pm2', 'grunt'], registry="http://registry.npmjs.org/")
|
|
self.assertSaltTrueReturn(ret)
|
|
|
|
@skipIf(salt.utils.path.which('npm') and LooseVersion(cmd.run('npm -v')) >= LooseVersion(MAX_NPM_VERSION),
|
|
'Skip with npm >= 5.0.0 until #41770 is fixed')
|
|
@destructiveTest
|
|
def test_npm_cache_clean(self):
|
|
'''
|
|
Basic test to determine if NPM successfully cleans its cached packages.
|
|
'''
|
|
ret = self.run_state('npm.cache_cleaned', name='unused', force=True)
|
|
self.assertSaltTrueReturn(ret)
|