mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
29b05ffdd1
Conflicts: - doc/man/salt-api.1 - doc/man/salt-call.1 - doc/man/salt-cloud.1 - doc/man/salt-cp.1 - doc/man/salt-key.1 - doc/man/salt-master.1 - doc/man/salt-minion.1 - doc/man/salt-proxy.1 - doc/man/salt-run.1 - doc/man/salt-ssh.1 - doc/man/salt-syndic.1 - doc/man/salt-unity.1 - doc/man/salt.1 - doc/man/salt.7 - doc/man/spm.1 - pkg/windows/req.txt - tests/integration/runners/test_state.py - tests/integration/states/test_file.py - tests/integration/states/test_npm.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@2.10.4', 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@2.10.4', 'grunt@1.0.2'], 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)
|