Exemple #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'])
Exemple #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'])
Exemple #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'])
Exemple #4
0
 def test_check_input5(self):
     """test simple quoted input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('"foo"'))
Exemple #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'))
Exemple #6
0
 def test_check_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo bar'))
Exemple #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"'))
Exemple #8
0
 def test_check_input5(self):
     """test simple quoted input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('"foo"'))
Exemple #9
0
 def test_check_input6(self):
     """test input with missing quote"""
     shell = AbstractShell(MockRenderer())
     self.assertFalse(shell._check_input('foo "bar x bla'))
Exemple #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"'))
Exemple #11
0
 def test_check_input4(self):
     """test quote empty str"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('x "" "b"'))
Exemple #12
0
 def test_check_input2(self):
     """test simple input with quotes"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo "bar x"'))
Exemple #13
0
 def test_check_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo bar'))
Exemple #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'])
Exemple #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'])
Exemple #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'))
Exemple #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'])
Exemple #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"')
Exemple #19
0
 def test_check_input2(self):
     """test simple input with quotes"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('foo "bar x"'))
Exemple #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"')
Exemple #21
0
 def test_check_input4(self):
     """test quote empty str"""
     shell = AbstractShell(MockRenderer())
     self.assertTrue(shell._check_input('x "" "b"'))
Exemple #22
0
 def test_split_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo')
     self.assertEqual(data, ['foo'])
Exemple #23
0
 def test_check_input6(self):
     """test input with missing quote"""
     shell = AbstractShell(MockRenderer())
     self.assertFalse(shell._check_input('foo "bar x bla'))
Exemple #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'])
Exemple #25
0
 def test_split_input1(self):
     """test simple input"""
     shell = AbstractShell(MockRenderer())
     data = shell._split_input('foo')
     self.assertEqual(data, ['foo'])
Exemple #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'])