Exemplo n.º 1
0
 def test_d1_4(self):
     # Block of lines to Decimal-1 and back.
     common.request('../d1')
     input = ''.join(self.inputs)
     common.validate_back(input)
Exemplo n.º 2
0
 def test_2(self):
     # Block of lines to UTF-8 and back.
     common.request('l1/qp..u8/x')
     common.validate_back(input)
Exemplo n.º 3
0
 def test_o4_4(self):
     # Block of lines to Octal-4 and back.
     common.request('../o4')
     input = ''.join(self.inputs)
     common.validate_back(input)
Exemplo n.º 4
0
 def test_d1_3(self):
     # Single lines to Decimal-1 and back.
     common.request('../d1')
     for input in self.inputs:
         common.validate_back(input)
Exemplo n.º 5
0
 def test_2(self):
     # Block of lines to JAVA and back.
     common.request('l1/qp..java')
     common.validate_back(input)
Exemplo n.º 6
0
 def test_o4_3(self):
     # Single lines to Octal-4 and back.
     common.request('../o4')
     for input in self.inputs:
         common.validate_back(input)
Exemplo n.º 7
0
 def test_d1_4(self):
     # Block of lines to Decimal-1 and back.
     common.request('../d1')
     input = ''.join(self.inputs)
     common.validate_back(input)
Exemplo n.º 8
0
def test_2():
    # Block of lines from Quoted Printable and back.
    common.request('qp..x1')
    common.validate_back(input)
Exemplo n.º 9
0
 def test_o4_4(self):
     # Block of lines to Octal-4 and back.
     common.request('../o4')
     input = ''.join(self.inputs)
     common.validate_back(input)
Exemplo n.º 10
0
 def test_d1_3(self):
     # Single lines to Decimal-1 and back.
     common.request('../d1')
     for input in self.inputs:
         common.validate_back(input)
Exemplo n.º 11
0
 def test_o4_3(self):
     # Single lines to Octal-4 and back.
     common.request('../o4')
     for input in self.inputs:
         common.validate_back(input)
Exemplo n.º 12
0
 def test_x4_4(self):
     # Block of lines to Hexadecimal-4 and back.
     common.request('../x4')
     input = ''.join(self.inputs)
     common.validate_back(input)
Exemplo n.º 13
0
 def test_x4_3(self):
     # Single lines to Hexadecimal-4 and back.
     common.request('../x4')
     for input in self.inputs:
         common.validate_back(input)
Exemplo n.º 14
0
 def test_3(self):
     # Single lines to Base64 and back.
     common.request('/../64')
     for input in self.inputs:
         common.validate_back(input)
Exemplo n.º 15
0
 def test_x4_3(self):
     # Single lines to Hexadecimal-4 and back.
     common.request('../x4')
     for input in self.inputs:
         common.validate_back(input)
Exemplo n.º 16
0
 def test_4(self):
     # Block of lines to Base64 and back.
     common.request('/../64')
     common.validate_back(''.join(self.inputs))
Exemplo n.º 17
0
 def test_x4_4(self):
     # Block of lines to Hexadecimal-4 and back.
     common.request('../x4')
     input = ''.join(self.inputs)
     common.validate_back(input)
Exemplo n.º 18
0
def test_2():
    # Block of lines from Quoted Printable and back.
    common.request('qp..x1')
    common.validate_back(input)
Exemplo n.º 19
0
 def test_2(self):
     # Block of lines to UTF-8 and back.
     common.request('l1/qp..u8/x')
     common.validate_back(input)