1 | #!/usr/bin/python |
---|
2 | |
---|
3 | # This file is part of PARPG. |
---|
4 | |
---|
5 | # PARPG is free software: you can redistribute it and/or modify |
---|
6 | # it under the terms of the GNU General Public License as published by |
---|
7 | # the Free Software Foundation, either version 3 of the License, or |
---|
8 | # (at your option) any later version. |
---|
9 | |
---|
10 | # PARPG is distributed in the hope that it will be useful, |
---|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
13 | # GNU General Public License for more details. |
---|
14 | |
---|
15 | # You should have received a copy of the GNU General Public License |
---|
16 | # along with PARPG. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | |
---|
18 | |
---|
19 | import unittest |
---|
20 | from scripts.console import Console |
---|
21 | |
---|
22 | class test_console(unittest.TestCase): |
---|
23 | def setUp(self): |
---|
24 | self.con=Console(None) |
---|
25 | self.invalString="Invalid command, enter help for more information" |
---|
26 | pass |
---|
27 | |
---|
28 | def tearDown(self): |
---|
29 | pass |
---|
30 | |
---|
31 | def testConsoleCommandHelp(self): |
---|
32 | """ Test the help console command """ |
---|
33 | |
---|
34 | self.assertNotEqual(self.con.handleHelp("help"),self.invalString) |
---|
35 | self.assertNotEqual(self.con.handleConsoleCommand("help"), |
---|
36 | self.invalString) |
---|
37 | |
---|
38 | def testConsoleCommandPython(self): |
---|
39 | """ Test the python console command """ |
---|
40 | self.assertEqual(self.con.handlePython("python 1+1"),"2") |
---|
41 | self.assertEqual(self.con.handleConsoleCommand("python 1+1"),"2") |
---|
42 | |
---|
43 | def testInvalid(self): |
---|
44 | """Test an invalid console command """ |
---|
45 | |
---|
46 | self.assertEqual(self.con.handleConsoleCommand("invalid"), |
---|
47 | self.invalString) |
---|
48 | |
---|