summaryrefslogtreecommitdiff
path: root/test/units/module_utils/facts/hardware/test_sunos_get_uptime_facts.py
blob: 1c852babaa039a0963558119acc1cf474ab60472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import time
from ansible.module_utils.facts.hardware import sunos


def test_sunos_get_uptime_facts(mocker):
    kstat_output = '\nunix:0:system_misc:boot_time\t1548249689\n'

    module_mock = mocker.patch('ansible.module_utils.basic.AnsibleModule')
    module = module_mock()
    module.run_command.return_value = (0, kstat_output, '')

    inst = sunos.SunOSHardware(module)

    with mocker.patch('time.time', return_value=1567052602.5089788):
        expected = int(time.time()) - 1548249689
        result = inst.get_uptime_facts()
        assert expected == result['uptime_seconds']