mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
893196d3e6
Conflicts: - doc/conf.py - salt/loader.py - salt/modules/dockermod.py - salt/modules/sensehat.py - salt/utils/parsers.py - tests/integration/cloud/providers/test_ec2.py - tests/integration/modules/test_cp.py - tests/integration/modules/test_groupadd.py - tests/integration/spm/test_man_spm.py - tests/integration/states/test_npm.py - tests/unit/states/test_environ.py
84 lines
3.1 KiB
Python
84 lines
3.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`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)
|