You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/units/plugins
Clark Boylan a65e34ce77 Fix synchronize retries (#18535)
* Fix synchronize retries

The synchronize module munges its task args on every invocation of
run(). This was problematic because the munged data was not fit for use
by a second pass of the synchronize module. Correct this by using a copy
of the task args on every invocation of run() so that the original args
are not affected.

Local testing using this playbook seems to confirm that things work as
expected:

  - hosts: all
  tasks:
    - delay: 2
      register: task_result
      retries: 1
      until: task_result.rc == 0
      synchronize:
        dest: /tmp/out
        mode: pull
        src: /tmp/nonexistent/

fixes #18281

* Update synchroncization fixture assertions

When we started operating on a copy of the task args the test assertions
were no longer asserting things about the munged state but of the
pristine state. Convert the copy of task args to a class member so that
it can be compared against later in testing and update the assertions to
check this munged copy.
* Shuffle objects around for cleaner testing

Attach the temporary args dict to the task rather than the action as
this makes updating the existing tests cleaner.
9 years ago
..
action Fix synchronize retries (#18535) 9 years ago
cache Add empty-init code-smell script. (#18406) 9 years ago
callback More test coverage for plugins/callback/__init__ (#18020) 9 years ago
connection add back reverted change to network_cli (#18761) 9 years ago
filter Add empty-init code-smell script. (#18406) 9 years ago
inventory Add empty-init code-smell script. (#18406) 9 years ago
lookup Add empty-init code-smell script. (#18406) 9 years ago
shell Add empty-init code-smell script. (#18406) 9 years ago
strategy Reworking iterator logic regarding failed states during always 9 years ago
vars Add empty-init code-smell script. (#18406) 9 years ago
__init__.py Add empty-init code-smell script. (#18406) 9 years ago
test_plugins.py Fix ziploader for the cornercase of ansible invoking ansible. 10 years ago