2013-05-08 18:14:42 +02:00
|
|
|
import autopath
|
|
|
|
from py.test import raises
|
|
|
|
|
|
|
|
from tiramisu.config import Config
|
|
|
|
from tiramisu.option import DomainnameOption, OptionDescription
|
|
|
|
|
|
|
|
|
|
|
|
def test_domainname():
|
|
|
|
d = DomainnameOption('d', '')
|
2013-05-10 09:27:54 +02:00
|
|
|
e = DomainnameOption('e', '', "toto.com")
|
|
|
|
od = OptionDescription('a', '', [d, e])
|
2013-05-08 18:14:42 +02:00
|
|
|
c = Config(od)
|
2013-05-10 22:32:42 +02:00
|
|
|
c.read_write()
|
2013-05-08 18:14:42 +02:00
|
|
|
c.d = 'toto.com'
|
|
|
|
raises(ValueError, "c.d = 'toto'")
|
|
|
|
c.d = 'toto3.com'
|
|
|
|
c.d = 'toto3.3la'
|
|
|
|
raises(ValueError, "c.d = '3toto.com'")
|
|
|
|
c.d = 'toto.co3'
|
|
|
|
raises(ValueError, "c.d = 'toto_super.com'")
|
|
|
|
c.d = 'toto-.com'
|
|
|
|
|
|
|
|
|
|
|
|
def test_domainname_netbios():
|
|
|
|
d = DomainnameOption('d', '', type_='netbios')
|
2013-05-10 09:27:54 +02:00
|
|
|
e = DomainnameOption('e', '', "toto", type_='netbios')
|
|
|
|
od = OptionDescription('a', '', [d, e])
|
2013-05-08 18:14:42 +02:00
|
|
|
c = Config(od)
|
2013-05-10 22:32:42 +02:00
|
|
|
c.read_write()
|
2013-05-08 18:14:42 +02:00
|
|
|
raises(ValueError, "c.d = 'toto.com'")
|
|
|
|
c.d = 'toto'
|
|
|
|
raises(ValueError, "c.d = 'domainnametoolong'")
|
|
|
|
|
|
|
|
|
|
|
|
def test_domainname_hostname():
|
|
|
|
d = DomainnameOption('d', '', type_='hostname')
|
2013-05-10 09:27:54 +02:00
|
|
|
e = DomainnameOption('e', '', "toto", type_='hostname')
|
|
|
|
od = OptionDescription('a', '', [d, e])
|
2013-05-08 18:14:42 +02:00
|
|
|
c = Config(od)
|
2013-05-10 22:32:42 +02:00
|
|
|
c.read_write()
|
2013-05-08 18:14:42 +02:00
|
|
|
raises(ValueError, "c.d = 'toto.com'")
|
|
|
|
c.d = 'toto'
|
|
|
|
c.d = 'domainnametoolong'
|