blob: d56ca320e2b578510d0619cfed05bb1c69735858 (
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
|
"""Integration test for LP: #1886531
This test replicates the failure condition (absent /etc/fstab) on all releases
by removing it in a bootcmd; this runs well before the part of cloud-init which
causes the failure.
The only required assertion is that cloud-init does not emit a WARNING to the
log: this indicates that the fstab parsing code has not failed.
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1886531
"""
import pytest
from tests.integration_tests.util import verify_clean_log
USER_DATA = """\
#cloud-config
bootcmd:
- rm -f /etc/fstab
"""
class TestLp1886531:
@pytest.mark.user_data(USER_DATA)
def test_lp1886531(self, client):
log_content = client.read_from_file("/var/log/cloud-init.log")
verify_clean_log(log_content)
|