From 814b11c5feff09d9fd1595645ffb48094a6fe3b4 Mon Sep 17 00:00:00 2001 From: Fabien Boucher Date: May 13 2020 13:36:44 +0000 Subject: Add test --- diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 0000000..c148b1f --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,15 @@ +- job: + name: my-noop3-parent + description: a test job parent + pre-run: playbooks/pre-noop.yaml + +- job: + name: my-noop3 + description: a test job + parent: my-noop3-parent + run: playbooks/noop.yaml + +- project: + check: + jobs: + - my-noop3 diff --git a/cache_plugins/fedora_jsonfile.py b/cache_plugins/fedora_jsonfile.py new file mode 100644 index 0000000..12b3032 --- /dev/null +++ b/cache_plugins/fedora_jsonfile.py @@ -0,0 +1,71 @@ +# (c) 2014, Brian Coca, Josh Drake, et al +# (c) 2017 Ansible Project +# (c) 2019 Red Hat, Inc. via Fedora +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +# This is a hack to stop caching discovered_interpreter_python + +# Make coding more python3-ish +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +NEVER_CACHE_KEYS = ['discovered_interpreter_python'] + +DOCUMENTATION = ''' + cache: fedora_jsonfile + short_description: JSON formatted files. + description: + - This cache uses JSON formatted, per host, files saved to the filesystem. + version_added: "1.9" + author: Ansible Core (@ansible-core) + options: + _uri: + required: True + description: + - Path in which the cache plugin will save the JSON files + env: + - name: ANSIBLE_CACHE_PLUGIN_CONNECTION + ini: + - key: fact_caching_connection + section: defaults + _prefix: + description: User defined prefix to use when creating the JSON files + env: + - name: ANSIBLE_CACHE_PLUGIN_PREFIX + ini: + - key: fact_caching_prefix + section: defaults + _timeout: + default: 86400 + description: Expiration timeout for the cache plugin data + env: + - name: ANSIBLE_CACHE_PLUGIN_TIMEOUT + ini: + - key: fact_caching_timeout + section: defaults + type: integer +''' + +import codecs +import json + +from ansible.parsing.ajson import AnsibleJSONEncoder, AnsibleJSONDecoder +from ansible.plugins.cache import BaseFileCacheModule + + +class CacheModule(BaseFileCacheModule): + """ + A caching module backed by json files. + """ + + def _load(self, filepath): + # Valid JSON is always UTF-8 encoded. + with codecs.open(filepath, 'r', encoding='utf-8') as f: + return json.load(f, cls=AnsibleJSONDecoder) + + def _dump(self, value, filepath): + for k in NEVER_CACHE_KEYS: + if k in value: + del value[k] + with codecs.open(filepath, 'w', encoding='utf-8') as f: + f.write(json.dumps(value, cls=AnsibleJSONEncoder, sort_keys=True, indent=4)) diff --git a/playbooks/noop.yaml b/playbooks/noop.yaml new file mode 100644 index 0000000..befb5c7 --- /dev/null +++ b/playbooks/noop.yaml @@ -0,0 +1,4 @@ +- hosts: all + tasks: + - name: Test + command: "ls -al" diff --git a/playbooks/pre-noop.yaml b/playbooks/pre-noop.yaml new file mode 100644 index 0000000..befb5c7 --- /dev/null +++ b/playbooks/pre-noop.yaml @@ -0,0 +1,4 @@ +- hosts: all + tasks: + - name: Test + command: "ls -al"