mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 10:10:31 -07:00
* adds simple implementation of adding and removing android sdk packages
* adds package update
* adds simple installed packages parsing
* moves parsing logic to a separate class
* adds absent state for sdkmanager packages and setup for tests
* adds output for installing and removing packages
* removes version from Package object since it is not possible to specify version for a package while using sdkmanager
* adds 'latest' state
* adds tests
* fixes crash when sdkmanager is invoked from python with LC_ALL=C
* fixes latest state
* adds sdk_root parameter
* adds channel parameter
* simplifies regexps, removes unused named groups
* minor refactoring of sdkmanager parsing
* adds java dependency variable for different distributions
* adds RETURN documentation
* adds check for nonexisting package
* adds check for non-accepted licenses
* removes excessive methods from sdkmanager
* removes unused 'update' module parameter, packages may be updated using 'latest' state
* minor refactoring
* adds EXAMPLES doc section
* adds DOCUMENTATION section and license headers
* fixes formatting issues
* removes diff_params
* adds maintainer
* fixes sanity check issues in sdkmanager
* adds java dependency for macos and moves some tests to a separate FreeBSD configuration
* fixes dependencies setup for OSX
* fixes dependencies setup for OSX (2)
* fixes dependencies setup for OSX (3)
* Apply minor suggestions from code review
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
* applies code review suggestions
* changes force_lang from C.UTF-8 to auto in sdkmanager (as per discussion https://github.com/ansible-collections/community.general/pull/9236#discussion_r1881114326)
* Revert "changes force_lang from C.UTF-8 to auto in sdkmanager (as per discussion https://github.com/ansible-collections/community.general/pull/9236#discussion_r1881114326)"
This reverts commit 619f28dd58
.
* fixes some more comments from review
* minor sanity issue fix
* uses the 'changed' test instead of checking the 'changed' attribute
* adds 'accept_licenses' parameter. Installation is now performed independently for each package specified.
* removes "Accept licenses" task from examples
* fixes docs sanity issues
* applies minor suggestions from code review
* fixes regexps. The previous version didn't match versions like "32.1.0 rc1". Also, this allows to simplify the parsing logic as there is no need to skip table headers anymore.
* renamed sdkmanager.py to android_sdkmanager.py
* applies minor suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* updates BOTMETA
* reordered BOTMETA
---------
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: Install sources;android-26 (FreeBSD)
|
|
android_sdk:
|
|
name: sources;android-26
|
|
accept_licenses: true
|
|
state: present
|
|
register: sources_android_26_installed
|
|
|
|
- name: Install sources;android-26 (FreeBSD)
|
|
android_sdk:
|
|
name: sources;android-26
|
|
state: present
|
|
register: sources_android_26_installed2
|
|
|
|
- name: Stat build-tools (FreeBSD)
|
|
stat:
|
|
path: "{{ android_sdk_location }}/sources/android-26"
|
|
register: sources_android_26
|
|
|
|
- name: Delete sources;android-26 (FreeBSD)
|
|
android_sdk:
|
|
name: sources;android-26
|
|
state: absent
|
|
register: sources_android_26_deleted
|
|
|
|
- name: Delete sources;android-26 second time (FreeBSD)
|
|
android_sdk:
|
|
name: sources;android-26
|
|
state: absent
|
|
register: sources_android_26_deleted2
|
|
|
|
- name: Install a package to a new root (FreeBSD)
|
|
android_sdk:
|
|
name: sources;android-26
|
|
accept_licenses: true
|
|
state: present
|
|
sdk_root: "{{ remote_tmp_dir }}"
|
|
register: new_root_package
|
|
|
|
- name: Check package is installed (FreeBSD)
|
|
stat:
|
|
path: "{{ remote_tmp_dir }}/sources/android-26"
|
|
register: new_root_package_stat
|
|
|
|
- name: Install a package from canary channel (FreeBSD)
|
|
android_sdk:
|
|
name: sources;android-26
|
|
accept_licenses: true
|
|
state: present
|
|
channel: canary
|
|
register: package_canary
|
|
|
|
- name: Run tests (FreeBSD)
|
|
assert:
|
|
that:
|
|
- sources_android_26.stat.exists
|
|
- sources_android_26_installed is changed
|
|
- sources_android_26_installed2 is not changed
|
|
- sources_android_26_deleted is changed
|
|
- sources_android_26_deleted2 is not changed
|
|
- new_root_package is changed
|
|
- new_root_package_stat.stat.exists
|
|
- package_canary is changed
|