blob: 4ff0da0b8547d377a161e321db4b839dd1f53c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import unittest.mock as mock
import pytest
import cloudinit.distros.netbsd
@pytest.mark.parametrize("with_pkgin", (True, False))
@mock.patch("cloudinit.distros.netbsd.os")
def test_init(m_os, with_pkgin):
print(with_pkgin)
m_os.path.exists.return_value = with_pkgin
cfg = {}
# patch ifconfig -a
with mock.patch(
"cloudinit.distros.networking.subp.subp", return_value=("", None)
):
distro = cloudinit.distros.netbsd.NetBSD("netbsd", cfg, None)
expectation = ["pkgin", "-y", "full-upgrade"] if with_pkgin else None
assert distro.pkg_cmd_upgrade_prefix == expectation
assert [mock.call("/usr/pkg/bin/pkgin")] == m_os.path.exists.call_args_list
|