mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
postgresql_lang module: fixed doc formatting, added aliases, pg_utils, added missing CI tests (#54672)
* postgresql_lang: fixed doc * postgresql_lang: add pg_utils * postgresql_lang: added return value - queries * postgresql_lang: added CI tests * postgresql_lang: restricted CI using CentOS * postgresql_lang: fixed typos in CI comments
This commit is contained in:
parent
2176b53a55
commit
48ec8d13a0
3 changed files with 379 additions and 95 deletions
|
@ -12,84 +12,105 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
'status': ['preview'],
|
'status': ['preview'],
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
DOCUMENTATION = r'''
|
||||||
DOCUMENTATION = '''
|
|
||||||
---
|
---
|
||||||
module: postgresql_lang
|
module: postgresql_lang
|
||||||
short_description: Adds, removes or changes procedural languages with a PostgreSQL database.
|
short_description: Adds, removes or changes procedural languages with a PostgreSQL database
|
||||||
description:
|
description:
|
||||||
- Adds, removes or changes procedural languages with a PostgreSQL database.
|
- Adds, removes or changes procedural languages with a PostgreSQL database.
|
||||||
- This module allows you to add a language, remote a language or change the trust
|
- This module allows you to add a language, remote a language or change the trust
|
||||||
relationship with a PostgreSQL database. The module can be used on the machine
|
relationship with a PostgreSQL database.
|
||||||
where executed or on a remote host.
|
- The module can be used on the machine where executed or on a remote host.
|
||||||
- When removing a language from a database, it is possible that dependencies prevent
|
- When removing a language from a database, it is possible that dependencies prevent
|
||||||
the database from being removed. In that case, you can specify casade to
|
the database from being removed. In that case, you can specify casade to
|
||||||
automatically drop objects that depend on the language (such as functions in the
|
automatically drop objects that depend on the language (such as functions in the
|
||||||
language). In case the language can't be deleted because it is required by the
|
language).
|
||||||
|
- In case the language can't be deleted because it is required by the
|
||||||
database system, you can specify fail_on_drop=no to ignore the error.
|
database system, you can specify fail_on_drop=no to ignore the error.
|
||||||
- Be carefull when marking a language as trusted since this could be a potential
|
- Be carefull when marking a language as trusted since this could be a potential
|
||||||
security breach. Untrusted languages allow only users with the PostgreSQL superuser
|
security breach. Untrusted languages allow only users with the PostgreSQL superuser
|
||||||
privilege to use this language to create new functions.
|
privilege to use this language to create new functions.
|
||||||
version_added: "1.7"
|
- For more information about PostgreSQL languages see the official documentation
|
||||||
|
U(https://www.postgresql.org/docs/current/sql-createlanguage.html),
|
||||||
|
U(https://www.postgresql.org/docs/current/sql-alterlanguage.html),
|
||||||
|
U(https://www.postgresql.org/docs/current/sql-droplanguage.html).
|
||||||
|
version_added: '1.7'
|
||||||
options:
|
options:
|
||||||
lang:
|
lang:
|
||||||
description:
|
description:
|
||||||
- name of the procedural language to add, remove or change
|
- Name of the procedural language to add, remove or change.
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
|
aliases:
|
||||||
|
- name
|
||||||
trust:
|
trust:
|
||||||
description:
|
description:
|
||||||
- make this language trusted for the selected db
|
- Make this language trusted for the selected db.
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
db:
|
db:
|
||||||
description:
|
description:
|
||||||
- name of database where the language will be added, removed or changed
|
- Name of database to connect to and where the language will be added, removed or changed.
|
||||||
|
type: str
|
||||||
|
aliases:
|
||||||
|
- login_db
|
||||||
force_trust:
|
force_trust:
|
||||||
description:
|
description:
|
||||||
- marks the language as trusted, even if it's marked as untrusted in pg_pltemplate.
|
- Marks the language as trusted, even if it's marked as untrusted in pg_pltemplate.
|
||||||
- use with care!
|
- Use with care!
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
fail_on_drop:
|
fail_on_drop:
|
||||||
description:
|
description:
|
||||||
- if C(yes), fail when removing a language. Otherwise just log and continue
|
- If C(yes), fail when removing a language. Otherwise just log and continue.
|
||||||
- in some cases, it is not possible to remove a language (used by the db-system). When dependencies block the removal, consider using C(cascade).
|
- In some cases, it is not possible to remove a language (used by the db-system).
|
||||||
|
- When dependencies block the removal, consider using C(cascade).
|
||||||
type: bool
|
type: bool
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
cascade:
|
cascade:
|
||||||
description:
|
description:
|
||||||
- when dropping a language, also delete object that depend on this language.
|
- When dropping a language, also delete object that depend on this language.
|
||||||
- only used when C(state=absent).
|
- Only used when C(state=absent).
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
port:
|
port:
|
||||||
description:
|
description:
|
||||||
- Database port to connect to.
|
- Database port to connect to.
|
||||||
default: 5432
|
default: 5432
|
||||||
|
type: int
|
||||||
|
aliases:
|
||||||
|
- login_port
|
||||||
login_user:
|
login_user:
|
||||||
description:
|
description:
|
||||||
- User used to authenticate with PostgreSQL
|
- User to authenticate with PostgreSQL.
|
||||||
|
type: str
|
||||||
default: postgres
|
default: postgres
|
||||||
login_password:
|
login_password:
|
||||||
description:
|
description:
|
||||||
- Password used to authenticate with PostgreSQL (must match C(login_user))
|
- Password used to authenticate with PostgreSQL (must match C(login_user)).
|
||||||
|
type: str
|
||||||
login_host:
|
login_host:
|
||||||
description:
|
description:
|
||||||
- Host running PostgreSQL where you want to execute the actions.
|
- Host running PostgreSQL where you want to execute the actions.
|
||||||
|
type: str
|
||||||
default: localhost
|
default: localhost
|
||||||
session_role:
|
session_role:
|
||||||
version_added: "2.8"
|
version_added: '2.8'
|
||||||
description: |
|
description:
|
||||||
Switch to session_role after connecting. The specified session_role must be a role that the current login_user is a member of.
|
- Switch to session_role after connecting.
|
||||||
Permissions checking for SQL commands is carried out as though the session_role were the one that had logged in originally.
|
- The specified session_role must be a role that the current login_user is a member of.
|
||||||
|
- Permissions checking for SQL commands is carried out as though the session_role were the one that had logged in originally.
|
||||||
|
type: str
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- The state of the language for the selected database
|
- The state of the language for the selected database.
|
||||||
|
type: str
|
||||||
default: present
|
default: present
|
||||||
choices: [ "present", "absent" ]
|
choices: [ absent, present ]
|
||||||
login_unix_socket:
|
login_unix_socket:
|
||||||
description:
|
description:
|
||||||
- Path to a Unix domain socket for local connections.
|
- Path to a Unix domain socket for local connections.
|
||||||
|
type: str
|
||||||
version_added: '2.8'
|
version_added: '2.8'
|
||||||
ssl_mode:
|
ssl_mode:
|
||||||
description:
|
description:
|
||||||
|
@ -98,81 +119,98 @@ options:
|
||||||
- See U(https://www.postgresql.org/docs/current/static/libpq-ssl.html) for
|
- See U(https://www.postgresql.org/docs/current/static/libpq-ssl.html) for
|
||||||
more information on the modes.
|
more information on the modes.
|
||||||
- Default of C(prefer) matches libpq default.
|
- Default of C(prefer) matches libpq default.
|
||||||
|
type: str
|
||||||
default: prefer
|
default: prefer
|
||||||
choices: ["disable", "allow", "prefer", "require", "verify-ca", "verify-full"]
|
choices: [ allow, disable, prefer, require, verify-ca, verify-full ]
|
||||||
version_added: '2.8'
|
version_added: '2.8'
|
||||||
ca_cert:
|
ca_cert:
|
||||||
description:
|
description:
|
||||||
- Specifies the name of a file containing SSL certificate authority (CA)
|
- Specifies the name of a file containing SSL certificate authority (CA)
|
||||||
certificate(s). If the file exists, the server's certificate will be
|
certificate(s). If the file exists, the server's certificate will be
|
||||||
verified to be signed by one of these authorities.
|
verified to be signed by one of these authorities.
|
||||||
|
type: str
|
||||||
version_added: '2.8'
|
version_added: '2.8'
|
||||||
aliases: [ ssl_rootcert ]
|
aliases: [ ssl_rootcert ]
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- The default authentication assumes that you are either logging in as or
|
- The default authentication assumes that you are either logging in as or
|
||||||
sudo'ing to the postgres account on the host.
|
sudo'ing to the postgres account on the host.
|
||||||
- This module uses psycopg2, a Python PostgreSQL database adapter. You must
|
- This module uses psycopg2, a Python PostgreSQL database adapter. You must
|
||||||
ensure that psycopg2 is installed on the host before using this module. If
|
ensure that psycopg2 is installed on the host before using this module.
|
||||||
the remote host is the PostgreSQL server (which is the default case), then
|
- If the remote host is the PostgreSQL server (which is the default case), then
|
||||||
PostgreSQL must also be installed on the remote host. For Ubuntu-based
|
PostgreSQL must also be installed on the remote host.
|
||||||
systems, install the postgresql, libpq-dev, and python-psycopg2 packages
|
- For Ubuntu-based systems, install the postgresql, libpq-dev, and python-psycopg2 packages
|
||||||
on the remote host before using this module.
|
on the remote host before using this module.
|
||||||
requirements: [ psycopg2 ]
|
requirements: [ psycopg2 ]
|
||||||
|
|
||||||
author:
|
author:
|
||||||
- "Jens Depuydt (@jensdepuydt)"
|
- Jens Depuydt (@jensdepuydt)
|
||||||
- "Thomas O'Donnell (@andytom)"
|
- Thomas O'Donnell (@andytom)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = r'''
|
||||||
# Add language pltclu to database testdb if it doesn't exist:
|
- name: Add language pltclu to database testdb if it doesn't exist
|
||||||
- postgresql_lang db=testdb lang=pltclu state=present
|
postgresql_lang: db=testdb lang=pltclu state=present
|
||||||
|
|
||||||
# Add language pltclu to database testdb if it doesn't exist and mark it as trusted:
|
# Add language pltclu to database testdb if it doesn't exist and mark it as trusted.
|
||||||
# Marks the language as trusted if it exists but isn't trusted yet
|
# Marks the language as trusted if it exists but isn't trusted yet.
|
||||||
# force_trust makes sure that the language will be marked as trusted
|
# force_trust makes sure that the language will be marked as trusted
|
||||||
- postgresql_lang:
|
- name: Add language pltclu to database testdb if it doesn't exist and mark it as trusted
|
||||||
|
postgresql_lang:
|
||||||
db: testdb
|
db: testdb
|
||||||
lang: pltclu
|
lang: pltclu
|
||||||
state: present
|
state: present
|
||||||
trust: yes
|
trust: yes
|
||||||
force_trust: yes
|
force_trust: yes
|
||||||
|
|
||||||
# Remove language pltclu from database testdb:
|
- name: Remove language pltclu from database testdb
|
||||||
- postgresql_lang:
|
postgresql_lang:
|
||||||
db: testdb
|
db: testdb
|
||||||
lang: pltclu
|
lang: pltclu
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
# Remove language pltclu from database testdb and remove all dependencies:
|
- name: Remove language pltclu from database testdb and remove all dependencies
|
||||||
- postgresql_lang:
|
postgresql_lang:
|
||||||
db: testdb
|
db: testdb
|
||||||
lang: pltclu
|
lang: pltclu
|
||||||
state: absent
|
state: absent
|
||||||
cascade: yes
|
cascade: yes
|
||||||
|
|
||||||
# Remove language c from database testdb but ignore errors if something prevents the removal:
|
- name: Remove language c from database testdb but ignore errors if something prevents the removal
|
||||||
- postgresql_lang:
|
postgresql_lang:
|
||||||
db: testdb
|
db: testdb
|
||||||
lang: pltclu
|
lang: pltclu
|
||||||
state: absent
|
state: absent
|
||||||
fail_on_drop: no
|
fail_on_drop: no
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
RETURN = r'''
|
||||||
|
queries:
|
||||||
|
description: List of executed queries.
|
||||||
|
returned: always
|
||||||
|
type: list
|
||||||
|
sample: ['CREATE LANGUAGE "acme"']
|
||||||
|
version_added: '2.8'
|
||||||
|
'''
|
||||||
|
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
PSYCOPG2_IMP_ERR = None
|
PSYCOPG2_IMP_ERR = None
|
||||||
try:
|
try:
|
||||||
import psycopg2
|
import psycopg2
|
||||||
|
postgresqldb_found = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
PSYCOPG2_IMP_ERR = traceback.format_exc()
|
PSYCOPG2_IMP_ERR = traceback.format_exc()
|
||||||
postgresqldb_found = False
|
postgresqldb_found = False
|
||||||
else:
|
|
||||||
postgresqldb_found = True
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
|
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
|
||||||
|
from ansible.module_utils.postgres import postgres_common_argument_spec
|
||||||
from ansible.module_utils.six import iteritems
|
from ansible.module_utils.six import iteritems
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
from ansible.module_utils.database import pg_quote_identifier
|
from ansible.module_utils.database import pg_quote_identifier
|
||||||
|
|
||||||
|
executed_queries = []
|
||||||
|
|
||||||
|
|
||||||
def lang_exists(cursor, lang):
|
def lang_exists(cursor, lang):
|
||||||
"""Checks if language exists for db"""
|
"""Checks if language exists for db"""
|
||||||
|
@ -190,8 +228,9 @@ def lang_istrusted(cursor, lang):
|
||||||
|
|
||||||
def lang_altertrust(cursor, lang, trust):
|
def lang_altertrust(cursor, lang, trust):
|
||||||
"""Changes if language is trusted for db"""
|
"""Changes if language is trusted for db"""
|
||||||
query = "UPDATE pg_language SET lanpltrusted = %s WHERE lanname=%s"
|
query = "UPDATE pg_language SET lanpltrusted = '%s' WHERE lanname = '%s'" % (trust, lang)
|
||||||
cursor.execute(query, (trust, lang))
|
executed_queries.append(query)
|
||||||
|
cursor.execute(query)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
@ -201,6 +240,7 @@ def lang_add(cursor, lang, trust):
|
||||||
query = 'CREATE TRUSTED LANGUAGE "%s"' % lang
|
query = 'CREATE TRUSTED LANGUAGE "%s"' % lang
|
||||||
else:
|
else:
|
||||||
query = 'CREATE LANGUAGE "%s"' % lang
|
query = 'CREATE LANGUAGE "%s"' % lang
|
||||||
|
executed_queries.append(query)
|
||||||
cursor.execute(query)
|
cursor.execute(query)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -210,9 +250,11 @@ def lang_drop(cursor, lang, cascade):
|
||||||
cursor.execute("SAVEPOINT ansible_pgsql_lang_drop")
|
cursor.execute("SAVEPOINT ansible_pgsql_lang_drop")
|
||||||
try:
|
try:
|
||||||
if cascade:
|
if cascade:
|
||||||
cursor.execute("DROP LANGUAGE \"%s\" CASCADE" % lang)
|
query = "DROP LANGUAGE \"%s\" CASCADE" % lang
|
||||||
else:
|
else:
|
||||||
cursor.execute("DROP LANGUAGE \"%s\"" % lang)
|
query = "DROP LANGUAGE \"%s\"" % lang
|
||||||
|
executed_queries.append(query)
|
||||||
|
cursor.execute(query)
|
||||||
except Exception:
|
except Exception:
|
||||||
cursor.execute("ROLLBACK TO SAVEPOINT ansible_pgsql_lang_drop")
|
cursor.execute("ROLLBACK TO SAVEPOINT ansible_pgsql_lang_drop")
|
||||||
cursor.execute("RELEASE SAVEPOINT ansible_pgsql_lang_drop")
|
cursor.execute("RELEASE SAVEPOINT ansible_pgsql_lang_drop")
|
||||||
|
@ -222,26 +264,25 @@ def lang_drop(cursor, lang, cascade):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
argument_spec = postgres_common_argument_spec()
|
||||||
argument_spec=dict(
|
argument_spec.update(
|
||||||
login_user=dict(default="postgres"),
|
db=dict(type="str", required=True, aliases=["login_db"]),
|
||||||
login_password=dict(default="", no_log=True),
|
port=dict(type="int", default=5432, aliases=["login_port"]),
|
||||||
login_host=dict(default=""),
|
lang=dict(type="str", required=True, aliases=["name"]),
|
||||||
login_unix_socket=dict(default=""),
|
state=dict(type="str", default="present", choices=["absent", "present"]),
|
||||||
db=dict(required=True),
|
trust=dict(type="bool", default="no"),
|
||||||
port=dict(default='5432'),
|
force_trust=dict(type="bool", default="no"),
|
||||||
lang=dict(required=True),
|
cascade=dict(type="bool", default="no"),
|
||||||
state=dict(default="present", choices=["absent", "present"]),
|
fail_on_drop=dict(type="bool", default="yes"),
|
||||||
trust=dict(type='bool', default='no'),
|
|
||||||
force_trust=dict(type='bool', default='no'),
|
|
||||||
cascade=dict(type='bool', default='no'),
|
|
||||||
fail_on_drop=dict(type='bool', default='yes'),
|
|
||||||
ssl_mode=dict(default='prefer', choices=[
|
ssl_mode=dict(default='prefer', choices=[
|
||||||
'disable', 'allow', 'prefer', 'require', 'verify-ca', 'verify-full']),
|
'allow', 'disable', 'prefer', 'require', 'verify-ca', 'verify-full']),
|
||||||
ca_cert=dict(default=None, aliases=['ssl_rootcert']),
|
ca_cert=dict(default=None, aliases=["ssl_rootcert"]),
|
||||||
session_role=dict(),
|
session_role=dict(type="str"),
|
||||||
),
|
)
|
||||||
supports_check_mode=True
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=argument_spec,
|
||||||
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
db = module.params["db"]
|
db = module.params["db"]
|
||||||
|
@ -336,6 +377,7 @@ def main():
|
||||||
db_connection.commit()
|
db_connection.commit()
|
||||||
|
|
||||||
kw['changed'] = changed
|
kw['changed'] = changed
|
||||||
|
kw['queries'] = executed_queries
|
||||||
module.exit_json(**kw)
|
module.exit_json(**kw)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -839,9 +839,18 @@
|
||||||
# Test postgresql_membership module
|
# Test postgresql_membership module
|
||||||
- include: postgresql_membership.yml
|
- include: postgresql_membership.yml
|
||||||
|
|
||||||
# postgresql_table module tests
|
# Test postgresql_table module
|
||||||
- include: postgresql_table.yml
|
- include: postgresql_table.yml
|
||||||
|
|
||||||
|
# Test postgresql_lang module.
|
||||||
|
# To implement tests, it needs to install some additional packages
|
||||||
|
# that may cause problems on different distributions,
|
||||||
|
# so I restricted the tests using CentOS because the results
|
||||||
|
# depend only on Postgres version
|
||||||
|
# (CentOS 6 repo contains the oldest PG version in these tests - 9.0):
|
||||||
|
- include: postgresql_lang.yml
|
||||||
|
when: ansible_distribution == 'CentOS'
|
||||||
|
|
||||||
# dump/restore tests per format
|
# dump/restore tests per format
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- include: state_dump_restore.yml test_fixture=user file=dbdata.sql
|
- include: state_dump_restore.yml test_fixture=user file=dbdata.sql
|
||||||
|
|
233
test/integration/targets/postgresql/tasks/postgresql_lang.yml
Normal file
233
test/integration/targets/postgresql/tasks/postgresql_lang.yml
Normal file
|
@ -0,0 +1,233 @@
|
||||||
|
# Copyright: (c) 2019, Andrew Klychkov (@Andersson007) <aaklychkov@mail.ru>
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
# Preparation for tests:
|
||||||
|
- name: postgresql_lang - install lang plperl
|
||||||
|
become: yes
|
||||||
|
package:
|
||||||
|
name: "{{ item }}"
|
||||||
|
state: present
|
||||||
|
with_items:
|
||||||
|
- postgresql-plperl
|
||||||
|
- postgresql-plpython
|
||||||
|
|
||||||
|
###############
|
||||||
|
# Do main tests
|
||||||
|
#
|
||||||
|
|
||||||
|
# Create language in check_mode:
|
||||||
|
- name: postgresql_lang - create plperl in check_mode
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
name: plperl
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
check_mode: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.changed == true
|
||||||
|
- result.queries == []
|
||||||
|
|
||||||
|
- name: postgresql_lang - check that lang doesn't exist after previous step, rowcount must be 0
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_query:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
query: "SELECT 1 FROM pg_language WHERE lanname = 'plperl'"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.rowcount == 0
|
||||||
|
|
||||||
|
# Create language:
|
||||||
|
- name: postgresql_lang - create plperl
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
name: plperl
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.changed == true
|
||||||
|
- result.queries == ['CREATE LANGUAGE "plperl"']
|
||||||
|
|
||||||
|
- name: postgresql_lang - check that lang exists after previous step
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_query:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
query: "SELECT 1 FROM pg_language WHERE lanname = 'plperl'"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.rowcount == 1
|
||||||
|
|
||||||
|
# Drop language in check_mode:
|
||||||
|
- name: postgresql_lang - drop plperl in check_mode
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
name: plperl
|
||||||
|
state: absent
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
check_mode: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.changed == true
|
||||||
|
- result.queries == []
|
||||||
|
|
||||||
|
- name: postgresql_lang - check that lang exists after previous step, rowcount must be 1
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_query:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
query: "SELECT 1 FROM pg_language WHERE lanname = 'plperl'"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.rowcount == 1
|
||||||
|
|
||||||
|
# Drop language:
|
||||||
|
- name: postgresql_lang - drop plperl
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
name: plperl
|
||||||
|
state: absent
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.changed == true
|
||||||
|
- result.queries == ['DROP LANGUAGE "plperl"']
|
||||||
|
|
||||||
|
- name: postgresql_lang - check that lang doesn't exist after previous step, rowcount must be 0
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_query:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
query: "SELECT 1 FROM pg_language WHERE lanname = 'plperl'"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.rowcount == 0
|
||||||
|
|
||||||
|
# Check fail_on_drop yes
|
||||||
|
- name: postgresql_lang - drop c language to check fail_on_drop yes
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
name: c
|
||||||
|
state: absent
|
||||||
|
fail_on_drop: yes
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.failed == true
|
||||||
|
|
||||||
|
# Check fail_on_drop no
|
||||||
|
- name: postgresql_lang - drop c language to check fail_on_drop no
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
name: c
|
||||||
|
state: absent
|
||||||
|
fail_on_drop: no
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.failed == false
|
||||||
|
|
||||||
|
# Create trusted language:
|
||||||
|
- name: postgresql_lang - create plpythonu
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
name: plpythonu
|
||||||
|
trust: yes
|
||||||
|
force_trust: yes
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.changed == true
|
||||||
|
- result.queries == ['CREATE TRUSTED LANGUAGE "plpythonu"', "UPDATE pg_language SET lanpltrusted = 'True' WHERE lanname = 'plpythonu'"]
|
||||||
|
|
||||||
|
- name: postgresql_lang - check that lang exists and it's trusted after previous step
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_query:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
query: "SELECT 1 FROM pg_language WHERE lanname = 'plpythonu' AND lanpltrusted = 't'"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.rowcount == 1
|
||||||
|
|
||||||
|
# Drop language cascade, tests of aliases:
|
||||||
|
- name: postgresql_lang - drop plpythonu cascade
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_lang:
|
||||||
|
login_db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
login_port: 5432
|
||||||
|
lang: plpythonu
|
||||||
|
state: absent
|
||||||
|
cascade: yes
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.changed == true
|
||||||
|
- result.queries == ['DROP LANGUAGE "plpythonu" CASCADE']
|
||||||
|
|
||||||
|
- name: postgresql_lang - check that lang doesn't exist after previous step, rowcount must be 0
|
||||||
|
become_user: "{{ pg_user }}"
|
||||||
|
become: yes
|
||||||
|
postgresql_query:
|
||||||
|
db: postgres
|
||||||
|
login_user: "{{ pg_user }}"
|
||||||
|
query: "SELECT 1 FROM pg_language WHERE lanname = 'plpythonu'"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result.rowcount == 0
|
Loading…
Reference in a new issue