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