summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/lookup_url (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ansible-test - Update http-test-container (#83272)Matt Clay2024-05-193-32/+30
| | | | | | | | | | | | | | | | * Disable cipher suite integration tests When the client and server both support TLS 1.3, cipher suite selection is effectively a no-op. Python provides no way to disable TLS 1.3 cipher suites, and no way to prefer user-selected cipher suites. Since TLS 1.3 includes a mandatory cipher suite, this makes it impossible to induce a cipher suite related error when using TLS 1.3. * Update multipart form-data integration test * Fix netrc integration tests * Update HTTP test host substring * ansible-test - Update http-test-container
* Fix typos in url lookup plugin options (#81587)John HU2023-08-291-0/+24
|
* Fix nested jinja statements in integration tests (#81591)Matt Martz2023-08-292-6/+6
|
* Use `skip/macos` instead of `skip/macos/13.2` (#80343)Matt Clay2023-03-291-1/+1
| | | The reason for the skip won't be going away with future versions of macOS.
* Fix url lookup test to use test container (#80284)Matt Clay2023-03-231-2/+2
|
* Revert "🧪 Switch macOS 13.2 to 12.0 in CI (#80145)" (#80156)Sviatoslav Sydorenko2023-03-081-1/+1
| | | This reverts commit 326e70c02a2563e13a68565c31ce42477ef4874f.
* 🧪 Switch macOS 13.2 to 12.0 in CI (#80145)Sviatoslav Sydorenko2023-03-061-1/+1
| | | | | | | | * 🧪 Switch macOS 13.2 to 12.0 in CI The former revealed unexpected flakiness while the latter is the previous value that was used to be stable. This is a temporary revert. * Skip lookup_url integration test under macOS 12.0
* Add macOS 13 to CI and ansible-test (#79508)Sviatoslav Sydorenko2023-03-031-1/+8
| | | | | | | | | | | | | | | | | | * ✨ Add macOS 13.2 to `ansible-test` * 🧪 Replace macOS 12.0 with 13.2 in the CI matrix * Skip `lookup_url` under macOS 13.2 This is due to https://wefearchange.org/2018/11/forkmacos.rst.html that manifests itself as follows: TASK [lookup_url : Test that retrieving a url works] *************************** objc[15394]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. objc[15394]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in t he fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug. ERROR! A worker was found in a dead state * 📝 Extend ansible-test change note w/ macOS 13.2
* Remove trailing spaces from lines in YAML (#80032)Matt Clay2023-02-182-2/+2
|
* Add missing newlines to YAML files (#80031)Matt Clay2023-02-181-1/+1
|
* uri: added use_netrc argument to allow ignoring netrc (#74397) (#78569)Artur2022-09-122-0/+40
|
* Allow selection of TLS/SSL ciphers (#78650)Matt Martz2022-09-081-0/+23
| | | | * Allow selection of TLS/SSL ciphers. Fixes #78633 * Never pass None as the password. Fixes #53373
* Re-organize CI test groups for POSIX tests. (#77420)Matt Clay2022-08-041-1/+1
| | | | | | * `context/target` tests must be in groups 1 - 2. * `context/controller` tests must be in groups 3 - 5. This makes it easier to efficiently organize groups and balance test runtimes.
* Add macOS 12 to CI (#76328)Sam Doran2021-11-201-0/+1
| | | * Disable lookup_url test of macOS 12
* ansible-test - split controller/target testing (#75605)Matt Clay2021-09-211-2/+0
|
* Changes required for macOS 10.15 (#71841)Matt Martz2020-09-251-0/+1
| | | | | | | | | | | | | | * Use default group of staff on macos to prevent sudo issues * Install gnu-tar for macos in git and unarchive tests * Enable timezone module to support py3 on macos * If the virtualenv command is missing, try python -m virtualenv * Install passlib for filter_core on macos * Install paramiko via pip on macos for paramiko tests * Normalize discovered python interpreter on macos * Get pip tests passing, by ensuring we have wheel installed * Create /etc/ansible for ca certs on mac, list lookup_url as destructive * Fixups for CA certs * Include macos * Dynamically get cafile instead of hardcoding the path
* Skip lookup tests on Python 2.6.Matt Clay2020-03-021-0/+1
| | | | Lookups are only executed on the controller and Python 2.6 is no longer supported on the controller.
* Split up lookup integration tests. (#67294)Matt Clay2020-02-113-0/+33
* Split up lookup integration tests. * Rename lookup_paths integration test. This will avoid confusing it for a test of the `paths` lookup plugin, which does not exist. * Fix lookup_pipe integration test. The test now verifies it receives the correct output. Adding a second task also causes code coverage to be properly registered for the lookup plugin. * Rename ini lookup test to match plugin name. * Update sanity ignore path.