Validate network interface name when parsing the kickstart (#1081982)
[pykickstart.git] / tests / commands / dmraid.py
blob13477becda2cadd28109fa840f104784715d66a6
1 # Andy Lindeberg <alindebe@redhat.com>
3 # Copyright 2009 Red Hat, Inc.
5 # This copyrighted material is made available to anyone wishing to use, modify,
6 # copy, or redistribute it subject to the terms and conditions of the GNU
7 # General Public License v.2. This program is distributed in the hope that it
8 # will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
9 # implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 # See the GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License along with
13 # this program; if not, write to the Free Software Foundation, Inc., 51
14 # Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat
15 # trademarks that are incorporated in the source code or documentation are not
16 # subject to the GNU General Public License and may only be used or replicated
17 # with the express permission of Red Hat, Inc.
20 import unittest
21 from tests.baseclass import *
23 from pykickstart.errors import *
24 from pykickstart.commands.dmraid import *
26 class FC6_TestCase(CommandTest):
27 command = "dmraid"
29 def runTest(self):
30 # pass
31 self.assert_parse("dmraid --name=onamai --dev=debaisi", "dmraid --name=onamai --dev=\"debaisi\"\n")
32 self.assert_parse("dmraid --name onamai --dev debaisi", "dmraid --name=onamai --dev=\"debaisi\"\n")
33 self.assert_parse("dmraid --dev=deb1,deb2 --name onamai", "dmraid --name=onamai --dev=\"deb1,deb2\"\n")
34 self.assert_parse("dmraid --dev \"deb1,deb2\" --name=onamai", "dmraid --name=onamai --dev=\"deb1,deb2\"\n")
36 # fail
37 self.assert_parse_error("dmraid", KickstartValueError)
38 self.assert_parse_error("dmraid --name", KickstartParseError)
39 self.assert_parse_error("dmraid --dev", KickstartParseError)
40 self.assert_parse_error("dmraid --name=onamai", KickstartValueError)
41 self.assert_parse_error("dmraid --name onamai", KickstartValueError)
42 self.assert_parse_error("dmraid --dev debaisi", KickstartValueError)
43 self.assert_parse_error("dmraid --dev=deb1,deb2", KickstartValueError)
44 self.assert_parse_error("dmraid --magic", KickstartParseError)
46 if __name__ == "__main__":
47 unittest.main()