Example #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)
Example #2
0
 def test_2(self):
     # Block of lines to UTF-8 and back.
     common.request('l1/qp..u8/x')
     common.validate_back(input)
Example #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)
Example #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)
Example #5
0
 def test_2(self):
     # Block of lines to JAVA and back.
     common.request('l1/qp..java')
     common.validate_back(input)
Example #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)
Example #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)
Example #8
0
def test_2():
    # Block of lines from Quoted Printable and back.
    common.request('qp..x1')
    common.validate_back(input)
Example #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)
Example #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)
Example #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)
Example #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)
Example #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)
Example #14
0
 def test_3(self):
     # Single lines to Base64 and back.
     common.request('/../64')
     for input in self.inputs:
         common.validate_back(input)
Example #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)
Example #16
0
 def test_4(self):
     # Block of lines to Base64 and back.
     common.request('/../64')
     common.validate_back(''.join(self.inputs))
Example #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)
Example #18
0
def test_2():
    # Block of lines from Quoted Printable and back.
    common.request('qp..x1')
    common.validate_back(input)
Example #19
0
 def test_2(self):
     # Block of lines to UTF-8 and back.
     common.request('l1/qp..u8/x')
     common.validate_back(input)