2017-10-23 21:13:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
Tests for the spm repo
|
|
|
|
'''
|
|
|
|
# Import python libs
|
2017-12-28 21:27:21 +00:00
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
2017-10-23 21:13:32 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
# Import Salt Testing libs
|
|
|
|
from tests.support.case import SPMCase
|
|
|
|
from tests.support.helpers import destructiveTest
|
|
|
|
|
|
|
|
|
|
|
|
@destructiveTest
|
|
|
|
class SPMRepoTest(SPMCase):
|
|
|
|
'''
|
|
|
|
Validate commands related to spm repo
|
|
|
|
'''
|
|
|
|
def setUp(self):
|
|
|
|
self.config = self._spm_config()
|
|
|
|
self._spm_build_files(self.config)
|
|
|
|
|
|
|
|
def test_spm_create_update_repo(self):
|
|
|
|
'''
|
|
|
|
test spm create_repo
|
|
|
|
'''
|
|
|
|
self._spm_create_update_repo(self.config)
|
|
|
|
|
|
|
|
self.assertTrue(os.path.exists(self.config['spm_db']))
|
|
|
|
|
|
|
|
l_repo_file = os.path.join(self.config['spm_cache_dir'], 'local_repo.p')
|
|
|
|
self.assertTrue(os.path.exists(l_repo_file))
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self._tmp_spm)
|