123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761 |
- # -*- coding: utf-8 -*-
- # Import python libs
- from __future__ import absolute_import, print_function, unicode_literals
- # Import salt libs
- import salt.modules.postgres as postgresmod
- import salt.states.postgres_database as postgres_database
- import salt.states.postgres_extension as postgres_extension
- import salt.states.postgres_group as postgres_group
- import salt.states.postgres_schema as postgres_schema
- import salt.states.postgres_user as postgres_user
- # Import Salt Testing libs
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.mock import MagicMock, Mock, patch
- from tests.support.unit import TestCase
- class PostgresUserTestCase(TestCase, LoaderModuleMockMixin):
- def setup_loader_modules(self):
- patcher = patch("salt.utils.path.which", Mock(return_value="/usr/bin/pgsql"))
- patcher.start()
- self.addCleanup(patcher.stop)
- self.salt_stub = {
- "config.option": Mock(),
- "cmd.run_all": Mock(),
- "file.chown": Mock(),
- "file.remove": Mock(),
- }
- self.addCleanup(delattr, self, "salt_stub")
- return {
- postgres_database: {},
- postgres_group: {},
- postgres_extension: {},
- postgres_schema: {},
- postgres_user: {
- "__grains__": {"os_family": "Linux"},
- "__salt__": self.salt_stub,
- "__opts__": {"test": False},
- },
- }
- def test_present__creation(self):
- # test=True
- with patch.dict(
- postgres_user.__salt__,
- {
- "postgres.role_get": Mock(return_value=None),
- "postgres.user_create": MagicMock(),
- },
- ):
- with patch.dict(postgres_user.__opts__, {"test": True}):
- ret = postgres_user.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "User foo is set to be created",
- "changes": {},
- "name": "foo",
- "result": None,
- },
- )
- self.assertEqual(self.salt_stub["postgres.user_create"].call_count, 0)
- # test=False
- ret = postgres_user.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "The user foo has been created",
- "changes": {"foo": "Present"},
- "name": "foo",
- "result": True,
- },
- )
- self.salt_stub["postgres.user_create"].assert_called_once_with(
- username="foo",
- superuser=None,
- encrypted=True,
- runas=None,
- inherit=None,
- rolepassword=None,
- port=None,
- replication=None,
- host=None,
- createroles=None,
- user=None,
- groups=None,
- maintenance_db=None,
- login=None,
- password=None,
- valid_until=None,
- createdb=None,
- )
- def test_present__update(self):
- # test=True
- with patch.dict(
- postgres_user.__salt__,
- {
- "postgres.role_get": Mock(
- return_value={
- "can create databases": False,
- "can create roles": False,
- "can login": False,
- "can update system catalogs": False,
- "connections": None,
- "defaults variables": {},
- "expiry time": None,
- "inherits privileges": True,
- "replication": False,
- "superuser": False,
- }
- ),
- "postgres.user_update": MagicMock(),
- },
- ):
- with patch.dict(postgres_user.__opts__, {"test": True}):
- ret = postgres_user.present("foo", login=True, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "User foo is set to be updated",
- "changes": {"foo": {"login": True}},
- "name": "foo",
- "result": None,
- },
- )
- self.assertEqual(self.salt_stub["postgres.user_update"].call_count, 0)
- # test=False
- ret = postgres_user.present("foo", login=True, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "The user foo has been updated",
- "changes": {"foo": {"login": True}},
- "name": "foo",
- "result": True,
- },
- )
- self.salt_stub["postgres.user_update"].assert_called_once_with(
- username="foo",
- superuser=None,
- encrypted=True,
- runas=None,
- inherit=None,
- rolepassword=None,
- port=None,
- replication=False,
- host=None,
- createroles=None,
- user=None,
- groups=None,
- maintenance_db=None,
- login=True,
- password=None,
- valid_until=None,
- createdb=None,
- )
- def test_present__no_update(self):
- # test=True
- with patch.dict(
- postgres_user.__salt__,
- {
- "postgres.role_get": Mock(
- return_value={
- "can create databases": False,
- "can create roles": False,
- "can login": False,
- "can update system catalogs": False,
- "connections": None,
- "defaults variables": {},
- "expiry time": None,
- "inherits privileges": True,
- "replication": False,
- "superuser": False,
- }
- ),
- "postgres.user_update": MagicMock(),
- },
- ):
- with patch.dict(postgres_user.__opts__, {"test": True}):
- ret = postgres_user.present("foo", login=False, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "User foo is already present",
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.user_update"].call_count, 0)
- # test=False
- ret = postgres_user.present("foo", login=False, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "User foo is already present",
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.user_update"].call_count, 0)
- class PostgresGroupTestCase(TestCase, LoaderModuleMockMixin):
- def setup_loader_modules(self):
- patcher = patch("salt.utils.path.which", Mock(return_value="/usr/bin/pgsql"))
- patcher.start()
- self.addCleanup(patcher.stop)
- self.salt_stub = {
- "config.option": Mock(),
- "cmd.run_all": Mock(),
- "file.chown": Mock(),
- "file.remove": Mock(),
- }
- self.addCleanup(delattr, self, "salt_stub")
- return {
- postgres_database: {},
- postgres_user: {},
- postgres_extension: {},
- postgres_schema: {},
- postgres_group: {
- "__grains__": {"os_family": "Linux"},
- "__salt__": self.salt_stub,
- "__opts__": {"test": False},
- },
- }
- def test_present__creation(self):
- # test=True
- with patch.dict(
- postgres_group.__salt__,
- {
- "postgres.role_get": Mock(return_value=None),
- "postgres.group_create": MagicMock(),
- },
- ):
- with patch.dict(postgres_group.__opts__, {"test": True}):
- ret = postgres_group.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Group foo is set to be created",
- "changes": {},
- "name": "foo",
- "result": None,
- },
- )
- self.assertEqual(self.salt_stub["postgres.group_create"].call_count, 0)
- # test=False
- ret = postgres_group.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "The group foo has been created",
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- self.salt_stub["postgres.group_create"].assert_called_once_with(
- superuser=None,
- replication=None,
- encrypted=True,
- runas=None,
- inherit=None,
- rolepassword=None,
- port=None,
- groupname="foo",
- host=None,
- createroles=None,
- user=None,
- groups=None,
- maintenance_db=None,
- login=None,
- password=None,
- createdb=None,
- )
- def test_present__update(self):
- # test=True
- with patch.dict(
- postgres_group.__salt__,
- {
- "postgres.role_get": Mock(
- return_value={
- "can create databases": False,
- "can create roles": False,
- "can login": False,
- "can update system catalogs": False,
- "connections": None,
- "defaults variables": {},
- "expiry time": None,
- "inherits privileges": True,
- "replication": False,
- "superuser": False,
- }
- ),
- "postgres.group_update": MagicMock(),
- },
- ):
- with patch.dict(postgres_group.__opts__, {"test": True}):
- ret = postgres_group.present("foo", login=True, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "Group foo is set to be updated",
- "changes": {"foo": {"login": True}},
- "name": "foo",
- "result": None,
- },
- )
- self.assertEqual(self.salt_stub["postgres.group_update"].call_count, 0)
- # test=False
- ret = postgres_group.present("foo", login=True, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "The group foo has been updated",
- "changes": {"foo": {"login": True}},
- "name": "foo",
- "result": True,
- },
- )
- self.salt_stub["postgres.group_update"].assert_called_once_with(
- superuser=None,
- replication=False,
- encrypted=True,
- runas=None,
- inherit=None,
- rolepassword=None,
- port=None,
- groupname="foo",
- host=None,
- createroles=None,
- user=None,
- groups=None,
- maintenance_db=None,
- login=True,
- password=None,
- createdb=None,
- )
- def test_present__no_update(self):
- # test=True
- with patch.dict(
- postgres_group.__salt__,
- {
- "postgres.role_get": Mock(
- return_value={
- "can create databases": False,
- "can create roles": False,
- "can login": False,
- "can update system catalogs": False,
- "connections": None,
- "defaults variables": {},
- "expiry time": None,
- "inherits privileges": True,
- "replication": False,
- "superuser": False,
- }
- ),
- "postgres.group_update": MagicMock(),
- },
- ):
- with patch.dict(postgres_group.__opts__, {"test": True}):
- ret = postgres_group.present("foo", login=False, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "Group foo is already present",
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.group_update"].call_count, 0)
- # test=False
- ret = postgres_group.present("foo", login=False, replication=False)
- self.assertEqual(
- ret,
- {
- "comment": "Group foo is already present",
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.group_update"].call_count, 0)
- class PostgresExtensionTestCase(TestCase, LoaderModuleMockMixin):
- def setup_loader_modules(self):
- patcher = patch("salt.utils.path.which", Mock(return_value="/usr/bin/pgsql"))
- patcher.start()
- self.addCleanup(patcher.stop)
- self.salt_stub = {
- "config.option": Mock(),
- "cmd.run_all": Mock(),
- "file.chown": Mock(),
- "file.remove": Mock(),
- }
- self.addCleanup(delattr, self, "salt_stub")
- return {
- postgres_database: {},
- postgres_user: {},
- postgres_group: {},
- postgres_schema: {},
- postgres_extension: {
- "__grains__": {"os_family": "Linux"},
- "__salt__": self.salt_stub,
- "__opts__": {"test": False},
- },
- }
- def test_present_failed(self):
- """
- scenario of creating upgrading extensions with possible schema and
- version specifications
- """
- with patch.dict(
- postgres_extension.__salt__,
- {
- "postgres.create_metadata": Mock(
- side_effect=[
- [postgresmod._EXTENSION_NOT_INSTALLED],
- [
- postgresmod._EXTENSION_TO_MOVE,
- postgresmod._EXTENSION_INSTALLED,
- ],
- ]
- ),
- "postgres.create_extension": Mock(side_effect=[False, False]),
- },
- ):
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Failed to install extension foo",
- "changes": {},
- "name": "foo",
- "result": False,
- },
- )
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Failed to upgrade extension foo",
- "changes": {},
- "name": "foo",
- "result": False,
- },
- )
- def test_present(self):
- """
- scenario of creating upgrading extensions with possible schema and
- version specifications
- """
- with patch.dict(
- postgres_extension.__salt__,
- {
- "postgres.create_metadata": Mock(
- side_effect=[
- [postgresmod._EXTENSION_NOT_INSTALLED],
- [postgresmod._EXTENSION_INSTALLED],
- [
- postgresmod._EXTENSION_TO_MOVE,
- postgresmod._EXTENSION_INSTALLED,
- ],
- ]
- ),
- "postgres.create_extension": Mock(side_effect=[True, True, True]),
- },
- ):
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "The extension foo has been installed",
- "changes": {"foo": "Installed"},
- "name": "foo",
- "result": True,
- },
- )
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Extension foo is already present",
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "The extension foo has been upgraded",
- "changes": {"foo": "Upgraded"},
- "name": "foo",
- "result": True,
- },
- )
- def test_presenttest(self):
- """
- scenario of creating upgrading extensions with possible schema and
- version specifications
- """
- with patch.dict(
- postgres_extension.__salt__,
- {
- "postgres.create_metadata": Mock(
- side_effect=[
- [postgresmod._EXTENSION_NOT_INSTALLED],
- [postgresmod._EXTENSION_INSTALLED],
- [
- postgresmod._EXTENSION_TO_MOVE,
- postgresmod._EXTENSION_INSTALLED,
- ],
- ]
- ),
- "postgres.create_extension": Mock(side_effect=[True, True, True]),
- },
- ):
- with patch.dict(postgres_extension.__opts__, {"test": True}):
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Extension foo is set to be installed",
- "changes": {},
- "name": "foo",
- "result": None,
- },
- )
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Extension foo is already present",
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- ret = postgres_extension.present("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Extension foo is set to be upgraded",
- "changes": {},
- "name": "foo",
- "result": None,
- },
- )
- def test_absent(self):
- """
- scenario of creating upgrading extensions with possible schema and
- version specifications
- """
- with patch.dict(
- postgres_extension.__salt__,
- {
- "postgres.is_installed_extension": Mock(side_effect=[True, False]),
- "postgres.drop_extension": Mock(side_effect=[True, True]),
- },
- ):
- ret = postgres_extension.absent("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Extension foo has been removed",
- "changes": {"foo": "Absent"},
- "name": "foo",
- "result": True,
- },
- )
- ret = postgres_extension.absent("foo")
- self.assertEqual(
- ret,
- {
- "comment": (
- "Extension foo is not present, " "so it cannot be removed"
- ),
- "changes": {},
- "name": "foo",
- "result": True,
- },
- )
- def test_absent_failed(self):
- """
- scenario of creating upgrading extensions with possible schema and
- version specifications
- """
- with patch.dict(postgres_extension.__opts__, {"test": False}):
- with patch.dict(
- postgres_extension.__salt__,
- {
- "postgres.is_installed_extension": Mock(side_effect=[True, True]),
- "postgres.drop_extension": Mock(side_effect=[False, False]),
- },
- ):
- ret = postgres_extension.absent("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Extension foo failed to be removed",
- "changes": {},
- "name": "foo",
- "result": False,
- },
- )
- def test_absent_failedtest(self):
- with patch.dict(
- postgres_extension.__salt__,
- {
- "postgres.is_installed_extension": Mock(side_effect=[True, True]),
- "postgres.drop_extension": Mock(side_effect=[False, False]),
- },
- ):
- with patch.dict(postgres_extension.__opts__, {"test": True}):
- ret = postgres_extension.absent("foo")
- self.assertEqual(
- ret,
- {
- "comment": "Extension foo is set to be removed",
- "changes": {},
- "name": "foo",
- "result": None,
- },
- )
- class PostgresSchemaTestCase(TestCase, LoaderModuleMockMixin):
- def setup_loader_modules(self):
- patcher = patch("salt.utils.path.which", Mock(return_value="/usr/bin/pgsql"))
- patcher.start()
- self.addCleanup(patcher.stop)
- self.salt_stub = {
- "config.option": Mock(),
- "cmd.run_all": Mock(),
- "file.chown": Mock(),
- "file.remove": Mock(),
- }
- self.addCleanup(delattr, self, "salt_stub")
- return {
- postgres_database: {},
- postgres_user: {},
- postgres_extension: {},
- postgres_group: {},
- postgres_schema: {
- "__grains__": {"os_family": "Linux"},
- "__salt__": self.salt_stub,
- "__opts__": {"test": False},
- },
- }
- def test_present_creation(self):
- with patch.dict(
- postgres_schema.__salt__,
- {
- "postgres.schema_get": Mock(return_value=None),
- "postgres.schema_create": MagicMock(),
- },
- ):
- ret = postgres_schema.present("dbname", "foo")
- self.assertEqual(
- ret,
- {
- "comment": "Schema foo has been created in database dbname",
- "changes": {"foo": "Present"},
- "dbname": "dbname",
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.schema_create"].call_count, 1)
- def test_present_nocreation(self):
- with patch.dict(
- postgres_schema.__salt__,
- {
- "postgres.schema_get": Mock(
- return_value={"foo": {"acl": "", "owner": "postgres"}}
- ),
- "postgres.schema_create": MagicMock(),
- },
- ):
- ret = postgres_schema.present("dbname", "foo")
- self.assertEqual(
- ret,
- {
- "comment": "Schema foo already exists in database dbname",
- "changes": {},
- "dbname": "dbname",
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.schema_create"].call_count, 0)
- def test_absent_remove(self):
- with patch.dict(
- postgres_schema.__salt__,
- {
- "postgres.schema_exists": Mock(return_value=True),
- "postgres.schema_remove": MagicMock(),
- },
- ):
- ret = postgres_schema.absent("dbname", "foo")
- self.assertEqual(
- ret,
- {
- "comment": "Schema foo has been removed from database dbname",
- "changes": {"foo": "Absent"},
- "dbname": "dbname",
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.schema_remove"].call_count, 1)
- def test_absent_noremove(self):
- with patch.dict(
- postgres_schema.__salt__,
- {
- "postgres.schema_exists": Mock(return_value=False),
- "postgres.schema_remove": MagicMock(),
- },
- ):
- ret = postgres_schema.absent("dbname", "foo")
- self.assertEqual(
- ret,
- {
- "comment": "Schema foo is not present in database dbname,"
- " so it cannot be removed",
- "changes": {},
- "dbname": "dbname",
- "name": "foo",
- "result": True,
- },
- )
- self.assertEqual(self.salt_stub["postgres.schema_remove"].call_count, 0)
|