Disables Anonymous Comments #35

Merged
osilkin98 merged 5 commits from disables-anon into master 2020-03-04 02:49:42 +01:00
Showing only changes of commit a825c6a4b9 - Show all commits

View file

@ -1,4 +1,4 @@
import unittest import sqlite3
from random import randint from random import randint
import faker import faker
@ -53,21 +53,13 @@ class TestDatabaseOperations(DatabaseTestCase):
self.assertEqual(reply['parent_id'], comment['comment_id']) self.assertEqual(reply['parent_id'], comment['comment_id'])
def test02AnonymousComments(self): def test02AnonymousComments(self):
comment = create_comment_or_error( self.assertRaises(
sqlite3.IntegrityError,
create_comment_or_error,
conn=self.conn, conn=self.conn,
claim_id=self.claimId, claim_id=self.claimId,
comment='This is an ANONYMOUS comment' comment='This is an ANONYMOUS comment'
) )
self.assertIsNotNone(comment)
previous_id = comment['comment_id']
reply = create_comment_or_error(
conn=self.conn,
claim_id=self.claimId,
comment='This is an unnamed response',
parent_id=previous_id
)
self.assertIsNotNone(reply)
self.assertEqual(reply['parent_id'], comment['comment_id'])
def test03SignedComments(self): def test03SignedComments(self):
comment = create_comment_or_error( comment = create_comment_or_error(