2015-03-04 17:27:37 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Import python libs
|
|
|
|
from __future__ import absolute_import, print_function
|
|
|
|
|
|
|
|
# Import Salt Testing libs
|
2017-03-22 16:42:17 +00:00
|
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import skipIf, TestCase
|
|
|
|
from tests.support.mock import NO_MOCK, NO_MOCK_REASON, Mock, patch
|
2015-03-04 17:27:37 +00:00
|
|
|
|
|
|
|
# Import salt libs
|
2016-07-19 21:13:24 +00:00
|
|
|
import salt.ext.six as six
|
2017-03-21 17:15:36 +00:00
|
|
|
import salt.modules.deb_postgres as deb_postgres
|
2015-03-04 17:27:37 +00:00
|
|
|
|
2015-03-06 15:01:25 +00:00
|
|
|
LSCLUSTER = '''\
|
|
|
|
8.4 main 5432 online postgres /srv/8.4/main \
|
|
|
|
/var/log/postgresql/postgresql-8.4-main.log
|
|
|
|
9.1 main 5433 online postgres /srv/9.1/main \
|
|
|
|
/var/log/postgresql/postgresql-9.1-main.log
|
2015-03-04 17:27:37 +00:00
|
|
|
'''
|
|
|
|
|
2015-03-06 15:01:25 +00:00
|
|
|
|
2015-03-04 17:27:37 +00:00
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-03-22 16:42:17 +00:00
|
|
|
class PostgresClusterTestCase(TestCase, LoaderModuleMockMixin):
|
|
|
|
|
|
|
|
def setup_loader_modules(self):
|
|
|
|
self.cmd_run_all_mock = Mock(return_value={'stdout': LSCLUSTER})
|
|
|
|
self.addCleanup(delattr, self, 'cmd_run_all_mock')
|
2017-04-10 13:00:57 +00:00
|
|
|
patcher = patch('salt.utils.which', Mock(return_value='/usr/bin/pg_createcluster'))
|
|
|
|
patcher.start()
|
|
|
|
self.addCleanup(patcher.stop)
|
2017-03-22 16:42:17 +00:00
|
|
|
return {
|
|
|
|
deb_postgres: {
|
|
|
|
'__salt__': {
|
|
|
|
'config.option': Mock(),
|
|
|
|
'cmd.run_all': self.cmd_run_all_mock,
|
|
|
|
'file.chown': Mock(),
|
|
|
|
'file.remove': Mock(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-04 17:27:37 +00:00
|
|
|
|
|
|
|
def test_cluster_create(self):
|
|
|
|
deb_postgres.cluster_create(
|
|
|
|
'9.3',
|
|
|
|
'main',
|
|
|
|
port='5432',
|
|
|
|
locale='fr_FR',
|
|
|
|
encoding='UTF-8',
|
|
|
|
datadir='/opt/postgresql'
|
|
|
|
)
|
|
|
|
cmdstr = '/usr/bin/pg_createcluster ' \
|
|
|
|
'--port 5432 --locale fr_FR --encoding UTF-8 ' \
|
|
|
|
'--datadir /opt/postgresql ' \
|
|
|
|
'9.3 main'
|
2017-03-22 16:42:17 +00:00
|
|
|
self.assertEqual(cmdstr, self.cmd_run_all_mock.call_args[0][0])
|
2015-03-04 17:27:37 +00:00
|
|
|
|
|
|
|
# XXX version should be a string but from cmdline you get a float
|
|
|
|
# def test_cluster_create_with_float(self):
|
2015-03-06 15:01:25 +00:00
|
|
|
# self.assertRaises(AssertionError, deb_postgres.cluster_create,
|
|
|
|
# (9.3,'main',),
|
2015-03-04 17:27:37 +00:00
|
|
|
# dict(port='5432',
|
|
|
|
# locale='fr_FR',
|
|
|
|
# encoding='UTF-8',
|
|
|
|
# datadir='/opt/postgresql'))
|
|
|
|
|
2015-03-06 15:01:25 +00:00
|
|
|
|
2015-03-04 17:27:37 +00:00
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-03-22 16:42:17 +00:00
|
|
|
class PostgresLsClusterTestCase(TestCase, LoaderModuleMockMixin):
|
|
|
|
|
|
|
|
def setup_loader_modules(self):
|
|
|
|
self.cmd_run_all_mock = Mock(return_value={'stdout': LSCLUSTER})
|
|
|
|
self.addCleanup(delattr, self, 'cmd_run_all_mock')
|
2017-04-10 13:00:57 +00:00
|
|
|
patcher = patch('salt.utils.which', Mock(return_value='/usr/bin/pg_lsclusters'))
|
|
|
|
patcher.start()
|
|
|
|
self.addCleanup(patcher.stop)
|
2017-03-22 16:42:17 +00:00
|
|
|
return {
|
|
|
|
deb_postgres: {
|
|
|
|
'__salt__': {
|
|
|
|
'config.option': Mock(),
|
|
|
|
'cmd.run_all': self.cmd_run_all_mock,
|
|
|
|
'file.chown': Mock(),
|
|
|
|
'file.remove': Mock(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-04 17:27:37 +00:00
|
|
|
|
|
|
|
def test_parse_pg_lsclusters(self):
|
|
|
|
stdout = LSCLUSTER
|
|
|
|
self.maxDiff = None
|
2015-03-06 15:01:25 +00:00
|
|
|
self.assertDictEqual(
|
2015-03-06 16:13:31 +00:00
|
|
|
{('8.4/main'): {
|
2015-03-06 15:01:25 +00:00
|
|
|
'port': 5432,
|
|
|
|
'status': 'online',
|
|
|
|
'user': 'postgres',
|
|
|
|
'datadir': '/srv/8.4/main',
|
|
|
|
'log': '/var/log/postgresql/postgresql-8.4-main.log'},
|
2015-03-06 16:13:31 +00:00
|
|
|
('9.1/main'): {
|
2015-03-06 15:01:25 +00:00
|
|
|
'port': 5433,
|
|
|
|
'status': 'online',
|
|
|
|
'user': 'postgres',
|
|
|
|
'datadir': '/srv/9.1/main',
|
|
|
|
'log': '/var/log/postgresql/postgresql-9.1-main.log'}},
|
|
|
|
deb_postgres._parse_pg_lscluster(stdout))
|
2015-03-04 17:27:37 +00:00
|
|
|
|
|
|
|
def test_cluster_list(self):
|
|
|
|
return_list = deb_postgres.cluster_list()
|
|
|
|
self.assertEqual('/usr/bin/pg_lsclusters --no-header',
|
2017-03-22 16:42:17 +00:00
|
|
|
self.cmd_run_all_mock.call_args[0][0])
|
2016-07-19 21:13:24 +00:00
|
|
|
if six.PY2:
|
|
|
|
# Python 3 returns iterable views (dict_keys in this case) on
|
|
|
|
# dict.keys() calls instead of lists. We should only perform
|
|
|
|
# this check in Python 2.
|
|
|
|
self.assertIsInstance(return_list, list)
|
2015-03-04 17:27:37 +00:00
|
|
|
return_dict = deb_postgres.cluster_list(verbose=True)
|
|
|
|
self.assertIsInstance(return_dict, dict)
|
|
|
|
|
|
|
|
def test_cluster_exists(self):
|
|
|
|
self.assertTrue(deb_postgres.cluster_exists('8.4') is True)
|
|
|
|
self.assertTrue(deb_postgres.cluster_exists('8.4', 'main') is True)
|
|
|
|
self.assertFalse(deb_postgres.cluster_exists('3.4', 'main'))
|
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-03-22 16:42:17 +00:00
|
|
|
class PostgresDeleteClusterTestCase(TestCase, LoaderModuleMockMixin):
|
|
|
|
|
|
|
|
def setup_loader_modules(self):
|
|
|
|
self.cmd_run_all_mock = Mock(return_value={'stdout': LSCLUSTER})
|
|
|
|
self.addCleanup(delattr, self, 'cmd_run_all_mock')
|
2017-04-10 13:00:57 +00:00
|
|
|
patcher = patch('salt.utils.which', Mock(return_value='/usr/bin/pg_dropcluster'))
|
|
|
|
patcher.start()
|
|
|
|
self.addCleanup(patcher.stop)
|
2017-03-22 16:42:17 +00:00
|
|
|
return {
|
|
|
|
deb_postgres: {
|
|
|
|
'__salt__': {
|
|
|
|
'config.option': Mock(),
|
|
|
|
'cmd.run_all': self.cmd_run_all_mock,
|
|
|
|
'file.chown': Mock(),
|
|
|
|
'file.remove': Mock(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-06 15:01:25 +00:00
|
|
|
|
2015-03-04 17:27:37 +00:00
|
|
|
def test_cluster_delete(self):
|
2015-03-06 15:01:25 +00:00
|
|
|
deb_postgres.cluster_remove('9.3', 'main')
|
2015-03-04 17:27:37 +00:00
|
|
|
self.assertEqual('/usr/bin/pg_dropcluster 9.3 main',
|
2017-03-22 16:42:17 +00:00
|
|
|
self.cmd_run_all_mock.call_args[0][0])
|
2015-03-06 15:01:25 +00:00
|
|
|
deb_postgres.cluster_remove('9.3', 'main', stop=True)
|
2015-03-04 17:27:37 +00:00
|
|
|
self.assertEqual('/usr/bin/pg_dropcluster --stop 9.3 main',
|
2017-03-22 16:42:17 +00:00
|
|
|
self.cmd_run_all_mock.call_args[0][0])
|