salt/tests/integration/states
Pedro Algarvio 14282d69f6 Use proper keys since Python's base64 in Py3.11 is more picky
```
❯ artifacts/salt/bin/python3
Python 3.10.11 (main, May  5 2023, 02:31:54) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b64decode("AAAAB3NzaC1kcQ9J5bYTEyZ==", validate=True)
b'\x00\x00\x00\x07ssh-dq\x0fI\xe5\xb6\x13\x13&'
```
```
$ artifacts/salt/bin/python3
Python 3.11.3 (main, May  5 2023, 02:31:40) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b64decode("AAAAB3NzaC1kcQ9J5bYTEyZ==", validate=True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/tmp/testing/artifacts/salt/lib/python3.11/base64.py", line 88, in b64decode
    return binascii.a2b_base64(s, strict_mode=validate)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
binascii.Error: Excess data after padding
```

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
2023-06-19 23:35:51 +01:00
..
__init__.py Pyupgrade and drop six 2021-07-06 09:04:28 -04:00
test_alternatives.py Stop using @skipIf 2022-12-06 06:03:10 +00:00
test_archive.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_boto_sns.py Stop using @skipIf 2022-12-06 06:03:10 +00:00
test_bower.py Replace the usage of @skipIf(...) 2022-12-06 06:03:10 +00:00
test_chocolatey.py Replace @skipIf(not platform.is_windows(), ...) usage 2022-12-06 06:03:10 +00:00
test_cmd.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_compiler.py Remove dead test code 2021-09-23 10:15:06 -04:00
test_git.py Use packaging for version parsing. looseversion when needed only. 2023-01-09 12:31:51 -07:00
test_handle_error.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_handle_iorder.py Pyupgrade and drop six 2021-07-06 09:04:28 -04:00
test_host.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_keystone.py Stop using @skipIf 2022-12-06 06:03:10 +00:00
test_lxd.py [3006.x] rebase test labels (#64053) 2023-04-15 18:19:58 -07:00
test_lxd_container.py lxd: include devices in container tests 2023-05-31 18:57:31 +00:00
test_lxd_image.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_lxd_profile.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_match.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_mysql_database.py Stop using @skipIf 2022-12-06 06:03:10 +00:00
test_mysql_grants.py Stop using @skipIf 2022-12-06 06:03:10 +00:00
test_network.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_rabbitmq_user.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_rabbitmq_vhost.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_reg.py Replace @skipIf(not platform.is_windows(), ...) usage 2022-12-06 06:03:10 +00:00
test_renderers.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_service.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
test_ssh_auth.py Use proper keys since Python's base64 in Py3.11 is more picky 2023-06-19 23:35:51 +01:00
test_ssh_known_hosts.py Updating the github.com fingerprint. 2023-03-25 11:24:49 +00:00
test_supervisord.py Stop using @skipIf 2022-12-06 06:03:10 +00:00
test_x509.py Stop using @skipIf 2022-12-06 06:03:10 +00:00