Skip to content

Commit

Permalink
New list type DnsHostList
Browse files Browse the repository at this point in the history
  • Loading branch information
muflone committed Oct 28, 2018
1 parent ced1e36 commit 98ffd0b
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pykerio/lists/DnsHostList.py
@@ -0,0 +1,28 @@
##
# Project: PyKerio
# Description: API for Kerio products
# Author: Fabio Castelli (Muflone) <muflone@muflone.com>
# Copyright: 2018 Fabio Castelli
# License: GPL-2+
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
##

from . import BaseList

from ..structs.DnsHost import DnsHost


class DnsHostList(BaseList):
def __init__(self, *args, **kwargs):
BaseList.__init__(self, DnsHost, *args, **kwargs)
1 change: 1 addition & 0 deletions pykerio/lists/__init__.py
Expand Up @@ -25,6 +25,7 @@
from .CollisionList import CollisionList
from .CreateResultList import CreateResultList
from .DnsForwarderList import DnsForwarderList
from .DnsHostList import DnsHostList
from .ErrorList import ErrorList
from .FilenameGroupList import FilenameGroupList
from .HistogramDataList import HistogramDataList
Expand Down
49 changes: 49 additions & 0 deletions tests/lists/TestCase_DnsHostList.py
@@ -0,0 +1,49 @@
##
# Project: PyKerio
# Description: API for Kerio products
# Author: Fabio Castelli (Muflone) <muflone@muflone.com>
# Copyright: 2018 Fabio Castelli
# License: GPL-2+
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
##

import unittest

import pykerio


class TestCase_DnsHostList(unittest.TestCase):
def test_01_DnsHostList(self):
"""
Test DnsHostList
"""
testlist = pykerio.lists.DnsHostList()
self.assertEquals(len(testlist), 0)

kid = pykerio.types.KId('10')
ip = pykerio.types.IpAddress('8.8.8.8')
hosts = 'dns.google.com'
teststruct = pykerio.structs.DnsHost({
'enabled': True,
'id': kid,
'ip': ip,
'hosts': hosts,
'description': 'Google public DNS'})
testlist.append(teststruct)
self.assertEquals(len(testlist), 1)

self.assertEquals(testlist[-1], teststruct)

testlist.clear()
self.assertEquals(len(testlist), 0)

0 comments on commit 98ffd0b

Please sign in to comment.