Onionr/onionr/tests.py

213 lines
6.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
'''
Onionr - P2P Microblogging Platform & Social network
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
'''
2018-03-03 22:18:57 +00:00
import unittest, sys, os, base64, tarfile, shutil, simplecrypt, logger, btc
class OnionrTests(unittest.TestCase):
def testPython3(self):
if sys.version_info.major != 3:
2018-01-26 07:22:48 +00:00
logger.debug('Python version: ' + sys.version_info.major)
self.assertTrue(False)
else:
self.assertTrue(True)
def testNone(self):
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
2018-01-26 07:22:48 +00:00
logger.info('Running simple program run test...')
2018-03-03 22:18:57 +00:00
2018-02-22 07:24:25 +00:00
blank = os.system('./onionr.py --version')
if blank != 0:
self.assertTrue(False)
else:
self.assertTrue(True)
def testPeer_a_DBCreation(self):
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
2018-01-26 07:22:48 +00:00
logger.info('Running peer db creation test...')
2018-03-03 22:18:57 +00:00
2018-01-10 03:50:38 +00:00
if os.path.exists('data/peers.db'):
os.remove('data/peers.db')
import core
myCore = core.Core()
myCore.createPeerDB()
if os.path.exists('data/peers.db'):
self.assertTrue(True)
else:
self.assertTrue(False)
def testPeer_b_addPeerToDB(self):
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
2018-01-26 07:22:48 +00:00
logger.info('Running peer db insertion test...')
2018-03-03 22:18:57 +00:00
import core
myCore = core.Core()
if not os.path.exists('data/peers.db'):
myCore.createPeerDB()
2018-02-21 09:32:31 +00:00
if myCore.addPeer('6M5MXL237OK57ITHVYN5WGHANPGOMKS5C3PJLHBBNKFFJQOIDOJA====') and not myCore.addPeer('NFXHMYLMNFSAU==='):
self.assertTrue(True)
else:
self.assertTrue(False)
2018-01-10 03:50:38 +00:00
def testData_b_Encrypt(self):
self.assertTrue(True)
return
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
2018-01-26 07:22:48 +00:00
logger.info('Running data dir encrypt test...')
2018-03-03 22:18:57 +00:00
2018-01-07 08:55:44 +00:00
import core
2018-01-08 09:25:32 +00:00
myCore = core.Core()
myCore.dataDirEncrypt('password')
if os.path.exists('data-encrypted.dat'):
self.assertTrue(True)
else:
self.assertTrue(False)
2018-01-10 03:50:38 +00:00
def testData_a_Decrypt(self):
self.assertTrue(True)
return
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
2018-01-26 07:22:48 +00:00
logger.info('Running data dir decrypt test...')
2018-03-03 22:18:57 +00:00
2018-01-08 09:25:32 +00:00
import core
myCore = core.Core()
myCore.dataDirDecrypt('password')
2018-01-10 03:50:38 +00:00
if os.path.exists('data/'):
2018-01-08 09:25:32 +00:00
self.assertTrue(True)
else:
self.assertTrue(False)
2018-03-03 22:18:57 +00:00
def testConfig(self):
logger.debug('-'*26 + '\n')
logger.info('Running simple configuration test...')
import config
config.check()
config.reload()
configdata = str(config.get_config())
config.set('testval', 1337)
if not config.get('testval', None) is 1337:
self.assertTrue(False)
config.set('testval')
if not config.get('testval', None) is None:
self.assertTrue(False)
config.save()
config.reload()
if not str(config.get_config()) == configdata:
self.assertTrue(False)
self.assertTrue(True)
def testBitcoinNode(self):
logger.debug('-'*26 + '\n')
logger.info('Running bitcoin node test...')
sbitcoin = btc.OnionrBTC()
def testPluginReload(self):
logger.debug('-'*26 + '\n')
logger.info('Running simple plugin reload test...')
2018-03-03 07:10:27 +00:00
import onionrplugins
try:
onionrplugins.reload('test')
self.assertTrue(True)
except:
self.assertTrue(False)
2018-03-03 22:18:57 +00:00
def testPluginStopStart(self):
logger.debug('-'*26 + '\n')
logger.info('Running simple plugin restart test...')
import onionrplugins
try:
onionrplugins.start('test')
onionrplugins.stop('test')
self.assertTrue(True)
except:
self.assertTrue(False)
def testPluginEvent(self):
logger.debug('-'*26 + '\n')
logger.info('Running plugin event test...')
import onionrplugins as plugins, onionrevents as events
plugins.start('test')
if not events.call(plugins.get_plugin('test'), 'test'):
self.assertTrue(False)
events.event('test', data = {'tests': self})
self.assertTrue(True)
def testQueue(self):
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
2018-01-26 07:22:48 +00:00
logger.info('Running daemon queue test...')
2018-03-03 22:18:57 +00:00
# test if the daemon queue can read/write data
import core
myCore = core.Core()
2018-01-10 03:50:38 +00:00
if not os.path.exists('data/queue.db'):
myCore.daemonQueue()
while True:
command = myCore.daemonQueue()
if command == False:
2018-01-27 00:52:20 +00:00
logger.debug('The queue is empty (false)')
break
else:
2018-01-27 00:52:20 +00:00
logger.debug(command[0])
myCore.daemonQueueAdd('testCommand', 'testData')
command = myCore.daemonQueue()
if command[0] == 'testCommand':
if myCore.daemonQueue() == False:
2018-01-27 00:52:20 +00:00
logger.info('Succesfully added and read command')
def testHashValidation(self):
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
logger.info('Running hash validation test...')
2018-03-03 22:18:57 +00:00
import core
myCore = core.Core()
if not myCore._utils.validateHash("$324dfgfdg") and myCore._utils.validateHash("f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2") and not myCore._utils.validateHash("f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd$"):
self.assertTrue(True)
else:
self.assertTrue(False)
2018-02-27 21:23:49 +00:00
def testAddAdder(self):
2018-03-03 22:18:57 +00:00
logger.debug('-'*26 + '\n')
2018-02-27 21:23:49 +00:00
logger.info('Running address add+remove test')
2018-03-03 22:18:57 +00:00
2018-02-27 21:23:49 +00:00
import core
myCore = core.Core()
2018-02-28 00:18:48 +00:00
if not os.path.exists('data/address.db'):
myCore.createAddressDB()
2018-02-27 21:23:49 +00:00
if myCore.addAddress('facebookcorewwwi.onion') and not myCore.removeAddress('invalid'):
if myCore.removeAddress('facebookcorewwwi.onion'):
self.assertTrue(True)
else:
self.assertTrue(False)
else:
self.assertTrue(False)
2018-03-03 22:18:57 +00:00
unittest.main()