Compare commits
6 Commits
v0.6
...
lakshyacis
Author | SHA1 | Date |
---|---|---|
|
288fb35c47 | 4 years ago |
|
48c9cd73d0 | 4 years ago |
|
5e92603fcc | 4 years ago |
|
380de9d1d9 | 4 years ago |
|
ea2e11ced8 | 4 years ago |
|
6b0ce5d1ae | 4 years ago |
@ -0,0 +1,98 @@
|
||||
"""Generate Address for tests"""
|
||||
from random import choice
|
||||
from string import ascii_lowercase
|
||||
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
from bitmessageqt import address_dialogs
|
||||
from bmconfigparser import BMConfigParser
|
||||
from testloader import BitmessageTestCase
|
||||
|
||||
|
||||
class BitmessageTest_AddressGeneration(BitmessageTestCase):
|
||||
"""Testing Environment"""
|
||||
|
||||
def test_generateaddress(self):
|
||||
"""Method clicks on pushbutton and create new address with random label"""
|
||||
print("=====================Test - Generating Address=====================")
|
||||
try:
|
||||
QTest.qWait(500)
|
||||
bm_addresses = BMConfigParser().addresses()
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
QTest.qWait(500)
|
||||
|
||||
self.myapp.ui.pushButtonNewAddress.setStyleSheet(
|
||||
"QPushButton {background-color: #FF5733; color: white;}")
|
||||
QTest.qWait(50)
|
||||
self.myapp.ui.pushButtonNewAddress.setStyleSheet("")
|
||||
label_gen_obj = address_dialogs.NewAddressDialog()
|
||||
QTest.qWait(750)
|
||||
|
||||
random_label = ""
|
||||
for _ in range(15):
|
||||
random_label += choice(ascii_lowercase)
|
||||
label_gen_obj.newaddresslabel.setText(random_label)
|
||||
QTest.qWait(4)
|
||||
|
||||
QTest.qWait(500)
|
||||
label_gen_obj.accept()
|
||||
QTest.qWait(750)
|
||||
new_bm_addresses = BMConfigParser().addresses()
|
||||
self.assertEqual(len(new_bm_addresses), len(bm_addresses) + 1)
|
||||
self.assertEqual(
|
||||
str(BMConfigParser().get(new_bm_addresses[-1], "label")), random_label)
|
||||
print("Test Pass:--> Address Generated Successfully")
|
||||
return 1 # if every thing is ok
|
||||
except:
|
||||
print(
|
||||
"Test Fail:--> Address Generatation Failed or Taking too much time to generate address")
|
||||
return 0 # if test fail
|
||||
|
||||
def test_generateaddresswithpassphrase(self):
|
||||
"""Clicks on the create new label with passphrase pushbutton and generates 8 address"""
|
||||
print(
|
||||
"=====================Test - Generating Address with passphrase=====================")
|
||||
try:
|
||||
QTest.qWait(500)
|
||||
bm_addresses = BMConfigParser().addresses()
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
QTest.qWait(500)
|
||||
|
||||
self.myapp.ui.pushButtonNewAddress.setStyleSheet(
|
||||
"QPushButton {background-color: #FF5733; color: white;}")
|
||||
QTest.qWait(50)
|
||||
self.myapp.ui.pushButtonNewAddress.setStyleSheet("")
|
||||
label_gen_obj = address_dialogs.NewAddressDialog()
|
||||
QTest.qWait(750)
|
||||
label_gen_obj.radioButtonDeterministicAddress.click()
|
||||
QTest.qWait(250)
|
||||
|
||||
random_password1 = ""
|
||||
for _ in range(15):
|
||||
random_password1 += choice(ascii_lowercase)
|
||||
label_gen_obj.lineEditPassphrase.setText(random_password1)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
random_password2 = ""
|
||||
for i in random_password1:
|
||||
random_password2 += i
|
||||
label_gen_obj.lineEditPassphraseAgain.setText(random_password2)
|
||||
QTest.qWait(2)
|
||||
|
||||
QTest.qWait(500)
|
||||
label_gen_obj.accept()
|
||||
QTest.qWait(750)
|
||||
self.assertEqual(random_password1, random_password2)
|
||||
|
||||
print(" Creating 8 Addresses. Please Wait! ......")
|
||||
QTest.qWait(3000)
|
||||
print(" Generating ......... ")
|
||||
QTest.qWait(3000)
|
||||
self.assertEqual(len(BMConfigParser().addresses()), len(bm_addresses) + 8)
|
||||
print("Test Pass:--> Address Generated Successfully with passphrase")
|
||||
return 1
|
||||
except:
|
||||
print(
|
||||
"Test Fail:--> Address Generatation Failed with passphrase"
|
||||
" or Taking too much time to generate address")
|
||||
return 0
|
@ -0,0 +1,74 @@
|
||||
"""Add address in the subscription list"""
|
||||
from random import choice
|
||||
from string import ascii_lowercase
|
||||
|
||||
from PyQt4 import QtGui
|
||||
from PyQt4.QtCore import QTimer
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
import shared
|
||||
from bitmessageqt import dialogs
|
||||
from bmconfigparser import BMConfigParser
|
||||
from helper_sql import sqlQuery
|
||||
from testloader import BitmessageTestCase
|
||||
|
||||
|
||||
class BitmessageTest_AddSubscription(BitmessageTestCase):
|
||||
"""Add address to list"""
|
||||
|
||||
def test_subscription(self):
|
||||
"""Test for subscription functionality"""
|
||||
print("=====================Test - Subscribe Address=====================")
|
||||
try:
|
||||
if BMConfigParser().addresses():
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.pushButtonAddSubscription.setStyleSheet(
|
||||
"QPushButton {background-color: #FF5733; color: white;}")
|
||||
QTest.qWait(50)
|
||||
self.myapp.ui.pushButtonAddSubscription.setStyleSheet("")
|
||||
dialog = dialogs.NewSubscriptionDialog(self.myapp)
|
||||
dialog.show()
|
||||
QTest.qWait(750)
|
||||
|
||||
random_label = ""
|
||||
for _ in range(30):
|
||||
random_label += choice(ascii_lowercase)
|
||||
dialog.lineEditLabel.setText(random_label)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
rand_address = choice(BMConfigParser().addresses())
|
||||
random_address = ""
|
||||
for i, _ in enumerate(rand_address):
|
||||
random_address += rand_address[i]
|
||||
dialog.lineEditAddress.setText(random_address)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
QTimer.singleShot(0, dialog.buttonBox.button(QtGui.QDialogButtonBox.Ok).clicked)
|
||||
|
||||
try:
|
||||
QTest.qWait(800)
|
||||
address, label = dialog.data
|
||||
except:
|
||||
print("Test Fail:--> Error, While Creating subscription list")
|
||||
QTest.qWait(500)
|
||||
return 0
|
||||
if shared.isAddressInMySubscriptionsList(address):
|
||||
print(
|
||||
"Test Fail:--> You cannot add the same address to your subscriptions twice."
|
||||
" Perhaps rename the existing one if you want")
|
||||
QTest.qWait(500)
|
||||
return 0
|
||||
self.myapp.addSubscription(address, label)
|
||||
sub_add = sqlQuery(
|
||||
"select address from subscriptions where label='" + random_label + "'")[0]
|
||||
self.assertEqual(random_address, sub_add[0])
|
||||
print("Test Pass:--> Subscription Done Successfully")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> No Address Found")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Error Occured while adding address to subscription list")
|
||||
return 0
|
@ -0,0 +1,11 @@
|
||||
"""Trigger dialog"""
|
||||
from PyQt4 import QtCore, QtGui
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
|
||||
def connectme(dialog):
|
||||
"""Automate the connect dialog, when run for first time"""
|
||||
dialog.show()
|
||||
QTest.qWait(1200)
|
||||
QtCore.QTimer.singleShot(0, dialog.buttonBox.button(QtGui.QDialogButtonBox.Ok).clicked)
|
||||
return 1
|
@ -0,0 +1,134 @@
|
||||
"""Tests for blackwhitelist"""
|
||||
from random import choice
|
||||
from string import ascii_lowercase
|
||||
|
||||
from PyQt4 import QtCore, QtGui
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
from addresses import addBMIfNotPresent
|
||||
from bitmessageqt import blacklist
|
||||
from bitmessageqt.dialogs import AddAddressDialog
|
||||
from bitmessageqt.utils import avatarize
|
||||
from bmconfigparser import BMConfigParser
|
||||
from helper_sql import sqlExecute, sqlQuery
|
||||
from testloader import BitmessageTestCase
|
||||
from tr import _translate
|
||||
|
||||
|
||||
class BitmessageTest_BlackandWhiteList(BitmessageTestCase):
|
||||
"""Blacklist and Whitelist address add functionality tests"""
|
||||
# pylint: disable=attribute-defined-outside-init
|
||||
|
||||
def test_blackwhitelist(self):
|
||||
"""Tab switch to blacklist and add the address on blacklist and whitelist"""
|
||||
print("=====================Test - Adding Address to Black/WhiteList=====================")
|
||||
self.blacklist_obj = blacklist.Blacklist()
|
||||
try:
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.blackwhitelist)
|
||||
QTest.qWait(500)
|
||||
|
||||
self.dialog = AddAddressDialog(self.myapp)
|
||||
blacklistcount = len(sqlQuery("Select * from blacklist"))
|
||||
self.myapp.ui.blackwhitelist.radioButtonBlacklist.click()
|
||||
self.myapp.ui.blackwhitelist.pushButtonAddBlacklist.setStyleSheet(
|
||||
"QPushButton {background-color: #FF5733; color: white;}")
|
||||
QTest.qWait(50)
|
||||
self.myapp.ui.blackwhitelist.pushButtonAddBlacklist.setStyleSheet("")
|
||||
self.blackwhitelist_autofill()
|
||||
self.myapp.ui.blackwhitelist.radioButtonWhitelist.click()
|
||||
self.myapp.ui.blackwhitelist.radioButtonBlacklist.click()
|
||||
QTest.qWait(500)
|
||||
whitelistcount = len(sqlQuery("Select * from whitelist"))
|
||||
self.myapp.ui.blackwhitelist.radioButtonWhitelist.click()
|
||||
self.myapp.ui.blackwhitelist.pushButtonAddBlacklist.setStyleSheet(
|
||||
"QPushButton {background-color: #FF5733; color: white;}")
|
||||
QTest.qWait(50)
|
||||
self.myapp.ui.blackwhitelist.pushButtonAddBlacklist.setStyleSheet("")
|
||||
self.blackwhitelist_autofill()
|
||||
self.myapp.ui.blackwhitelist.radioButtonBlacklist.click()
|
||||
self.myapp.ui.blackwhitelist.radioButtonWhitelist.click()
|
||||
QTest.qWait(500)
|
||||
self.assertEqual(blacklistcount + 1, len(sqlQuery("Select * from blacklist")))
|
||||
self.assertEqual(whitelistcount + 1, len(sqlQuery("Select * from whitelist")))
|
||||
except:
|
||||
return 0
|
||||
|
||||
def blackwhitelist_autofill(self):
|
||||
"""Auto fills the blackwhitelist fields"""
|
||||
try:
|
||||
self.dialog.lineEditLabel.setText("")
|
||||
self.dialog.lineEditAddress.setText("")
|
||||
QTest.qWait(350)
|
||||
self.dialog.show()
|
||||
QTest.qWait(750)
|
||||
self.random_label = ""
|
||||
for _ in range(30):
|
||||
self.random_label += choice(ascii_lowercase)
|
||||
self.dialog.lineEditLabel.setText(self.random_label)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
rand_address = choice(BMConfigParser().addresses())
|
||||
self.random_address = ""
|
||||
for i, _ in enumerate(rand_address):
|
||||
self.random_address += rand_address[i]
|
||||
self.dialog.lineEditAddress.setText(self.random_address)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
QtCore.QTimer.singleShot(
|
||||
0, self.dialog.buttonBox.button(QtGui.QDialogButtonBox.Ok).clicked)
|
||||
self.blacklist_test()
|
||||
except:
|
||||
pass
|
||||
|
||||
def blacklist_test(self):
|
||||
"""fill blacklist and whitelist fields"""
|
||||
# pylint: disable=no-else-return
|
||||
try:
|
||||
if self.dialog.labelAddressCheck.text() == _translate("MainWindow", "Address is valid."):
|
||||
address = addBMIfNotPresent(str(self.dialog.lineEditAddress.text()))
|
||||
t = (address,)
|
||||
if BMConfigParser().get("bitmessagesettings", "blackwhitelist") == "black":
|
||||
sql = """select * from blacklist where address=?"""
|
||||
else:
|
||||
sql = """select * from whitelist where address=?"""
|
||||
queryreturn = sqlQuery(sql, *t)
|
||||
if queryreturn == []:
|
||||
self.blacklist_obj.tableWidgetBlacklist.setSortingEnabled(False)
|
||||
self.blacklist_obj.tableWidgetBlacklist.insertRow(0)
|
||||
newItem = QtGui.QTableWidgetItem(
|
||||
unicode(self.dialog.lineEditLabel.text().toUtf8(), "utf-8"))
|
||||
newItem.setIcon(avatarize(address))
|
||||
self.blacklist_obj.tableWidgetBlacklist.setItem(0, 0, newItem)
|
||||
newItem = QtGui.QTableWidgetItem(address)
|
||||
newItem.setFlags(QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
|
||||
self.blacklist_obj.tableWidgetBlacklist.setItem(0, 1, newItem)
|
||||
self.blacklist_obj.tableWidgetBlacklist.setSortingEnabled(True)
|
||||
t = (str(self.dialog.lineEditLabel.text().toUtf8()), address, True)
|
||||
if BMConfigParser().get("bitmessagesettings", "blackwhitelist") == "black":
|
||||
sql = """INSERT INTO blacklist VALUES (?,?,?)"""
|
||||
sqlExecute(sql, *t)
|
||||
black_list_value = sqlQuery(
|
||||
"Select address from blacklist where label='" + self.random_label + "'")[0]
|
||||
self.assertEqual(black_list_value[0], self.random_address)
|
||||
print("Test Pass:--> Address Added to the blacklist")
|
||||
return 1
|
||||
else:
|
||||
sql = """INSERT INTO whitelist VALUES (?,?,?)"""
|
||||
sqlExecute(sql, *t)
|
||||
white_list_value = sqlQuery(
|
||||
"Select address from whitelist where label='" + self.random_label + "'")[0]
|
||||
self.assertEqual(white_list_value[0], self.random_address)
|
||||
print("Test Pass:--> Address Added to the whitelist")
|
||||
return 1
|
||||
else:
|
||||
print(
|
||||
"Test Fail:--> You cannot add the same address to your list twice."
|
||||
"Perhaps rename the existing one if you want")
|
||||
return 0
|
||||
else:
|
||||
QTest.qWait(100)
|
||||
print("Test Fail:--> The address you entered was invalid. Ignoring it")
|
||||
return 0
|
||||
except:
|
||||
pass
|
@ -0,0 +1,16 @@
|
||||
"""Tests for changs Tab"""
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
from testloader import BitmessageTestCase
|
||||
|
||||
|
||||
class BitmessageTest_ChansTest(BitmessageTestCase):
|
||||
"""Switch to chans and test"""
|
||||
|
||||
def test_chans(self):
|
||||
"""Switch to chans window and test"""
|
||||
print("=====================Test - Chans Functionality=====================")
|
||||
QTest.qWait(1200)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.chans)
|
||||
print("Test Pass :--> Chans Test Passed")
|
||||
return 1
|
@ -0,0 +1,71 @@
|
||||
"""Test for message send"""
|
||||
import random
|
||||
from random import choice
|
||||
from string import ascii_lowercase
|
||||
|
||||
from PyQt4.QtCore import Qt
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
from bmconfigparser import BMConfigParser
|
||||
from helper_sql import sqlQuery
|
||||
from testloader import BitmessageTestCase
|
||||
|
||||
|
||||
class BitmessageTest_MessageTesting(BitmessageTestCase):
|
||||
"""Test Message Sending functionality"""
|
||||
# pylint: disable= no-else-return
|
||||
|
||||
def test_msgsend(self):
|
||||
"""Auto-fill senders address, receivers address, subject and message and sends the message"""
|
||||
print(
|
||||
"=====================Test - Message Send/Receive Functionality=====================")
|
||||
try:
|
||||
if BMConfigParser().addresses():
|
||||
inbox_length = len(sqlQuery("Select msgid from inbox"))
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
QTest.qWait(500)
|
||||
rand_address = choice(BMConfigParser().addresses())
|
||||
random_address = ""
|
||||
for i, _ in enumerate(rand_address):
|
||||
random_address += rand_address[i]
|
||||
self.myapp.ui.lineEditTo.setText(random_address)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
random_subject = ""
|
||||
for x in range(30):
|
||||
random_subject += choice(ascii_lowercase)
|
||||
self.myapp.ui.lineEditSubject.setText(random_subject)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
random_message = ""
|
||||
for x in range(150):
|
||||
random_message += choice(ascii_lowercase)
|
||||
self.myapp.ui.textEditMessage.setText(random_message)
|
||||
QTest.qWait(1)
|
||||
QTest.qWait(400)
|
||||
randinteger = random.randrange(1, len(BMConfigParser().addresses()) + 1)
|
||||
self.myapp.ui.comboBoxSendFrom.setCurrentIndex(randinteger)
|
||||
QTest.qWait(1000)
|
||||
QTest.mouseClick(self.myapp.ui.pushButtonSend, Qt.LeftButton)
|
||||
QTest.qWait(350)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
print(" Waiting For Message .......................... ")
|
||||
for x in range(5):
|
||||
QTest.qWait(4000)
|
||||
print(" waiting " + x * ".")
|
||||
new_inbox = sqlQuery("Select msgid,toaddress,subject from inbox")
|
||||
self.assertEqual(new_inbox[-1][1], rand_address)
|
||||
self.assertEqual(new_inbox[-1][2], random_subject)
|
||||
if len(sqlQuery("Select msgid from inbox")) == inbox_length + 1:
|
||||
print("Test Pass:--> Message Received Successfully")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Doesn't Receive Any Message")
|
||||
return 0
|
||||
else:
|
||||
print("Test Fail:--> No Address Found")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Message Sending Test Fail")
|
||||
return 0
|
@ -0,0 +1,21 @@
|
||||
"""Test for network window"""
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
from testloader import BitmessageTestCase
|
||||
|
||||
|
||||
class BitmessageTest_NetworkTest(BitmessageTestCase):
|
||||
"""Switch to network tab and test"""
|
||||
|
||||
def test_network(self):
|
||||
"""Switch to network window"""
|
||||
try:
|
||||
print("=====================Test - Network Functionality=====================")
|
||||
QTest.qWait(1000)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.networkstatus)
|
||||
QTest.qWait(1200)
|
||||
print("Test Pass:--> Network Functionality Working Well")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Network Functionality Failed")
|
||||
return 0
|
@ -0,0 +1,812 @@
|
||||
"""Inbox TabWidget QTreeWidget Testing"""
|
||||
import random
|
||||
from random import choice
|
||||
from string import ascii_lowercase
|
||||
|
||||
from PyQt4 import QtCore, QtGui
|
||||
from PyQt4.QtCore import Qt
|
||||
from PyQt4.QtTest import QTest
|
||||
|
||||
import queues
|
||||
import shared
|
||||
from bitmessageqt import blacklist, dialogs
|
||||
from bmconfigparser import BMConfigParser
|
||||
from helper_sql import sqlExecute, sqlQuery
|
||||
from testloader import BitmessageTestCase
|
||||
from tr import _translate
|
||||
|
||||
# pylint: disable=no-else-return, inconsistent-return-statements, attribute-defined-outside-init
|
||||
|
||||
|
||||
class BitmessageTest_Inbox_PopMenu(BitmessageTestCase):
|
||||
"""Inbox TabWidget QTreeWidget popMenu Fucntionality testing"""
|
||||
|
||||
def test_sider(self):
|
||||
"""Show QTreeWidget popmenu"""
|
||||
print("-----------------------------------------------------------1")
|
||||
try:
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
QTest.qWait(500)
|
||||
self.treeWidget = self.myapp.ui.treeWidgetYourIdentities
|
||||
self.levelitem = self.treeWidget.topLevelItem(
|
||||
random.randint(1, len(BMConfigParser().addresses()) + 1))
|
||||
self.treeWidget.setCurrentItem(self.levelitem)
|
||||
self.currentItem = self.myapp.getCurrentItem()
|
||||
self.rect = self.treeWidget.visualItemRect(self.levelitem)
|
||||
self.myapp.on_context_menuYourIdentities(
|
||||
QtCore.QPoint(self.rect.x() + 160, self.rect.y() + 200))
|
||||
self.myapp.popMenuYourIdentities.hide()
|
||||
self.copy_clipboard()
|
||||
self.enable_disable()
|
||||
self.special_address_behavior()
|
||||
self.email_gateway()
|
||||
self.mark_all_as_read()
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> QTreeWidget popmenu functionality failed")
|
||||
return 0
|
||||
|
||||
def copy_clipboard(self):
|
||||
"""Copy Address to the ClipBoard and test whether the copied test is same or not?"""
|
||||
print("=====================Test - Copy Address to the ClipBoard=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
self.popup_menu(2)
|
||||
text_selected = self.currentItem.text(0)
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuYourIdentities.actions()[2].trigger()
|
||||
QTest.qWait(750)
|
||||
if str(QtGui.QApplication.clipboard().text()) in str(text_selected):
|
||||
print("Test Pass:--> Copy functionality working fine")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Copy functionality failed")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Copy functionality failed")
|
||||
return 0
|
||||
|
||||
def enable_disable(self):
|
||||
"""Enable address and disable address"""
|
||||
print(
|
||||
"=====================Test - Address Enable-Disable Functionality=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
self.popup_menu(4)
|
||||
if self.currentItem.isEnabled:
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuYourIdentities.actions()[4].trigger()
|
||||
QTest.qWait(1000)
|
||||
self.myapp.on_action_Enable()
|
||||
QTest.qWait(500)
|
||||
print("Test Pass:--> Enable-Disable working fine")
|
||||
return 1
|
||||
else:
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuYourIdentities.actions()[4].trigger()
|
||||
QTest.qWait(1000)
|
||||
self.myapp.on_action_Disable()
|
||||
QTest.qWait(500)
|
||||
print("Test Pass:--> Enable-Disable working fine")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Could not able to do Enable-Disable")
|
||||
return 0
|
||||
|
||||
def special_address_behavior(self):
|
||||
"""Tests for special address"""
|
||||
print("=====================Test - Address Special Behavior=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
self.popup_menu(6)
|
||||
special_add = dialogs.SpecialAddressBehaviorDialog(self.myapp, BMConfigParser())
|
||||
special_add.lineEditMailingListName.setText("")
|
||||
QTest.qWait(500)
|
||||
special_add.radioButtonBehaviorMailingList.click()
|
||||
QTest.qWait(1000)
|
||||
special_add.lineEditMailingListName.setText(
|
||||
"".join(choice(ascii_lowercase) for x in range(15)))
|
||||
QTest.qWait(500)
|
||||
QTest.mouseClick(
|
||||
special_add.buttonBox.button(QtGui.QDialogButtonBox.Ok), Qt.LeftButton)
|
||||
print("Test Pass:--> Special Address Behavior Functionality Passed")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Special Address Behavior Functionality failed")
|
||||
return 0
|
||||
|
||||
def email_gateway(self):
|
||||
"""Test email gateway functionality"""
|
||||
print("=====================Test - Email Gateway=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
self.popup_menu(7)
|
||||
QTest.qWait(200)
|
||||
email_gateway = dialogs.EmailGatewayDialog(self.myapp, BMConfigParser())
|
||||
email_gateway.show()
|
||||
QTest.qWait(500)
|
||||
email_gateway.radioButtonRegister.click()
|
||||
QTest.qWait(450)
|
||||
email = (
|
||||
("".join(choice(ascii_lowercase) for x in range(10)))
|
||||
+ "@"
|
||||
+ ("".join(choice(ascii_lowercase) for x in range(7)))
|
||||
+ ".com")
|
||||
email_gateway.lineEditEmail.setText(email)
|
||||
QTest.qWait(500)
|
||||
QTest.mouseClick(
|
||||
email_gateway.buttonBox.button(QtGui.QDialogButtonBox.Ok), Qt.LeftButton)
|
||||
print("Test Pass:--> Email-Gateway Functionality Passed")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Email-Gateway Functionality failed")
|
||||
return 0
|
||||
|
||||
def mark_all_as_read(self):
|
||||
"""Mark all messages as read"""
|
||||
print("=====================Test - Mark All as Read Functionality=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
self.popup_menu(11)
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuYourIdentities.actions()[11].trigger()
|
||||
QTest.qWait(500)
|
||||
print("Test Pass:--> Mark All as Read Functionality Passed")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Mark All as Read Functionality failed")
|
||||
return 0
|
||||
|
||||
def popup_menu(self, intval):
|
||||
"""Display popupmenu and clicking action UI"""
|
||||
QTest.qWait(5)
|
||||
self.myapp.popMenuYourIdentities.setActiveAction(
|
||||
self.myapp.popMenuYourIdentities.actions()[intval])
|
||||
self.myapp.popMenuYourIdentities.setStyleSheet(
|
||||
"QMenu:selected {background-color: #FF5733; color: white;}")
|
||||
self.myapp.popMenuYourIdentities.show()
|
||||
QTest.qWait(400)
|
||||
self.myapp.popMenuYourIdentities.hide()
|
||||
QTest.qWait(50)
|
||||
|
||||
|
||||
class BitmessageTest_AddressBox_PopMenu(BitmessageTestCase):
|
||||
"""AddressBox TabWidget QTreeWidget popMenu Fucntionality testing"""
|
||||
|
||||
def test_sider(self):
|
||||
"""Show QTreeWidget popmenu"""
|
||||
print("-----------------------------------------------------------2")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
QTest.qWait(500)
|
||||
self.treeWidget = self.myapp.ui.tableWidgetAddressBook
|
||||
total_sub = sqlQuery("Select address from addressbook")
|
||||
QTest.qWait(500)
|
||||
self.rand_value = random.randint(0, len(total_sub))
|
||||
self.current_address = str(self.treeWidget.item(self.rand_value, 1).text())
|
||||
self.treeWidget.setCurrentCell(self.rand_value, 1)
|
||||
self.treeWidget.item(self.rand_value, 1).setSelected(True)
|
||||
rect = self.treeWidget.visualItemRect(self.treeWidget.item(self.rand_value, 1))
|
||||
QTest.qWait(500)
|
||||
self.myapp.on_context_menuAddressBook(QtCore.QPoint(rect.x() + 160, rect.y() + 200))
|
||||
QTest.qWait(500)
|
||||
if total_sub:
|
||||
self.treeWidget.item(random.randint(0, self.rand_value), 1)
|
||||
else:
|
||||
print("No Address Found.")
|
||||
self.add_new_address()
|
||||
self.myapp.popMenuAddressBook.hide()
|
||||
self.send_message_to_this_add()
|
||||
self.copy_clipboard()
|
||||
self.subscribe_to_this_address()
|
||||
self.delete_addressbook()
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> PopUpMenu Send Tab Functionality failed")
|
||||
return 0
|
||||
|
||||
def add_new_address(self):
|
||||
"""Adding New Address to Address Book"""
|
||||
print(
|
||||
"=====================Test - Adding New Address to Address Book=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
self.popup_menu(6)
|
||||
self.dialog = dialogs.AddAddressDialog(self.myapp)
|
||||
self.dialog.show()
|
||||
QTest.qWait(500)
|
||||
self.dialog.lineEditLabel.setText("".join(choice(ascii_lowercase) for _ in range(15)))
|
||||
QTest.qWait(500)
|
||||
self.dialog.lineEditAddress.setText(choice(BMConfigParser().addresses()))
|
||||
QTest.qWait(500)
|
||||
QtCore.QTimer.singleShot(
|
||||
0, self.dialog.buttonBox.button(QtGui.QDialogButtonBox.Ok).clicked)
|
||||
QTest.qWait(500)
|
||||
try:
|
||||
address, label = self.dialog.data
|
||||
except:
|
||||
print("Test Fail:--> Could Not able to add new address")
|
||||
return 0
|
||||
if shared.isAddressInMyAddressBook(address):
|
||||
print(
|
||||
" Test :--> You cannot add the same address to your address book twice."
|
||||
" Try renaming the existing one if you want. \n")
|
||||
self.myapp.updateStatusBar(
|
||||
_translate(
|
||||
"MainWindow",
|
||||
"Error: You cannot add the same address to your adrress book twice."
|
||||
" Try renaming the existing one if you want."))
|
||||
return 0
|
||||
self.myapp.addEntryToAddressBook(address, label)
|
||||
print("Test Pass:--> Address Added to the Address Book!")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Could Not able to add new address")
|
||||
return 0
|
||||
|
||||
def send_message_to_this_add(self):
|
||||
"""Test - Send Message to this Address"""
|
||||
print("=====================Test - Send Message to this Address=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
self.popup_menu(0)
|
||||
if BMConfigParser().addresses():
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
inbox_length = len(sqlQuery("Select msgid from inbox"))
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuAddressBook.actions()[0].trigger()
|
||||
QTest.qWait(500)
|
||||
random_subject = ""
|
||||
for x in range(30):
|
||||
random_subject += choice(ascii_lowercase)
|
||||
self.myapp.ui.lineEditSubject.setText(random_subject)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
random_message = ""
|
||||
for x in range(150):
|
||||
random_message += choice(ascii_lowercase)
|
||||
self.myapp.ui.textEditMessage.setText(random_message)
|
||||
QTest.qWait(1)
|
||||
QTest.qWait(500)
|
||||
randinteger = random.randrange(1, len(BMConfigParser().addresses()) + 1)
|
||||
self.myapp.ui.comboBoxSendFrom.setCurrentIndex(randinteger)
|
||||
QTest.qWait(500)
|
||||
QTest.mouseClick(self.myapp.ui.pushButtonSend, Qt.LeftButton)
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
print(" Waiting For Message .......................... ")
|
||||
for x in range(5):
|
||||
QTest.qWait(4000)
|
||||
print(" waiting " + x * ".")
|
||||
new_inbox = sqlQuery("Select msgid,toaddress,subject from inbox")
|
||||
self.assertEqual(new_inbox[-1][2], random_subject)
|
||||
if len(sqlQuery("Select msgid from inbox")) == inbox_length + 1:
|
||||
print("Test Pass:--> Message Received Successfully")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Doesn't Receive Any Message")
|
||||
return 0
|
||||
else:
|
||||
print("Test Fail:--> No Address Found")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Message Sending Test Fail")
|
||||
return 0
|
||||
|
||||
def copy_clipboard(self):
|
||||
"""Copy Address to the ClipBoard and test whether the copied test is same or not?"""
|
||||
print(
|
||||
"=====================Test - Copy Address Book Address to Clipboard=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
self.popup_menu(1)
|
||||
# self.current_address = str(self.treeWidget.item(random.randint(0, self.rand_value), 1).text())
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuAddressBook.actions()[1].trigger()
|
||||
QTest.qWait(1000)
|
||||
if str(QtGui.QApplication.clipboard().text()) in self.current_address:
|
||||
print("Test Pass:--> Copy functionality working fine")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Copy functionality failed")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Copy functionality failed")
|
||||
return 0
|
||||
|
||||
def subscribe_to_this_address(self):
|
||||
"""Subscribe to This Address"""
|
||||
print("=====================Test - Subscribe to This Address=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
self.popup_menu(2)
|
||||
self.treeWidget.setCurrentCell(self.rand_value, 1)
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuAddressBook.actions()[2].trigger()
|
||||
QTest.qWait(750)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
subscription_list = sqlQuery("SELECT address FROM subscriptions")
|
||||
if self.current_address in subscription_list:
|
||||
print(
|
||||
"Test Fail:-->" + "Subscribe to this functionality failed"
|
||||
" because address is alreay added in the subscription list\n")
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
return 0
|
||||
else:
|
||||
print("Test Pass:--> Subscribe to this functionality working fine")
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Subscribe to this Address failed")
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
return 0
|
||||
|
||||
def delete_addressbook(self):
|
||||
"""Delete Address from the Address Book"""
|
||||
print(
|
||||
"=====================Test - Delete Address from the Address Book=====================")
|
||||
try:
|
||||
QTest.qWait(100)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.send)
|
||||
self.popup_menu(7)
|
||||
self.treeWidget.setCurrentCell(self.rand_value, 1)
|
||||
self.myapp.on_action_AddressBookDelete()
|
||||
QTest.qWait(500)
|
||||
addressbook_list = sqlQuery("SELECT address FROM addressbook")
|
||||
if self.current_address not in addressbook_list:
|
||||
print("Test Pass:--> Address is Deleted from the AddressBook")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Could not able to Delete this address")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Could Not Able to Delete this Address from the AddressBook")
|
||||
return 0
|
||||
|
||||
def popup_menu(self, intval):
|
||||
"""Display popupmenu and clicking action UI"""
|
||||
QTest.qWait(5)
|
||||
self.myapp.popMenuAddressBook.setActiveAction(
|
||||
self.myapp.popMenuAddressBook.actions()[intval])
|
||||
self.myapp.popMenuAddressBook.setStyleSheet(
|
||||
"QMenu:selected {background-color: #FF5733; color: white;}")
|
||||
self.myapp.popMenuAddressBook.show()
|
||||
QTest.qWait(400)
|
||||
self.myapp.popMenuAddressBook.hide()
|
||||
QTest.qWait(50)
|
||||
|
||||
|
||||
class BitmessageTest_Subscription_PopMenu(BitmessageTestCase):
|
||||
"""Subscription TabWidget QTreeWidget popMenu Fucntionality testing"""
|
||||
|
||||
def test_sider(self):
|
||||
"""Show QTreeWidget Popup Menu"""
|
||||
print("-----------------------------------------------------------3")
|
||||
try:
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
QTest.qWait(500)
|
||||
self.treeWidget = self.myapp.ui.treeWidgetSubscriptions
|
||||
total_sub = sqlQuery("Select address from subscriptions")
|
||||
self.levelitem = self.treeWidget.topLevelItem(random.randint(0, len(total_sub) - 1))
|
||||
self.treeWidget.setCurrentItem(self.levelitem)
|
||||
rect = self.treeWidget.visualItemRect(self.levelitem)
|
||||
self.currentItem = self.myapp.getCurrentItem()
|
||||
self.myapp.on_context_menuSubscriptions(QtCore.QPoint(rect.x() + 160, rect.y() + 200))
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuSubscriptions.hide()
|
||||
self.new_subscribe()
|
||||
self.enable_disable()
|
||||
self.copy_clipboard()
|
||||
self.send_message_to_this_add()
|
||||
self.mark_all_as_read()
|
||||
self.del_address_from_sub()
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Subscription Tab PopUpMenu Functionality failed")
|
||||
return 0
|
||||
|
||||
def new_subscribe(self):
|
||||
"""Subscribe to new address"""
|
||||
print("=====================Test - Subscribe to New Address=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
if BMConfigParser().addresses():
|
||||
self.popup_menu(0)
|
||||
dialog = dialogs.NewSubscriptionDialog(self.myapp)
|
||||
QTest.qWait(500)
|
||||
dialog.lineEditLabel.setText("")
|
||||
dialog.lineEditAddress.setText("")
|
||||
dialog.show()
|
||||
QTest.qWait(500)
|
||||
random_label = ""
|
||||
for _ in range(30):
|
||||
random_label += choice(ascii_lowercase)
|
||||
dialog.lineEditLabel.setText(random_label)
|
||||
QTest.qWait(5)
|
||||
QTest.qWait(500)
|
||||
rand_address = choice(BMConfigParser().addresses())
|
||||
random_address = ""
|
||||
for i, _ in enumerate(rand_address):
|
||||
random_address += rand_address[i]
|
||||
dialog.lineEditAddress.setText(random_address)
|
||||
QTest.qWait(4)
|
||||
QtCore.QTimer.singleShot(
|
||||
0, dialog.buttonBox.button(QtGui.QDialogButtonBox.Ok).clicked)
|
||||
QTest.qWait(500)
|
||||
try:
|
||||
address, label = dialog.data
|
||||
except AttributeError:
|
||||
print("Test Fail:--> Could Not able to add new address to subscription list")
|
||||
return 0
|
||||
if shared.isAddressInMySubscriptionsList(address):
|
||||
print(
|
||||
"MainWindow",
|
||||
"Error: You cannot add the same address to your subscriptions twice."
|
||||
" Perhaps rename the existing one if you want.",)
|
||||
self.myapp.updateStatusBar(
|
||||
_translate(
|
||||
"MainWindow",
|
||||
"Error: You cannot add the same address to your subscriptions twice."
|
||||
" Perhaps rename the existing one if you want."))
|
||||
return 0
|
||||
self.myapp.addSubscription(address, label)
|
||||
print("Test Pass:--> Address Added to subscription list")
|
||||
if dialog.checkBoxDisplayMessagesAlreadyInInventory.isChecked():
|
||||
for value in dialog.recent:
|
||||
queues.objectProcessorQueue.put((value.type, value.payload))
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> No address found")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> New Subscription Functionality Failed")
|
||||
return 0
|
||||
|
||||
def enable_disable(self):
|
||||
"""Enable address and disable address"""
|
||||
print(
|
||||
"=====================Test - Address Enable-Disable Functionality=====================")
|
||||
QTest.qWait(500)
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
self.treeWidget.setCurrentItem(self.levelitem)
|
||||
self.popup_menu(3)
|
||||
if self.currentItem.isEnabled:
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuSubscriptions.actions()[3].trigger()
|
||||
QTest.qWait(1000)
|
||||
self.myapp.on_action_Enable()
|
||||
QTest.qWait(500)
|
||||
else:
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuSubscriptions.actions()[3].trigger()
|
||||
QTest.qWait(1000)
|
||||
self.myapp.on_action_Disable()
|
||||
QTest.qWait(500)
|
||||
print("Test Pass:--> Enable Disable Working well")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Enable Disable failed")
|
||||
return 0
|
||||
|
||||
def copy_clipboard(self):
|
||||
"""Copy Address to the ClipBoard and test whether the copied test is same or not?"""
|
||||
print(
|
||||
"=====================Test - Copy Address Book Address to Clipboard=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
self.treeWidget.setCurrentItem(self.levelitem)
|
||||
self.popup_menu(6)
|
||||
QTest.qWait(500)
|
||||
self.myapp.popMenuSubscriptions.actions()[6].trigger()
|
||||
QTest.qWait(1000)
|
||||
if str(QtGui.QApplication.clipboard().text()) in str(self.currentItem.text(0)):
|
||||
print("Test Pass:--> Copy functionality working fine")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Copy functionality failed")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Copy functionality failed")
|
||||
return 0
|
||||
|
||||
def send_message_to_this_add(self):
|
||||
"""Test - Send Message to this Address"""
|
||||
print("=====================Test - Send Message to this Address=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
self.popup_menu(7)
|
||||
if BMConfigParser().addresses():
|
||||
inbox_length = len(sqlQuery("Select msgid from inbox"))
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
self.treeWidget.setCurrentItem(self.levelitem)
|
||||
self.myapp.popMenuSubscriptions.actions()[7].trigger()
|
||||
QTest.qWait(500)
|
||||
random_subject = ""
|
||||
for x in range(30):
|
||||
random_subject += choice(ascii_lowercase)
|
||||
self.myapp.ui.lineEditSubject.setText(random_subject)
|
||||
QTest.qWait(4)
|
||||
QTest.qWait(500)
|
||||
random_message = ""
|
||||
for x in range(150):
|
||||
random_message += choice(ascii_lowercase)
|
||||
self.myapp.ui.textEditMessage.setText(random_message)
|
||||
QTest.qWait(1)
|
||||
QTest.qWait(500)
|
||||
randinteger = random.randrange(1, len(BMConfigParser().addresses()) + 1)
|
||||
self.myapp.ui.comboBoxSendFrom.setCurrentIndex(randinteger)
|
||||
QTest.qWait(500)
|
||||
QTest.mouseClick(self.myapp.ui.pushButtonSend, Qt.LeftButton)
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.inbox)
|
||||
print(" Waiting For Message .......................... ")
|
||||
for x in range(5):
|
||||
QTest.qWait(4000)
|
||||
print(" waiting " + x * ".")
|
||||
new_inbox = sqlQuery("Select msgid,toaddress,subject from inbox")
|
||||
self.assertEqual(new_inbox[-1][2], random_subject)
|
||||
if len(sqlQuery("Select msgid from inbox")) == inbox_length + 1:
|
||||
print("Test Pass:--> Message Received Successfully")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Doesn't Receive Any Message")
|
||||
return 0
|
||||
else:
|
||||
print("Test Fail:--> No Address Found")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Message Sending Test Fail")
|
||||
return 0
|
||||
|
||||
def mark_all_as_read(self):
|
||||
"""Mark all messages as read"""
|
||||
print("=====================Test - Mark All as Read Functionality=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
self.popup_menu(8)
|
||||
QTest.qWait(550)
|
||||
self.myapp.popMenuSubscriptions.actions()[8].trigger()
|
||||
QTest.qWait(750)
|
||||
print("Test Pass:--> Mark All as Read Functionality Passed")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Mark All as Read Functionality failed")
|
||||
return 0
|
||||
|
||||
def del_address_from_sub(self):
|
||||
"""Method deletes the address from the subscription"""
|
||||
print(
|
||||
"=====================Test - Delete Address from the subscription Field=====================")
|
||||
try:
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.subscriptions)
|
||||
self.popup_menu(1)
|
||||
self.treeWidget.setCurrentItem(self.levelitem)
|
||||
address = self.myapp.getCurrentAccount()
|
||||
QTest.qWait(750)
|
||||
sqlExecute("""DELETE FROM subscriptions WHERE address=?""", address)
|
||||
self.myapp.rerenderTabTreeSubscriptions()
|
||||
self.myapp.rerenderMessagelistFromLabels()
|
||||
self.myapp.rerenderAddressBook()
|
||||
shared.reloadBroadcastSendersForWhichImWatching()
|
||||
addressbook_list = sqlQuery("SELECT address FROM subscriptions")
|
||||
if address not in addressbook_list:
|
||||
print("Test Pass:--> Address is Deleted from the AddressBook")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Could not able to Delete this address")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Could Not Able to Delete this Address from the AddressBook")
|
||||
return 0
|
||||
|
||||
def popup_menu(self, intval):
|
||||
"""Display popupmenu and clicking action UI"""
|
||||
QTest.qWait(5)
|
||||
self.myapp.popMenuSubscriptions.setActiveAction(
|
||||
self.myapp.popMenuSubscriptions.actions()[intval])
|
||||
self.myapp.popMenuSubscriptions.setStyleSheet(
|
||||
"QMenu:selected {background-color: #FF5733; color: white;}")
|
||||
self.myapp.popMenuSubscriptions.show()
|
||||
QTest.qWait(400)
|
||||
self.myapp.popMenuSubscriptions.hide()
|
||||
QTest.qWait(50)
|
||||
|
||||
|
||||
class BitmessageTest_BlackWhiteList_PopMenu(BitmessageTestCase):
|
||||
"""Subscription TabWidget QTreeWidget popMenu Fucntionality testing"""
|
||||
|
||||
def test_sider(self):
|
||||
"""Show QTableWidget Popupmenu"""
|
||||
print("-----------------------------------------------------------4")
|
||||
try:
|
||||
self.total_bl = sqlQuery("Select address from blacklist")
|
||||
self.total_wl = sqlQuery("Select address from whitelist")
|
||||
if self.total_bl:
|
||||
self.trigger_blacklist_test()
|
||||
if self.total_wl:
|
||||
self.trigger_whitelist_test()
|
||||
except:
|
||||
print("Test Fail:--> Getting Error while testing on Black/WhiteList Addresses")
|
||||
return 0
|
||||
|
||||
def trigger_blacklist_test(self):
|
||||
"""Triggers blacklist test cases"""
|
||||
try:
|
||||
self.blacklist_obj = blacklist.Blacklist()
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.blackwhitelist)
|
||||
self.myapp.ui.blackwhitelist.radioButtonBlacklist.click()
|
||||
self.tableWidget = self.myapp.ui.blackwhitelist.tableWidgetBlacklist
|
||||
QTest.qWait(500)
|
||||
|
||||
self.rand_value = random.randint(0, len(self.total_bl) - 1)
|
||||
self.tableWidget.setCurrentCell(self.rand_value, 1)
|
||||
self.tableWidget.item(self.rand_value, 1).setSelected(True)
|
||||
rect = self.tableWidget.visualItemRect(self.tableWidget.item(self.rand_value, 1))
|
||||
QTest.qWait(500)
|
||||
|
||||
self.blacklist_obj.init_blacklist_popup_menu()
|
||||
self.blacklist_obj.popMenuBlacklist.move(QtCore.QPoint(rect.x(), rect.y() + 290))
|
||||
self.blacklist_obj.popMenuBlacklist.show()
|
||||
QTest.qWait(300)
|
||||
self.blacklist_obj.popMenuBlacklist.hide()
|
||||
self.copy_clipboard()
|
||||
self.enable_blackwhitelist()
|
||||
self.disble_blackwhitelist()
|
||||
self.address_delete()
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Getting Error While Testing Blacklist")
|
||||
return 0
|
||||
|
||||
def trigger_whitelist_test(self):
|
||||
"""Triggers whitelist test cases"""
|
||||
try:
|
||||
self.blacklist_obj = blacklist.Blacklist()
|
||||
QTest.qWait(500)
|
||||
self.myapp.ui.tabWidget.setCurrentWidget(self.myapp.ui.blackwhitelist)
|
||||
self.myapp.ui.blackwhitelist.radioButtonWhitelist.click()
|
||||
self.tableWidget = self.myapp.ui.blackwhitelist.tableWidgetBlacklist
|
||||
QTest.qWait(500)
|
||||
|
||||
self.rand_value = random.randint(0, len(self.total_wl) - 1)
|
||||
self.tableWidget.setCurrentCell(self.rand_value, 1)
|
||||
self.tableWidget.item(self.rand_value, 1).setSelected(True)
|
||||
rect = self.tableWidget.visualItemRect(self.tableWidget.item(self.rand_value, 1))
|
||||
QTest.qWait(500)
|
||||
|
||||
self.blacklist_obj.init_blacklist_popup_menu()
|
||||
self.blacklist_obj.popMenuBlacklist.move(QtCore.QPoint(rect.x(), rect.y() + 290))
|
||||
self.blacklist_obj.popMenuBlacklist.show()
|
||||
QTest.qWait(300)
|
||||
self.blacklist_obj.popMenuBlacklist.hide()
|
||||
|
||||
self.copy_clipboard()
|
||||
self.enable_blackwhitelist()
|
||||
self.disble_blackwhitelist()
|
||||
self.address_delete()
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Getting Error While Testing WhiteList")
|
||||
return 0
|
||||
|
||||
def address_delete(self):
|
||||
"""Delte address from the Black/WhiteList"""
|
||||
try:
|
||||
QTest.qWait(250)
|
||||
self.popup_menu(0)
|
||||
self.tableWidget.selectRow(self.rand_value)
|
||||
currentRow = self.tableWidget.currentRow()
|
||||
labelAtCurrentRow = self.tableWidget.item(currentRow, 0).text().toUtf8()
|
||||
addressAtCurrentRow = self.tableWidget.item(currentRow, 1).text()
|
||||
QTest.qWait(100)
|
||||
if BMConfigParser().get("bitmessagesettings", "blackwhitelist") == "black":
|
||||
sqlExecute(
|
||||
"""DELETE FROM blacklist WHERE label=? AND address=?""",
|
||||
str(labelAtCurrentRow),
|
||||
str(addressAtCurrentRow))
|
||||
print("Test Pass:--> Address deleted from the BlackList")
|
||||
else:
|
||||
sqlExecute(
|
||||
"""DELETE FROM whitelist WHERE label=? AND address=?""",
|
||||
str(labelAtCurrentRow),
|
||||
str(addressAtCurrentRow))
|
||||
print("Test Pass:--> Address deleted from the WhiteList")
|
||||
self.tableWidget.removeRow(currentRow)
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Getting Error while testing on Address Deletion Functionality")
|
||||
return 0
|
||||
|
||||
def copy_clipboard(self):
|
||||
"""Copy Address to the ClipBoard and test whether the copied test is same or not?"""
|
||||
try:
|
||||
QTest.qWait(250)
|
||||
self.popup_menu(2)
|
||||
text_selected = self.tableWidget.item(self.tableWidget.currentRow(), 1).text().toUtf8()
|
||||
QTest.qWait(500)
|
||||
currentRow = self.tableWidget.currentRow()
|
||||
addressAtCurrentRow = self.tableWidget.item(currentRow, 1).text()
|
||||
clipboard = QtGui.QApplication.clipboard()
|
||||
clipboard.setText(str(addressAtCurrentRow))
|
||||
QTest.qWait(500)
|
||||
if str(QtGui.QApplication.clipboard().text()) in str(text_selected):
|
||||
print("Test Pass:--> Copy functionality working fine")
|
||||
return 1
|
||||
else:
|
||||
print("Test Fail:--> Copy functionality failed")
|
||||
return 0
|
||||
except:
|
||||
print("Test Fail:--> Getting Error while testing Copy functionality")
|
||||
return 0
|
||||
|
||||
def enable_blackwhitelist(self):
|
||||
"""Enables the Black/WhiteList"""
|
||||
try:
|
||||
QTest.qWait(250)
|
||||
self.popup_menu(4)
|
||||
currentRow = self.tableWidget.currentRow()
|
||||
addressAtCurrentRow = self.tableWidget.item(currentRow, 1).text()
|
||||
self.tableWidget.item(currentRow, 0).setTextColor(
|
||||
QtGui.QApplication.palette().text().color())
|
||||
self.tableWidget.item(currentRow, 1).setTextColor(
|
||||
QtGui.QApplication.palette().text().color())
|
||||
QTest.qWait(500)
|
||||
if BMConfigParser().get("bitmessagesettings", "blackwhitelist") == "black":
|
||||
QTest.qWait(500)
|
||||
sqlExecute(
|
||||
"""UPDATE blacklist SET enabled=1 WHERE address=?""", str(addressAtCurrentRow))
|
||||
print("Test Pass:--> Enabled the Blacklist address")
|
||||
else:
|
||||
QTest.qWait(500)
|
||||
sqlExecute(
|
||||
"""UPDATE whitelist SET enabled=1 WHERE address=?""", str(addressAtCurrentRow))
|
||||
print("Test Pass:--> Enabled the Whitelist address")
|
||||
return 1
|
||||
except:
|
||||
print("Test Fail:--> Getting Error while testing Enable Functionality")
|
||||
return 0
|
||||
|
||||
def disble_blackwhitelist(self):
|
||||
"""Disables the Black/WhiteList"""
|
||||
try:
|
||||
QTest.qWait(250)
|
||||
self.popup_menu(5)
|
||||
currentRow = self.tableWidget.currentRow()
|