1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import unittest
import pytest
import os
import json
from snekbox import Snekbox
from rmq import Rmq
r = Rmq()
#python_binary = os.environ.get('PYTHONEXECUTABLE', '/usr/bin/python3.6')
nsjail = os.sep.join([os.getcwd(), f'binaries{os.sep}nsjail2.6-ubuntu-x86_64'])
snek = Snekbox(nsjail_binary=nsjail)
class SnekTests(unittest.TestCase):
def test_nsjail(self):
result = snek.python3('print("test")')
self.assertEquals(result.strip(), 'test')
def test_memory_error(self):
code = ('x = "*"\n'
'while True:\n'
' x = x * 99\n')
result = snek.python3(code)
self.assertEquals(result.strip(), 'MemoryError')
def test_timeout(self):
code = ('x = "*"\n'
'while True:\n'
' try:\n'
' x = x * 99\n'
' except:\n'
' continue\n')
result = snek.python3(code)
self.assertEquals(result.strip(), 'timed out or memory limit exceeded')
def test_kill(self):
code = ('import subprocess\n'
'print(subprocess.check_output("kill -9 6", shell=True).decode())')
result = snek.python3(code)
if 'ModuleNotFoundError' in result.strip():
self.assertIn('ModuleNotFoundError', result.strip())
else:
self.assertIn('returned non-zero exit status 1.', result.strip())
class RMQTests(unittest.TestCase):
def test_a_publish(self):
message = json.dumps({"snekid": "test", "message": "print('test')"})
result = r.publish(message)
self.assertTrue(result)
def test_b_consume(self):
result = r.consume(callback=snek.message_handler, queue='input', run_once=True)
self.assertEquals(result[2], b'{"snekid": "test", "message": "print(\'test\')"}')
|