Beispiel #1
0
 def test_split_input3(self):
     """test simple input (with quotes)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo "bar x" y')
     self.assertEqual(data, ['foo', 'bar x', 'y'])
Beispiel #2
0
 def test_split_input4(self):
     """test input (multiple quotes)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo "bar\nx" "y z"')
     self.assertEqual(data, ['foo', 'bar\nx', 'y z'])
Beispiel #3
0
 def test_split_input2(self):
     """test simple input (multiple elements)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo bar')
     self.assertEqual(data, ['foo', 'bar'])
Beispiel #4
0
 def test_check_input5(self):
     """test simple quoted input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('"foo"'))
Beispiel #5
0
 def test_check_input7(self):
     """test input with missing quote (multiple quotes)"""
     shell = AbstractShell(MockRenderer())
     # "bar x " is recognized correctly
     self.assertFalse(shell._check_input('foo "bar x " "bla foobar'))
Beispiel #6
0
 def test_check_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo bar'))
Beispiel #7
0
 def test_check_input3(self):
     """test input with mulitple quotes"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo "bar x" "x y z"'))
Beispiel #8
0
 def test_check_input5(self):
     """test simple quoted input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('"foo"'))
Beispiel #9
0
 def test_check_input6(self):
     """test input with missing quote"""
     shell = AbstractShell(MockRenderer())
     self.assertFalse(shell._check_input('foo "bar x bla'))
Beispiel #10
0
 def test_check_input3(self):
     """test input with mulitple quotes"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo "bar x" "x y z"'))
Beispiel #11
0
 def test_check_input4(self):
     """test quote empty str"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('x "" "b"'))
Beispiel #12
0
 def test_check_input2(self):
     """test simple input with quotes"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo "bar x"'))
Beispiel #13
0
 def test_check_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo bar'))
Beispiel #14
0
 def test_split_input5(self):
     """test input (multiple whitespace)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('"foo  bar"')
     self.assertEqual(data, ['foo  bar'])
Beispiel #15
0
 def test_split_input4(self):
     """test input (multiple quotes)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo "bar\nx" "y z"')
     self.assertEqual(data, ['foo', 'bar\nx', 'y z'])
Beispiel #16
0
 def test_check_input7(self):
     """test input with missing quote (multiple quotes)"""
     shell = AbstractShell(MockRenderer())
     # "bar x " is recognized correctly
     self.assertFalse(shell._check_input('foo "bar x " "bla foobar'))
Beispiel #17
0
 def test_split_input5(self):
     """test input (multiple whitespace)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('"foo  bar"')
     self.assertEqual(data, ['foo  bar'])
Beispiel #18
0
 def test_check_input9(self):
     """test incorrect input (missing whitespace before quote)"""
     shell = AbstractShell(MockRenderer())
     self.assertRaises(ShellSyntaxError, shell._check_input, 'foo x"bar"')
Beispiel #19
0
 def test_check_input2(self):
     """test simple input with quotes"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo "bar x"'))
Beispiel #20
0
 def test_check_input11(self):
     """test incorrect input (embedded quote)"""
     shell = AbstractShell(MockRenderer())
     self.assertRaises(ShellSyntaxError, shell._check_input,
                       'foo "bar " x" xy"')
Beispiel #21
0
 def test_check_input4(self):
     """test quote empty str"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('x "" "b"'))
Beispiel #22
0
 def test_split_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo')
     self.assertEqual(data, ['foo'])
Beispiel #23
0
 def test_check_input6(self):
     """test input with missing quote"""
     shell = AbstractShell(MockRenderer())
     self.assertFalse(shell._check_input('foo "bar x bla'))
Beispiel #24
0
 def test_split_input2(self):
     """test simple input (multiple elements)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo bar')
     self.assertEqual(data, ['foo', 'bar'])
Beispiel #25
0
 def test_split_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo')
     self.assertEqual(data, ['foo'])
Beispiel #26
0
 def test_split_input3(self):
     """test simple input (with quotes)"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo "bar x" y')
     self.assertEqual(data, ['foo', 'bar x', 'y'])