ansible/test/integration/targets
Sam Doran b4b1bf9932
[stable-2.10] user - properly handle password and password lock when used together (#73016) (#73177)
Do the right thing on Linux when password lock and a password hash are provided by writing
out the password hash prepended by the appropriate lock string rather than using -U and -L.
This is the correct way to set and lock the account in one command.

On BSD, run separate commands as appropriate since locking and setting the password cannot
be done in a single action.

FreeBSD requires running several commands to get the account in the desired state. As a result,
the rc, output, and error from all commands need to be combined and evaluated so an accurate
and complete summary can be given at the end of module execution.

* Improve integration tests to cover this scenario.
* Break up user integration tests into smaller files
* Properly lock account when creating a new account and password is supplied

* Simplify rc collection in FreeBSD class
  Since the _handle_lock() method was added, the rc would be set to None, which could make
  task change reporting incorrect. My first attempt to solve this used a set and was a bit too
  complicated. Simplify it my comparing the rc from _handle_lock() and the current value of rc.

* Improve the Linux password hash and locking behavior
  If password lock and hash are provided, set the hash and lock the account by using a password
  hash since -L cannot be used with -p.

* Ensure -U and -L are not combined with -p since they are mutually exclusive to usermod.

* Clarify password_lock behavior..
(cherry picked from commit 264e08f21a)

Co-authored-by: Sam Doran <sdoran@redhat.com>
2021-01-11 13:11:26 -06:00
..
add_host Add intg test to repro #36045 (add_host traceback) (#69912) 2020-06-09 15:25:56 -04:00
ansiballz_python Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
ansible adhoc: Load callbacks before sending v2_playbook_on_start (#67673) 2020-02-25 17:00:08 -05:00
ansible-doc avoid fatal exception on invalid collection name (#72296) (#72570) 2020-12-07 18:37:01 -06:00
ansible-galaxy Collection list site packages (#70173) (#72940) 2021-01-11 00:41:56 -06:00
ansible-galaxy-collection fix downloading collections in git repos and tar.gz artifacts (#70524) (#71000) 2020-07-30 13:37:59 -07:00
ansible-galaxy-collection-scm ansible-galaxy - fix download for subdirs in SCM (#71005) (#71093) 2020-08-27 13:39:54 -05:00
ansible-runner [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
ansible-test Update ansible-test pylint Python support. (#72997) 2021-01-11 00:46:21 -06:00
ansible-test-docker Update ansible-test integration tests. (#69970) 2020-06-09 11:16:48 -07:00
any_errors_fatal
apt Remove incidental_zabbix_host (#72142) 2020-11-06 11:47:09 -06:00
apt_key [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
apt_repository Remove incidental_zabbix_host (#72142) 2020-11-06 11:47:09 -06:00
args
argspec Various intentional tests (#72485) 2020-11-06 11:47:09 -06:00
assemble Fix decrypt argument in assemble module (#70465) (#70560) 2020-07-17 12:48:38 -07:00
assert Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
async Add intentional coverage for an async_wrapper case (#70593) (#70630) 2020-07-17 12:52:45 -07:00
async_extra_data Expand Shippable test matrix. (#66912) 2020-01-29 14:43:27 -08:00
async_fail
become [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
binary
binary_modules Add new arches/OSes for binary_modules tests (#69052) 2020-04-21 00:52:23 -07:00
binary_modules_posix Add new arches/OSes for binary_modules tests (#69052) 2020-04-21 00:52:23 -07:00
binary_modules_winrm
blockinfile [stable-2.10] blockinfile - properly insert block when no trailing new line exists (#72350) (#72360) 2020-12-07 17:32:56 -06:00
blocks Fix play stats when rescue block is a child block (#70922) (#71334) 2020-08-28 12:23:30 -05:00
builtin_vars_prompt Rename tests (#68356) 2020-03-23 11:14:21 -05:00
callback_default make collection callbacks follow normal flow (#59932) (#72227) 2020-10-23 15:54:38 -05:00
changed_when Allow changed/failed mgmt on strategy actions (#70919) (#70968) 2020-07-29 14:32:33 -07:00
check_mode
cli Fix ansible -K become_pass regression (#69629) 2020-05-22 09:34:26 -04:00
collections Fix task get_name to always prepend the role name (#72511) (#72919) 2021-01-11 00:28:57 -06:00
collections_plugin_namespace config: singular ANSIBLE_COLLECTIONS_PATH (#70007) 2020-06-11 11:40:13 -07:00
collections_relative_imports config: singular ANSIBLE_COLLECTIONS_PATH (#70007) 2020-06-11 11:40:13 -07:00
collections_runtime_pythonpath config: singular ANSIBLE_COLLECTIONS_PATH (#70007) 2020-06-11 11:40:13 -07:00
command_shell Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
common_network Remove incidental vmware tests (#72420) 2020-11-06 11:47:09 -06:00
conditionals
config Remove incidental vmware tests (#72420) 2020-11-06 11:47:09 -06:00
connection [stable-2.10] Fix reset_connection paramiko, winrm, psrp (#72688) (#72925) 2021-01-11 00:36:05 -06:00
connection_delegation [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
connection_local
connection_paramiko_ssh Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
connection_posix
connection_psrp psrp - fix hang when copying an empty file (#71649) (#71651) 2020-09-28 00:28:01 -05:00
connection_ssh [stable-2.10] Rebalance CI groups to avoid macOS timeouts (#70126) 2020-06-22 10:19:54 -07:00
connection_windows_ssh
connection_winrm
copy [stable-2.10] Fix string/bytestring comparsion in m_u.basic (#70439) (#73129) 2021-01-11 00:55:15 -06:00
cron [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
dataloader preserve json parsing error (#58461) 2020-05-01 15:03:07 -04:00
debconf Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
debug [2.10] Fix missing ansible.builtin FQCNs in hardcoded action names (#72457) 2020-12-07 16:59:12 -06:00
delegate_to remove redundant remote_user for local setting (#72507) 2020-12-07 18:30:58 -06:00
dict_transformations [stable-2.10] Add intentional coverage for incidental_ec2_instance (#72028) 2020-10-29 07:31:53 -07:00
dnf [stable-2.10] [dnf] Some fixes around filtering (#72483) (#72500) 2020-11-06 08:56:18 -06:00
dpkg_selections [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
egg-info Fix references to old egg-info directory. 2020-03-30 13:56:43 -07:00
embedded_module
environment
error_from_connection
expect [stable-2.10] Constrain pexpect and ptyprocess (#73109) 2021-01-04 13:54:36 -08:00
facts_d
facts_linux_network [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
failed_when
fetch fixed fetch traversal from slurp (#68720) 2020-04-08 14:28:51 -04:00
file [stable-2.10] AnsibleModule.set_mode_if_different: handle symlink is in a sticky directory (#45198) (#72863) 2020-12-07 16:52:40 -06:00
filter_core [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
filter_mathstuff Make filter type errors 'loop friendly' (#70417) (#70574) 2020-07-17 12:51:18 -07:00
filter_urls coverage for filter/urls.py, including fallback to custom implementations (#68412) 2020-03-25 16:23:14 -05:00
filter_urlsplit Split up filter integration tests. (#66962) 2020-01-30 12:49:54 -08:00
find
gathering
gathering_facts dont clobber facts in loop (#71032) (#71095) 2020-08-27 13:39:19 -05:00
get_url wait_for simplehttpserver to come up online 2020-04-28 09:43:07 -07:00
getent Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
git [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
group Test system users and groups. 2020-02-27 21:45:18 -08:00
group_by return changed for group_by (#32057) 2020-06-03 12:46:40 -04:00
groupby_filter
handler_race Split regular and handler results into their own queues (#69498) 2020-05-21 15:55:08 -05:00
handlers Integration tests for notify with variable list (#66423) 2020-02-08 12:41:06 -05:00
hash
hosts_field
ignore_errors
ignore_unreachable
incidental_azure_rm_mariadbserver Second batch of incidental integration tests. (#67765) 2020-02-25 23:18:50 -08:00
incidental_azure_rm_resource Second batch of incidental integration tests. (#67765) 2020-02-25 23:18:50 -08:00
incidental_cloud_init_data_facts [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
incidental_cloudformation support hard coded module_defaults.yml groups for collections (#69919) 2020-06-09 15:38:57 -07:00
incidental_cs_common Second batch of incidental integration tests. (#67765) 2020-02-25 23:18:50 -08:00
incidental_deploy_helper Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_flatpak_remote [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
incidental_inventory_aws_ec2 Second batch of incidental integration tests. (#67765) 2020-02-25 23:18:50 -08:00
incidental_inventory_docker_swarm [stable-2.10] Remove exit code from traps in tests (#72968) 2021-01-11 00:42:18 -06:00
incidental_inventory_foreman Second batch of incidental integration tests. (#67765) 2020-02-25 23:18:50 -08:00
incidental_ios_file First batch of incidental integration tests. (#67717) 2020-02-24 17:31:14 -08:00
incidental_lookup_rabbitmq Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_lvg Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_mongodb_parameter [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
incidental_postgresql_user Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_setup_docker [tests] Make setup_docker clean up better (#71949) (#71959) 2020-09-26 03:41:03 -05:00
incidental_setup_ec2 Second batch of incidental integration tests. (#67765) 2020-02-25 23:18:50 -08:00
incidental_setup_flatpak_remote Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_setup_mongodb Skip mongodb tests on all centos versions. 2020-03-01 10:33:42 -08:00
incidental_setup_postgresql_db Improve stability of postgresql tests. 2020-06-16 16:29:25 -07:00
incidental_setup_rabbitmq Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_setup_tls Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_synchronize Fourth batch of incidental integration tests. (#67873) 2020-02-28 20:37:50 -08:00
incidental_timezone [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
incidental_vyos_config First batch of incidental integration tests. (#67717) 2020-02-24 17:31:14 -08:00
incidental_vyos_lldp_interfaces First batch of incidental integration tests. (#67717) 2020-02-24 17:31:14 -08:00
incidental_vyos_prepare_tests First batch of incidental integration tests. (#67717) 2020-02-24 17:31:14 -08:00
incidental_win_copy Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_data_deduplication Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_dsc Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_lineinfile Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_ping Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_prepare_tests Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_psexec Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_reboot Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_win_security_policy Third batch of incidental integration tests. (#67830) 2020-02-27 16:05:47 -08:00
incidental_xml Deprecation revisited (#69926) 2020-06-09 15:21:19 -07:00
include_import [2.10] Fix missing ansible.builtin FQCNs in hardcoded action names (#72457) 2020-12-07 16:59:12 -06:00
include_parent_role_vars
include_vars [2.10] Fix missing ansible.builtin FQCNs in hardcoded action names (#72457) 2020-12-07 16:59:12 -06:00
include_vars-ad-hoc include_vars - fix stack trace when run ad-hoc with dirs parameter (#66581) 2020-01-28 11:50:34 -05:00
include_when_parent_is_dynamic Add dynamic and static include tests. (#68200) 2020-03-23 11:14:21 -05:00
include_when_parent_is_static Add dynamic and static include tests. (#68200) 2020-03-23 11:14:21 -05:00
includes [2.10] Fix missing ansible.builtin FQCNs in hardcoded action names (#72457) 2020-12-07 16:59:12 -06:00
includes_race Fix IncludedFile equality check (#69524) 2020-06-04 10:41:46 -05:00
infra Flatten the directory hierarchy of modules (#68966) 2020-05-13 19:14:53 -07:00
interpreter_discovery_python Various intentional tests (#72485) 2020-11-06 11:47:09 -06:00
interpreter_discovery_python_delegate_facts Fix delegate_facts with interpreter not being set (#70293) (#70384) 2020-07-17 12:40:00 -07:00
inventory
inventory_ini Make sure ansible_become treated as a boolean (#70484) (#70526) 2020-07-17 12:46:33 -07:00
inventory_script Remove incidental vmware tests (#72420) 2020-11-06 11:47:09 -06:00
inventory_yaml Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
jinja2_native_types native types: properly handle Undefined in nested data (#68432) (#71105) 2020-08-28 07:57:17 -05:00
known_hosts
limit_inventory Rename some integration tests. 2020-02-14 13:34:26 -08:00
lineinfile
lookup_config coverage for lookup_config (#68566) 2020-03-31 09:57:50 -05:00
lookup_dict Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_env Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_file Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_fileglob [stable-2.10] Correct name of fileglob lookup integration test. 2020-07-13 18:15:00 -07:00
lookup_first_found Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_indexed_items Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_ini Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_inventory_hostnames Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_items Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_lines Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_list coverage for lookup_list (#68683) 2020-04-06 13:39:18 -05:00
lookup_nested Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_password Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_pipe Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_random_choice Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_sequence Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_subelements Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_template Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_together Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
lookup_unvault added unvault lookup plugin (#69087) 2020-05-14 11:19:19 -04:00
lookup_url [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
lookup_vars Skip lookup tests on Python 2.6. 2020-03-02 00:06:18 -08:00
loop_control
loops Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
meta_tasks [2.10] Fix missing ansible.builtin FQCNs in hardcoded action names (#72457) 2020-12-07 16:59:12 -06:00
missing_required_lib Various intentional tests (#72485) 2020-11-06 11:47:09 -06:00
module_defaults support hard coded module_defaults.yml groups for collections (#69919) 2020-06-09 15:38:57 -07:00
module_no_log [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
module_precedence [stable-2.10] Rebalance CI groups to avoid macOS timeouts (#70126) 2020-06-22 10:19:54 -07:00
module_tracebacks Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
module_utils Various intentional tests (#72485) 2020-11-06 11:47:09 -06:00
module_utils_Ansible.AccessToken Split C# module utils to their own test target (#67910) 2020-03-02 15:16:31 +10:00
module_utils_Ansible.Basic Deprecation revisited (#69926) 2020-06-09 15:21:19 -07:00
module_utils_Ansible.Become Split C# module utils to their own test target (#67910) 2020-03-02 15:16:31 +10:00
module_utils_Ansible.ModuleUtils.AddType Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.ArgvParser Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.Backup Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.CamelConversion Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.CommandUtil Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.FileUtil Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.Legacy Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.LinkUtil Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.PrivilegeUtil Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.SID Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
module_utils_Ansible.ModuleUtils.WebRequest Ansible.Basic added generic fragment merger for module options (#69719) 2020-05-29 16:11:38 +10:00
module_utils_Ansible.Privilege Split C# module utils to their own test target (#67910) 2020-03-02 15:16:31 +10:00
module_utils_Ansible.Process Split C# module utils to their own test target (#67910) 2020-03-02 15:16:31 +10:00
module_utils_Ansible.Service Split C# module utils to their own test target (#67910) 2020-03-02 15:16:31 +10:00
network_cli Fix network_cli test to use a trap for cleanup (#69762) 2020-05-29 15:45:33 -05:00
no_log Expand Shippable test matrix. (#66912) 2020-01-29 14:43:27 -08:00
noexec [stable-2.10] Fix async interpreter parsing (#72636) (#72923) 2021-01-11 01:02:33 -06:00
old_style_cache_plugins [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
old_style_modules_posix
omit
order
package Enable passing tests on power. 2020-04-20 10:07:54 -07:00
package_facts [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
parsing
path_lookups Split up lookup integration tests. (#67294) 2020-02-10 16:41:45 -08:00
path_with_comma_in_inventory Rename some integration tests. 2020-02-14 13:34:26 -08:00
pause [stable-2.10] pause - do not hang if run in the background (#72065) (#72605) 2020-12-07 18:08:56 -06:00
ping
pip Test pip fix (#72764) 2020-12-01 10:36:48 -06:00
play_iterator Fix --start-at-task when skipping tasks with no name (#68951) 2020-04-21 09:39:17 +02:00
playbook fix internal cases of actions calling unqualified module names (#70818) (#70840) 2020-07-23 10:29:09 -07:00
plugin_config_for_inventory Remove incidental vmware tests (#72420) 2020-11-06 11:47:09 -06:00
plugin_filtering
plugin_loader Intentional coverage, incidental_azure_rm_resource (#71052) (#72159) 2020-10-08 16:16:53 -05:00
plugin_namespace
prepare_http_tests [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
prepare_tests/tasks
pull Use package for pkgng and zypper in tests. 2020-02-11 13:57:01 -08:00
raw update ActionBase._low_level_execute_command to honor executable (#68315) 2020-04-22 11:56:35 -05:00
reboot
rel_plugin_loading
remote_tmp [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
replace
retry_task_name_in_callback Rename callback_retry_task_name test. 2020-02-18 11:16:37 -08:00
roles
rpm_key Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
run_modules
script
service [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
service_facts [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
set_fact [2.10] Fix missing ansible.builtin FQCNs in hardcoded action names (#72457) 2020-12-07 16:59:12 -06:00
setup_cron
setup_deb_repo
setup_epel/tasks [tests] fix fallout from dnf gpg fix (#71552) 2020-08-31 18:24:00 -05:00
setup_gnutar [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
setup_nobody
setup_paramiko [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
setup_passlib/tasks
setup_pexpect [stable-2.10] Constrain pexpect and ptyprocess (#73109) 2021-01-04 13:54:36 -08:00
setup_remote_constraints
setup_remote_tmp_dir Split handler tasks for setup_remote_tmp_dir. 2020-02-07 21:29:20 -08:00
setup_rpm_repo Update integration tests to support rpmfluff-0.6 (#71155) (#71159) 2020-08-07 14:52:17 -05:00
setup_win_printargv Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
shell Improve test compatibility with ansible-base. (#67325) 2020-02-11 16:18:34 -08:00
slurp
special_vars
stat
strategy_linear
subversion [stable-2.10] Test changes to allow using "macos" test image (#71849) (#71861) 2020-09-28 00:33:11 -05:00
systemd [stable-2.10] systemd - do not overwrite unit name when searching (#72985) (#73013) 2021-01-11 00:47:00 -06:00
tags Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
task_ordering
tasks Add more integration tests. (#68972) 2020-04-16 00:53:08 -07:00
template Provide more information in AnsibleUndefinedVariable (#71666) (#71876) 2020-09-28 00:34:38 -05:00
template_jinja2_latest Testing: Add support for AIX platform (#65802) 2020-01-29 15:56:51 -08:00
templating_lookups [2.10] Handle post_validate templating errors and fix tests (#70240) (#70389) 2020-07-17 12:41:43 -07:00
templating_settings
test_core [stable-2.10] Add integration tests for test plugins. (#70576) 2020-07-13 18:15:21 -07:00
test_files [stable-2.10] Add integration tests for test plugins. (#70576) 2020-07-13 18:15:21 -07:00
test_mathstuff [stable-2.10] Add integration tests for test plugins. (#70576) 2020-07-13 18:15:21 -07:00
throttle
unarchive [stable-2.10] Changes required for macOS 10.15 (#71841) (#71954) 2020-10-23 15:18:24 -05:00
undefined Remove incidental tower integration tests (#72461) 2020-11-06 11:47:09 -06:00
unicode Ensure --version works with non-ascii project path (#66624) 2020-05-29 14:42:44 -04:00
until
uri do not return the body even if it failed (#69706) 2020-06-01 09:55:38 -04:00
user [stable-2.10] user - properly handle password and password lock when used together (#73016) (#73177) 2021-01-11 13:11:26 -06:00
var_blending
var_precedence
var_templating [2.10] template connection variables accessed directly before using (#70657) (#70688) 2020-07-21 11:19:52 -07:00
vault [stable-2.10] Allow single vault encrypted values to be used directly as module parameters. Fixes #68275 (#70607) (#70641) 2020-07-17 12:54:32 -07:00
wait_for [stable-2.10] wait_for - ignore psutil related errors (#72401) (#72406) 2020-12-07 17:33:34 -06:00
wait_for_connection Test the delay option in wait_for_connection. 2020-02-25 19:27:18 -08:00
want_json_modules_posix
win_async_wrapper
win_become
win_exec_wrapper windows - fix up env var quoting for unicode single quotes (#68968) 2020-04-16 20:24:23 +10:00
win_fetch powershell - fix quoting values (#71411) (#71449) 2020-08-28 12:22:22 -05:00
win_module_utils Separated ps module_util test targets, added WebRequest tests (#67914) 2020-03-02 16:12:08 +10:00
win_raw
win_script
windows-minimal Create a dedicated windows-minimal test target. (#67987) 2020-03-03 18:36:37 -08:00
windows-paths
yum Add RHEL 7.9 (#72558) - 2.10 (#72568) 2020-12-01 12:51:15 -08:00
yum_repository [centos6] update container for EOL (#72795) 2020-12-02 16:04:38 -06:00