summaryrefslogtreecommitdiff
path: root/tests/integration_tests/modules/test_ubuntu_autoinstall.py
blob: d340afc565608cf70d07a570a19656a4d6a33c65 (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
"""Integration tests for cc_ubuntu_autoinstall happy path"""

import pytest

USER_DATA = """\
#cloud-config
autoinstall:
  version: 1
  cloudinitdoesnotvalidateotherkeyschema: true
snap:
  commands:
    - snap install subiquity --classic
"""


LOG_MSG = "Valid autoinstall schema. Config will be processed by subiquity"


@pytest.mark.ubuntu
@pytest.mark.user_data(USER_DATA)
class TestUbuntuAutoinstall:
    def test_autoinstall_schema_valid_when_snap_present(self, class_client):
        """autoinstall directives will pass when snap is present"""
        assert "subiquity" in class_client.execute(["snap", "list"]).stdout
        log = class_client.read_from_file("/var/log/cloud-init.log")
        assert LOG_MSG in log