mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
f72bbc5036
Also consolidate pyroute2 network_settings tests into network_settings beacon test module.
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
# coding: utf-8
|
|
|
|
# Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Salt testing libs
|
|
from tests.support.unit import skipIf, TestCase
|
|
from tests.support.mock import NO_MOCK, NO_MOCK_REASON
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
|
|
# Salt libs
|
|
import salt.beacons.avahi_announce as avahi_announce
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class AvahiAnnounceBeaconTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test case for salt.beacons.avahi_announce
|
|
'''
|
|
|
|
def setup_loader_modules(self):
|
|
return {
|
|
avahi_announce: {
|
|
'last_state': {},
|
|
'last_state_extra': {'no_devices': False}
|
|
}
|
|
}
|
|
|
|
def test_non_list_config(self):
|
|
config = {}
|
|
|
|
ret = avahi_announce.validate(config)
|
|
|
|
self.assertEqual(ret, (False, 'Configuration for avahi_announce'
|
|
' beacon must be a list.'))
|
|
|
|
def test_empty_config(self):
|
|
config = [{}]
|
|
|
|
ret = avahi_announce.validate(config)
|
|
|
|
self.assertEqual(ret, (False, 'Configuration for avahi_announce'
|
|
' beacon must contain servicetype, port'
|
|
' and txt items.'))
|