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