blob: 7ad0e809346c8a825fa5c5bb39c003dded8895a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
"""Integration test for lp-1813396
Ensure gpg is called with no tty flag.
"""
import pytest
from tests.integration_tests.instances import IntegrationInstance
from tests.integration_tests.log_utils import verify_ordered_items_in_text
USER_DATA = """\
#cloud-config
apt:
sources:
cloudinit:
source: 'deb [arch=amd64] http://ppa.launchpad.net/cloud-init-dev/daily/ubuntu focal main'
keyserver: keyserver.ubuntu.com
keyid: E4D304DF
""" # noqa: E501
@pytest.mark.sru_2020_11
@pytest.mark.user_data(USER_DATA)
def test_gpg_no_tty(client: IntegrationInstance):
log = client.read_from_file('/var/log/cloud-init.log')
to_verify = [
"Running command ['gpg', '--no-tty', "
"'--keyserver=keyserver.ubuntu.com', '--recv-keys', 'E4D304DF'] "
"with allowed return codes [0] (shell=False, capture=True)",
"Imported key 'E4D304DF' from keyserver 'keyserver.ubuntu.com'",
"finish: modules-config/config-apt-configure: SUCCESS",
]
verify_ordered_items_in_text(to_verify, log)
|