removed cryptoshim, work on peers, added test

This commit is contained in:
Kevin Froman 2018-01-10 02:40:25 -06:00
parent 52fb4b139b
commit 6c61626e0f
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
4 changed files with 20 additions and 20 deletions

10
core.py
View File

@ -33,9 +33,15 @@ class Core:
key = gpg.gen_key(input_data)
return
def addPeer(self, id, name=''):
def addPeer(self, peerID, name=''):
# This function simply adds a peer to the DB
return
conn = sqlite3.connect(self.peerDB)
c = conn.cursor()
t = (peerID, name)
c.execute('Insert into users (id, name) values(?, ?);', t)
conn.commit()
conn.close()
return True
def createPeerDB(self):
# generate the peer database

View File

@ -1,16 +0,0 @@
'''
Onionr - P2P Microblogging Platform & Social network. Run with 'help' for usage.
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/>.
'''

View File

@ -50,7 +50,7 @@ class Onionr:
if not os.path.exists('data/'):
os.mkdir('data/')
if os.path.exists('data/peers.db'):
if not os.path.exists('data/peers.db'):
onionrCore.createPeerDB()
pass

View File

@ -32,7 +32,7 @@ class OnionrTests(unittest.TestCase):
self.assertTrue(False)
else:
self.assertTrue(True)
def testPeerDBCreation(self):
def testPeer_a_DBCreation(self):
print('--------------------------')
print('Running peer db creation test')
if os.path.exists('data/peers.db'):
@ -44,6 +44,16 @@ class OnionrTests(unittest.TestCase):
self.assertTrue(True)
else:
self.assertTrue(False)
def testPeer_b_addPeerToDB(self):
print('--------------------------')
print('Running peer db insertion test')
import core
myCore = core.Core()
myCore.createPeerDB()
if myCore.addPeer('test'):
self.asserTrue(True)
else:
self.assertTrue(False)
def testData_b_Encrypt(self):
self.assertTrue(True)
return