2019-07-29 00:35:36 +00:00
|
|
|
import time
|
|
|
|
|
|
|
|
import emoji
|
2018-06-21 16:40:27 +00:00
|
|
|
import random
|
|
|
|
import string
|
2018-06-28 18:46:51 +00:00
|
|
|
from selenium.common.exceptions import TimeoutException
|
2019-07-29 00:35:36 +00:00
|
|
|
|
2018-09-17 08:50:01 +00:00
|
|
|
from tests import marks, get_current_time
|
2018-06-28 18:46:51 +00:00
|
|
|
from tests.base_test_case import MultipleDeviceTestCase, SingleDeviceTestCase
|
2019-08-02 09:28:59 +00:00
|
|
|
from tests.users import transaction_senders, transaction_recipients, basic_user, ens_user
|
2018-06-21 16:40:27 +00:00
|
|
|
from views.sign_in_view import SignInView
|
|
|
|
|
|
|
|
|
|
|
|
@marks.chat
|
2018-06-28 18:46:51 +00:00
|
|
|
class TestMessagesOneToOneChatMultiple(MultipleDeviceTestCase):
|
2018-06-21 16:40:27 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5305)
|
|
|
|
@marks.critical
|
2018-06-21 16:40:27 +00:00
|
|
|
def test_text_message_1_1_chat(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-07-18 15:44:06 +00:00
|
|
|
device_1_home, device_2_home = device_1.create_user(), device_2.create_user()
|
2019-06-26 14:57:46 +00:00
|
|
|
profile_1 = device_1_home.profile_button.click()
|
|
|
|
default_username_1 = profile_1.default_username_text.text
|
|
|
|
device_1_home = profile_1.get_back_to_home_view()
|
2018-06-21 16:40:27 +00:00
|
|
|
device_2_public_key = device_2_home.get_public_key()
|
|
|
|
device_2_home.home_button.click()
|
|
|
|
|
|
|
|
device_1_chat = device_1_home.add_contact(device_2_public_key)
|
|
|
|
|
|
|
|
message = 'hello'
|
|
|
|
device_1_chat.chat_message_input.send_keys(message)
|
|
|
|
device_1_chat.send_message_button.click()
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
device_2_chat = device_2_home.get_chat(default_username_1).click()
|
2018-07-13 10:56:36 +00:00
|
|
|
device_2_chat.chat_element_by_text(message).wait_for_visibility_of_element()
|
2018-06-21 16:40:27 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5310)
|
|
|
|
@marks.critical
|
2018-06-21 16:40:27 +00:00
|
|
|
def test_offline_messaging_1_1_chat(self):
|
2019-07-29 00:35:36 +00:00
|
|
|
self.create_drivers(2)
|
2018-08-15 12:51:52 +00:00
|
|
|
sign_in_1, sign_in_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-07-29 00:35:36 +00:00
|
|
|
home_1, home_2 = sign_in_1.create_user(), sign_in_2.create_user()
|
2018-06-21 16:40:27 +00:00
|
|
|
public_key_1 = home_1.get_public_key()
|
|
|
|
home_1.home_button.click()
|
|
|
|
|
2019-10-10 17:38:50 +00:00
|
|
|
home_1.toggle_airplane_mode() # airplane mode on primary device
|
2018-06-21 16:40:27 +00:00
|
|
|
|
2019-07-29 00:35:36 +00:00
|
|
|
profile_2 = home_2.profile_button.click()
|
|
|
|
username_2 = profile_2.default_username_text.text
|
|
|
|
profile_2.get_back_to_home_view()
|
2018-06-21 16:40:27 +00:00
|
|
|
chat_2 = home_2.add_contact(public_key_1)
|
|
|
|
message_1 = 'test message'
|
|
|
|
chat_2.chat_message_input.send_keys(message_1)
|
|
|
|
chat_2.send_message_button.click()
|
2019-10-10 17:38:50 +00:00
|
|
|
chat_2.toggle_airplane_mode() # airplane mode on secondary device
|
2018-06-21 16:40:27 +00:00
|
|
|
|
2019-10-10 17:38:50 +00:00
|
|
|
home_1.toggle_airplane_mode() # turning on WiFi connection on primary device
|
2018-06-21 16:40:27 +00:00
|
|
|
|
2019-07-29 23:32:29 +00:00
|
|
|
home_1.connection_status.wait_for_invisibility_of_element(30)
|
2020-03-17 17:27:10 +00:00
|
|
|
chat_element = home_1.get_chat(username_2)
|
2019-10-30 18:21:21 +00:00
|
|
|
chat_element.wait_for_visibility_of_element(30)
|
2018-06-21 16:40:27 +00:00
|
|
|
chat_1 = chat_element.click()
|
|
|
|
chat_1.chat_element_by_text(message_1).wait_for_visibility_of_element(2)
|
|
|
|
|
2019-10-10 17:38:50 +00:00
|
|
|
chat_2.toggle_airplane_mode() # turning on WiFi connection on secondary device
|
|
|
|
home_1.toggle_airplane_mode() # airplane mode on primary device
|
2018-06-21 16:40:27 +00:00
|
|
|
|
|
|
|
chat_2.element_by_text('Connecting to peers...').wait_for_invisibility_of_element(60)
|
2019-10-03 18:33:36 +00:00
|
|
|
chat_2.connection_status.wait_for_invisibility_of_element(60)
|
2018-06-21 16:40:27 +00:00
|
|
|
message_2 = 'one more message'
|
|
|
|
chat_2.chat_message_input.send_keys(message_2)
|
2019-11-04 13:41:18 +00:00
|
|
|
chat_2.send_message_button.click_until_absense_of_element(chat_2.send_message_button)
|
2018-06-21 16:40:27 +00:00
|
|
|
|
2019-10-10 17:38:50 +00:00
|
|
|
home_1.toggle_airplane_mode() # turning on WiFi connection on primary device
|
2018-06-21 16:40:27 +00:00
|
|
|
|
|
|
|
chat_1 = chat_element.click()
|
|
|
|
chat_1.chat_element_by_text(message_2).wait_for_visibility_of_element(180)
|
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5338)
|
|
|
|
@marks.critical
|
2018-06-21 16:40:27 +00:00
|
|
|
def test_messaging_in_different_networks(self):
|
2018-06-28 18:46:51 +00:00
|
|
|
self.create_drivers(2)
|
2018-08-15 12:51:52 +00:00
|
|
|
sign_in_1, sign_in_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-07-29 00:35:36 +00:00
|
|
|
home_1, home_2 = sign_in_1.create_user(), sign_in_2.create_user()
|
2019-06-26 14:57:46 +00:00
|
|
|
profile_1 = home_1.profile_button.click()
|
|
|
|
default_username_1 = profile_1.default_username_text.text
|
|
|
|
home_1 = profile_1.get_back_to_home_view()
|
2018-06-21 16:40:27 +00:00
|
|
|
public_key_2 = home_2.get_public_key()
|
|
|
|
profile_2 = home_2.get_profile_view()
|
|
|
|
profile_2.switch_network('Mainnet with upstream RPC')
|
|
|
|
|
|
|
|
chat_1 = home_1.add_contact(public_key_2)
|
|
|
|
message = 'test message'
|
|
|
|
chat_1.chat_message_input.send_keys(message)
|
|
|
|
chat_1.send_message_button.click()
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
chat_2 = home_2.get_chat(default_username_1).click()
|
2018-06-21 16:40:27 +00:00
|
|
|
chat_2.chat_element_by_text(message).wait_for_visibility_of_element()
|
|
|
|
|
2018-06-29 17:27:30 +00:00
|
|
|
public_chat_name = home_1.get_public_chat_name()
|
2018-06-21 16:40:27 +00:00
|
|
|
chat_1.get_back_to_home_view()
|
|
|
|
home_1.join_public_chat(public_chat_name)
|
|
|
|
chat_2.get_back_to_home_view()
|
|
|
|
home_2.join_public_chat(public_chat_name)
|
|
|
|
|
|
|
|
chat_1.chat_message_input.send_keys(message)
|
|
|
|
chat_1.send_message_button.click()
|
|
|
|
chat_2.chat_element_by_text(message).wait_for_visibility_of_element()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5315)
|
2019-03-05 16:43:30 +00:00
|
|
|
@marks.high
|
2018-06-28 18:46:51 +00:00
|
|
|
def test_send_message_to_newly_added_contact(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
|
2019-07-11 15:44:12 +00:00
|
|
|
device_1_home, device_2_home = device_1.create_user(), device_2.create_user()
|
2019-06-28 14:36:24 +00:00
|
|
|
profile_1 = device_1_home.profile_button.click()
|
|
|
|
default_username_1 = profile_1.default_username_text.text
|
|
|
|
device_1_home = profile_1.get_back_to_home_view()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2020-01-28 13:55:28 +00:00
|
|
|
# Skip until edit-profile feature returned
|
|
|
|
|
|
|
|
# profile_1 = device_1_home.profile_button.click()
|
|
|
|
# profile_1.edit_profile_picture('sauce_logo.png')
|
|
|
|
# profile_1.home_button.click()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
device_2_public_key = device_2_home.get_public_key()
|
|
|
|
device_2_home.home_button.click()
|
|
|
|
|
|
|
|
device_1_chat = device_1_home.add_contact(device_2_public_key)
|
|
|
|
message = 'hello'
|
|
|
|
device_1_chat.chat_message_input.send_keys(message)
|
|
|
|
device_1_chat.send_message_button.click()
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
chat_element = device_2_home.get_chat(default_username_1)
|
2018-06-28 18:46:51 +00:00
|
|
|
chat_element.wait_for_visibility_of_element()
|
|
|
|
device_2_chat = chat_element.click()
|
|
|
|
if not device_2_chat.chat_element_by_text(message).is_element_displayed():
|
2018-07-19 09:57:45 +00:00
|
|
|
self.errors.append("Message with test '%s' was not received" % message)
|
2018-06-28 18:46:51 +00:00
|
|
|
if not device_2_chat.add_to_contacts.is_element_displayed():
|
|
|
|
self.errors.append('Add to contacts button is not shown')
|
2019-06-28 14:36:24 +00:00
|
|
|
if device_2_chat.user_name_text.text != default_username_1:
|
|
|
|
self.errors.append("Default username '%s' is not shown in one-to-one chat" % default_username_1)
|
2018-06-28 18:46:51 +00:00
|
|
|
device_2_chat.chat_options.click()
|
|
|
|
device_2_chat.view_profile_button.click()
|
2020-01-28 13:55:28 +00:00
|
|
|
|
|
|
|
# Skip until edit-profile feature returned
|
|
|
|
|
|
|
|
# if not device_2_chat.contact_profile_picture.is_element_image_equals_template('sauce_logo.png'):
|
|
|
|
# self.errors.append("Updated profile picture is not shown in one-to-one chat")
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5316)
|
|
|
|
@marks.critical
|
2018-06-28 18:46:51 +00:00
|
|
|
def test_add_to_contacts(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
|
2019-07-18 15:44:06 +00:00
|
|
|
device_1_home, device_2_home = device_1.create_user(), device_2.create_user()
|
2019-06-26 14:57:46 +00:00
|
|
|
profile_1 = device_1_home.profile_button.click()
|
|
|
|
default_username_1 = profile_1.default_username_text.text
|
|
|
|
device_1_home = profile_1.get_back_to_home_view()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
device_2_public_key = device_2_home.get_public_key()
|
|
|
|
profile_2 = device_2_home.get_profile_view()
|
2020-01-28 13:55:28 +00:00
|
|
|
# TODO: skip until edit image profile is enabled
|
|
|
|
# file_name = 'sauce_logo.png'
|
|
|
|
# profile_2.edit_profile_picture(file_name)
|
2019-06-26 14:57:46 +00:00
|
|
|
default_username_2 = profile_2.default_username_text.text
|
2018-06-28 18:46:51 +00:00
|
|
|
profile_2.home_button.click()
|
|
|
|
|
2020-03-03 12:47:03 +00:00
|
|
|
device_1_chat = device_1_home.add_contact(device_2_public_key + ' ')
|
2018-06-28 18:46:51 +00:00
|
|
|
message = 'hello'
|
|
|
|
device_1_chat.chat_message_input.send_keys(message)
|
|
|
|
device_1_chat.send_message_button.click()
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
chat_element = device_2_home.get_chat(default_username_1)
|
2018-06-28 18:46:51 +00:00
|
|
|
chat_element.wait_for_visibility_of_element()
|
|
|
|
device_2_chat = chat_element.click()
|
|
|
|
if not device_2_chat.chat_element_by_text(message).is_element_displayed():
|
2018-07-19 09:57:45 +00:00
|
|
|
self.errors.append("Message with text '%s' was not received" % message)
|
2018-10-18 08:23:54 +00:00
|
|
|
device_2_chat.connection_status.wait_for_invisibility_of_element(60)
|
2018-06-28 18:46:51 +00:00
|
|
|
device_2_chat.add_to_contacts.click()
|
|
|
|
|
|
|
|
device_2_chat.get_back_to_home_view()
|
2019-04-05 13:05:23 +00:00
|
|
|
device_2_home.plus_button.click()
|
|
|
|
device_2_contacts = device_2_home.start_new_chat_button.click()
|
2019-07-29 00:35:36 +00:00
|
|
|
if not device_2_contacts.element_by_text(default_username_1).is_element_displayed():
|
|
|
|
self.errors.append('%s is not added to contacts' % default_username_1)
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2019-06-26 14:57:46 +00:00
|
|
|
if device_1_chat.user_name_text.text != default_username_2:
|
|
|
|
self.errors.append("Default username '%s' is not shown in one-to-one chat" % default_username_2)
|
2018-06-28 18:46:51 +00:00
|
|
|
device_1_chat.chat_options.click()
|
|
|
|
device_1_chat.view_profile_button.click()
|
2020-01-28 13:55:28 +00:00
|
|
|
# TODO: skip until edit image profile is enabled
|
|
|
|
# if not device_1_chat.contact_profile_picture.is_element_image_equals_template(file_name):
|
|
|
|
# self.errors.append("Updated profile picture is not shown in one-to-one chat")
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5373)
|
|
|
|
@marks.high
|
2018-06-28 18:46:51 +00:00
|
|
|
def test_send_and_open_links(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
|
2019-07-18 15:44:06 +00:00
|
|
|
home_1, home_2 = device_1.create_user(), device_2.create_user()
|
2019-06-28 14:36:24 +00:00
|
|
|
profile_1 = home_1.profile_button.click()
|
|
|
|
default_username_1 = profile_1.default_username_text.text
|
|
|
|
home_1 = profile_1.get_back_to_home_view()
|
2018-06-28 18:46:51 +00:00
|
|
|
public_key_2 = home_2.get_public_key()
|
|
|
|
home_2.home_button.click()
|
|
|
|
|
|
|
|
chat_1 = home_1.add_contact(public_key_2)
|
Render markdown
Fixes: https://github.com/status-im/trailofbits-audit/issues/47
Fixes: https://github.com/status-im/trailofbits-audit/issues/46
Fixes: https://github.com/status-im/trailofbits-audit/issues/44
Fixes: https://github.com/status-im/security-reports/issues/13
Fixes: https://github.com/status-im/security-reports/issues/5
Fixes: https://github.com/status-im/status-react/issues/8995
This commits re-introduce rendering of markdown text and implent a few
changes:
1) Parsing of the message content is now in status-go, this includes
markdown, line-count, and rtl. Parsing is not nested, as there's some
rendering degradation involved as we nest components, unclear exactly if
it's react-native or clojure, haven't looked too deeply into it.
2) Emojii type messages are not parsed on the sending side, not the
receiving one, using the appropriate content-type
3) Fixes a few issues with chat input rendering, currrently we use
`chats/current-chat` subscription which is very heavy and should not be
used unless necessary, and means that
any change to chat will trigger a re-render, which caused re-rendering
of input container on each received message. Also to note that
input-container is fairly heavy to render, and it's rendered twice at
each keypress on input.
The inline markdow supported is:
*italic* or _italic_
**bold** or __bold__
`inline code`
http://test.com links
\#status-tag
The block markdown supported is:
\# Headers
```
code blocks
```
> Quotereply
The styling is very basic at the moment, but can be improved.
Adding other markdown (photo,mentions) is straightforward and should
come at little performance cost (unless the component to render is
heavy, i.e a photo for example).
There are some behavioral changes with this commit:
1) Links are only parsed if starting with http:// or https://, meaning that
blah.com won't be parsed, nor www.test.com. This behavior is consistent
with discord for example and allows faster parsing at little expense to
ser experience imo. Fixes a few security issues as well.
2) Content is not anymore capped (regression), that's due to the fact that
before we only rendered text and react-native allowed us easily to limit
the number of lines, but adding markdown support means that this
strategy is not viable anymore. Performance of rendering don't see to be
very much impacted by this, I would re-introduce it if necessary, but
I'd rather do that in a separate PR.
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2019-11-07 13:41:37 +00:00
|
|
|
url_message = 'http://status.im'
|
2018-06-28 18:46:51 +00:00
|
|
|
chat_1.chat_message_input.send_keys(url_message)
|
|
|
|
chat_1.send_message_button.click()
|
|
|
|
chat_1.get_back_to_home_view()
|
2020-03-17 17:27:10 +00:00
|
|
|
chat_2 = home_2.get_chat(default_username_1).click()
|
2018-06-28 18:46:51 +00:00
|
|
|
chat_2.element_starts_with_text(url_message, 'button').click()
|
2018-07-12 19:41:50 +00:00
|
|
|
web_view = chat_2.open_in_status_button.click()
|
2018-06-28 18:46:51 +00:00
|
|
|
try:
|
2019-05-02 17:29:36 +00:00
|
|
|
web_view.find_full_text('Private, Secure Communication')
|
2018-06-28 18:46:51 +00:00
|
|
|
except TimeoutException:
|
2018-11-07 15:50:08 +00:00
|
|
|
self.errors.append('Device 2: URL was not opened from 1-1 chat')
|
2018-06-28 18:46:51 +00:00
|
|
|
web_view.back_to_home_button.click()
|
2019-03-19 12:35:15 +00:00
|
|
|
chat_2.home_button.click()
|
|
|
|
chat_2.back_button.click()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
chat_name = ''.join(random.choice(string.ascii_lowercase) for _ in range(7))
|
|
|
|
home_1.join_public_chat(chat_name)
|
|
|
|
home_2.join_public_chat(chat_name)
|
|
|
|
chat_2.chat_message_input.send_keys(url_message)
|
|
|
|
chat_2.send_message_button.click()
|
|
|
|
chat_1.element_starts_with_text(url_message, 'button').click()
|
2018-07-12 19:41:50 +00:00
|
|
|
web_view = chat_1.open_in_status_button.click()
|
2018-06-28 18:46:51 +00:00
|
|
|
try:
|
2019-05-02 17:29:36 +00:00
|
|
|
web_view.find_full_text('Private, Secure Communication')
|
2018-06-28 18:46:51 +00:00
|
|
|
except TimeoutException:
|
2018-11-07 15:50:08 +00:00
|
|
|
self.errors.append('Device 1: URL was not opened from 1-1 chat')
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5374)
|
|
|
|
@marks.high
|
2019-02-15 16:14:42 +00:00
|
|
|
def test_message_marked_as_sent_in_1_1_chat(self):
|
|
|
|
self.create_drivers(1)
|
|
|
|
sign_in_view = SignInView(self.drivers[0])
|
|
|
|
home_view = sign_in_view.create_user()
|
|
|
|
chat_view = home_view.add_contact(basic_user['public_key'])
|
2018-07-13 10:56:36 +00:00
|
|
|
message = 'test message'
|
2019-02-15 16:14:42 +00:00
|
|
|
chat_view.chat_message_input.send_keys(message)
|
|
|
|
chat_view.send_message_button.click()
|
|
|
|
if chat_view.chat_element_by_text(message).status.text != 'Sent':
|
2018-07-13 10:56:36 +00:00
|
|
|
self.errors.append("'Sent' status is not shown under the sent text message")
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-07-13 10:56:36 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5362)
|
2020-02-05 18:20:24 +00:00
|
|
|
@marks.medium
|
2018-07-19 09:57:45 +00:00
|
|
|
def test_unread_messages_counter_1_1_chat(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-07-18 15:44:06 +00:00
|
|
|
device_1_home, device_2_home = device_1.create_user(), device_2.create_user()
|
2019-06-26 14:57:46 +00:00
|
|
|
profile_2 = device_2_home.profile_button.click()
|
|
|
|
default_username_2 = profile_2.default_username_text.text
|
|
|
|
device_2_home = profile_2.get_back_to_home_view()
|
2018-07-19 09:57:45 +00:00
|
|
|
device_1_public_key = device_1_home.get_public_key()
|
|
|
|
device_1_home.home_button.click()
|
|
|
|
|
|
|
|
device_2_chat = device_2_home.add_contact(device_1_public_key)
|
|
|
|
|
|
|
|
message = 'test message'
|
|
|
|
device_2_chat.chat_message_input.send_keys(message)
|
|
|
|
device_2_chat.send_message_button.click()
|
|
|
|
|
|
|
|
if device_1_home.home_button.counter.text != '1':
|
|
|
|
self.errors.append('New messages counter is not shown on Home button')
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
chat_element = device_1_home.get_chat(default_username_2)
|
2018-07-19 09:57:45 +00:00
|
|
|
if chat_element.new_messages_counter.text != '1':
|
|
|
|
self.errors.append('New messages counter is not shown on chat element')
|
|
|
|
|
|
|
|
chat_element.click()
|
|
|
|
device_1_home.get_back_to_home_view()
|
|
|
|
|
|
|
|
if device_1_home.home_button.counter.is_element_displayed():
|
|
|
|
self.errors.append('New messages counter is shown on Home button for already seen message')
|
|
|
|
|
2020-02-05 18:20:24 +00:00
|
|
|
if chat_element.new_messages_counter.text == '1':
|
2018-07-19 09:57:45 +00:00
|
|
|
self.errors.append('New messages counter is shown on chat element for already seen message')
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5425)
|
|
|
|
@marks.medium
|
2019-11-21 10:26:53 +00:00
|
|
|
# TODO: should be completed with quoting after fix 9480
|
|
|
|
def test_markdown_support_in_messages(self):
|
2018-07-19 09:57:45 +00:00
|
|
|
self.create_drivers(2)
|
|
|
|
sign_in_1, sign_in_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-07-18 15:44:06 +00:00
|
|
|
device_1_home, device_2_home = sign_in_1.create_user(), sign_in_2.create_user()
|
2019-06-28 14:36:24 +00:00
|
|
|
profile_2 = device_2_home.profile_button.click()
|
|
|
|
default_username_2 = profile_2.default_username_text.text
|
|
|
|
device_2_home = profile_2.get_back_to_home_view()
|
2018-07-19 09:57:45 +00:00
|
|
|
device_1_public_key = device_1_home.get_public_key()
|
|
|
|
device_1_home.home_button.click()
|
|
|
|
|
|
|
|
device_2_chat = device_2_home.add_contact(device_1_public_key)
|
2019-11-21 10:26:53 +00:00
|
|
|
device_2_chat.chat_message_input.send_keys('test message')
|
2018-07-19 09:57:45 +00:00
|
|
|
device_2_chat.send_message_button.click()
|
2020-03-17 17:27:10 +00:00
|
|
|
device_1_chat = device_1_home.get_chat(default_username_2).click()
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2019-11-21 10:26:53 +00:00
|
|
|
markdown = {
|
|
|
|
'bold text in asterics' : '**',
|
|
|
|
'bold text in underscores' : '__',
|
|
|
|
'italic text in asteric': '*',
|
|
|
|
'italic text in underscore' : '_',
|
|
|
|
'inline code' : '`',
|
|
|
|
'code blocks' : '```',
|
|
|
|
# 'quote reply (one row)' : '>',
|
|
|
|
}
|
|
|
|
|
|
|
|
for message, symbol in markdown.items():
|
|
|
|
device_1_home.just_fyi('checking that "%s" is applied (%s) in 1-1 chat' % (message, symbol))
|
|
|
|
message_to_send = symbol + message + symbol if 'quote' not in message else symbol + message
|
|
|
|
device_2_chat.chat_message_input.send_keys(message_to_send)
|
|
|
|
device_2_chat.send_message_button.click()
|
|
|
|
if not device_2_chat.chat_element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append('%s is not displayed with markdown in 1-1 chat for the sender \n' % message)
|
|
|
|
|
|
|
|
if not device_1_chat.chat_element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append('%s is not displayed with markdown in 1-1 chat for the recipient \n' % message)
|
2018-07-19 09:57:45 +00:00
|
|
|
|
|
|
|
device_1_chat.get_back_to_home_view()
|
|
|
|
device_2_chat.get_back_to_home_view()
|
|
|
|
chat_name = device_1_home.get_public_chat_name()
|
|
|
|
device_1_home.join_public_chat(chat_name)
|
|
|
|
device_2_home.join_public_chat(chat_name)
|
|
|
|
|
2019-11-21 10:26:53 +00:00
|
|
|
for message, symbol in markdown.items():
|
|
|
|
device_1_home.just_fyi('checking that "%s" is applied (%s) in public chat' % (message, symbol))
|
|
|
|
message_to_send = symbol + message + symbol if 'quote' not in message else symbol + message
|
|
|
|
device_2_chat.chat_message_input.send_keys(message_to_send)
|
|
|
|
device_2_chat.send_message_button.click()
|
|
|
|
if not device_2_chat.chat_element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append('%s is not displayed with markdown in public chat for the sender \n' % message)
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2019-11-21 10:26:53 +00:00
|
|
|
if not device_1_chat.chat_element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append('%s is not displayed with markdown in public chat for the recipient \n' % message)
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5385)
|
|
|
|
@marks.high
|
2018-07-19 09:57:45 +00:00
|
|
|
def test_timestamp_in_chats(self):
|
|
|
|
self.create_drivers(2)
|
2018-08-15 12:51:52 +00:00
|
|
|
sign_in_1, sign_in_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-08-20 23:29:35 +00:00
|
|
|
device_1_home, device_2_home = sign_in_1.create_user(), sign_in_2.create_user()
|
2018-07-19 09:57:45 +00:00
|
|
|
device_2_public_key = device_2_home.get_public_key()
|
|
|
|
device_2_home.home_button.click()
|
2020-01-03 15:24:05 +00:00
|
|
|
device_1_profile = device_1_home.profile_button.click()
|
|
|
|
default_username_1 = device_1_profile.default_username_text.text
|
|
|
|
device_1_profile.home_button.click()
|
2018-07-19 09:57:45 +00:00
|
|
|
|
|
|
|
device_1_chat = device_1_home.add_contact(device_2_public_key)
|
|
|
|
|
2020-01-03 15:24:05 +00:00
|
|
|
device_1_chat.just_fyi('check user picture and timestamps in chat for sender and recipient in 1-1 chat')
|
2018-07-19 09:57:45 +00:00
|
|
|
message = 'test text'
|
|
|
|
device_1_chat.chat_message_input.send_keys(message)
|
|
|
|
device_1_chat.send_message_button.click()
|
2020-01-03 15:24:05 +00:00
|
|
|
sent_time = device_1_chat.convert_device_time_to_chat_timestamp()
|
|
|
|
|
2018-07-19 09:57:45 +00:00
|
|
|
if not device_1_chat.chat_element_by_text(message).contains_text(sent_time):
|
|
|
|
self.errors.append('Timestamp is not displayed in 1-1 chat for the sender')
|
|
|
|
if device_1_chat.chat_element_by_text(message).member_photo.is_element_displayed():
|
|
|
|
self.errors.append('Member photo is displayed in 1-1 chat for the sender')
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
device_2_chat = device_2_home.get_chat(default_username_1).click()
|
2018-07-19 09:57:45 +00:00
|
|
|
if not device_2_chat.chat_element_by_text(message).contains_text(sent_time):
|
|
|
|
self.errors.append('Timestamp is not displayed in 1-1 chat for the recipient')
|
2020-01-03 15:24:05 +00:00
|
|
|
if device_2_chat.chat_element_by_text(message).member_photo.is_element_displayed():
|
|
|
|
self.errors.append('Member photo is displayed in 1-1 chat for the recipient')
|
2020-01-21 13:59:01 +00:00
|
|
|
# TODO: disabled due to issue 'yesterday' is shown, can't emulate manually
|
|
|
|
# for chat in device_1_chat, device_2_chat:
|
|
|
|
# chat.verify_message_is_under_today_text(message, self.errors)
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2020-01-03 15:24:05 +00:00
|
|
|
device_1_chat.just_fyi('check user picture and timestamps in chat for sender and recipient in public chat')
|
2018-07-19 09:57:45 +00:00
|
|
|
chat_name = device_1_home.get_public_chat_name()
|
2020-01-03 15:24:05 +00:00
|
|
|
for chat in device_1_chat, device_2_chat:
|
|
|
|
home_view = chat.get_back_to_home_view()
|
|
|
|
home_view.join_public_chat(chat_name)
|
2018-07-19 09:57:45 +00:00
|
|
|
|
|
|
|
device_2_chat.chat_message_input.send_keys(message)
|
|
|
|
device_2_chat.send_message_button.click()
|
2020-01-03 15:24:05 +00:00
|
|
|
sent_time = device_2_chat.convert_device_time_to_chat_timestamp()
|
2018-07-19 09:57:45 +00:00
|
|
|
if not device_2_chat.chat_element_by_text(message).contains_text(sent_time):
|
|
|
|
self.errors.append('Timestamp is not displayed in public chat for the sender')
|
|
|
|
if device_2_chat.chat_element_by_text(message).member_photo.is_element_displayed():
|
|
|
|
self.errors.append('Member photo is displayed in public chat for the sender')
|
|
|
|
|
|
|
|
if not device_1_chat.chat_element_by_text(message).contains_text(sent_time):
|
|
|
|
self.errors.append('Timestamp is not displayed in public chat for the recipient')
|
|
|
|
if not device_1_chat.chat_element_by_text(message).member_photo.is_element_displayed():
|
2020-01-03 15:24:05 +00:00
|
|
|
self.errors.append('Member photo is not displayed in public chat for the recipient')
|
2020-01-21 13:59:01 +00:00
|
|
|
# TODO: disabled due to issue 'yesterday' is shown, can't emulate manually
|
|
|
|
# for chat in device_1_chat, device_2_chat:
|
|
|
|
# chat.verify_message_is_under_today_text(message, self.errors)
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-07-19 09:57:45 +00:00
|
|
|
|
2018-11-20 14:56:44 +00:00
|
|
|
@marks.testrail_id(5405)
|
|
|
|
@marks.high
|
2019-08-06 14:36:20 +00:00
|
|
|
@marks.skip
|
2019-10-21 12:48:45 +00:00
|
|
|
# TODO: temporary skipped due to 8601
|
2018-11-20 14:56:44 +00:00
|
|
|
def test_fiat_value_is_correctly_calculated_on_recipient_side(self):
|
|
|
|
sender = transaction_senders['Y']
|
|
|
|
recipient = transaction_recipients['I']
|
|
|
|
|
|
|
|
self.create_drivers(2)
|
|
|
|
signin_view1, signin_view2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
home_view1, home_view2 = signin_view1.recover_access(sender['passphrase']), signin_view2.recover_access(
|
|
|
|
recipient['passphrase'])
|
|
|
|
|
|
|
|
devices = [
|
|
|
|
{'home_view': home_view1, 'currency': 'AUD'},
|
|
|
|
{'home_view': home_view2, 'currency': 'EUR'},
|
|
|
|
]
|
|
|
|
|
|
|
|
# changing currency for both devices
|
|
|
|
for device in devices:
|
2019-06-28 14:36:24 +00:00
|
|
|
wallet_view = device['home_view'].wallet_button.click()
|
2019-07-12 07:16:02 +00:00
|
|
|
wallet_view.set_up_wallet()
|
2019-06-28 14:36:24 +00:00
|
|
|
wallet_view.set_currency(device['currency'])
|
|
|
|
wallet_view.get_back_to_home_view()
|
2018-11-20 14:56:44 +00:00
|
|
|
|
|
|
|
device1 = devices[0]
|
|
|
|
device2 = devices[1]
|
|
|
|
|
|
|
|
# setting up device1 wallet
|
2019-06-28 14:36:24 +00:00
|
|
|
# wallet1 = device1['home_view'].wallet_button.click()
|
|
|
|
# wallet1.get_back_to_home_view()
|
2018-11-20 14:56:44 +00:00
|
|
|
|
|
|
|
# sending ETH to device2 in 1*1 chat
|
|
|
|
device1_chat = device1['home_view'].add_contact(recipient['public_key'])
|
|
|
|
send_amount = device1_chat.get_unique_amount()
|
|
|
|
device1_chat.send_transaction_in_1_1_chat('ETHro', send_amount)
|
|
|
|
|
|
|
|
sent_message = device1_chat.chat_element_by_text(send_amount)
|
|
|
|
if not sent_message.is_element_displayed() and not sent_message.contains_text(device1['currency']):
|
|
|
|
self.errors.append('Wrong currency fiat value while sending ETH in 1*1 chat.')
|
|
|
|
|
|
|
|
device2_chat = device2['home_view'].get_chat_with_user(sender['username']).click()
|
|
|
|
received_message = device2_chat.chat_element_by_text(send_amount)
|
|
|
|
if not received_message.is_element_displayed() and not received_message.contains_text(device2['currency']):
|
|
|
|
self.errors.append('Wrong currency fiat value while receiving ETH in 1*1 chat.')
|
|
|
|
|
2019-06-28 14:36:24 +00:00
|
|
|
# Currently disabled because sending / requesting funds from wallet is not shown in chat
|
|
|
|
# device1_chat.get_back_to_home_view()
|
|
|
|
# wallet1 = device1['home_view'].wallet_button.click()
|
|
|
|
# send_amount = device1_chat.get_unique_amount()
|
2018-11-20 14:56:44 +00:00
|
|
|
|
|
|
|
# Send and request some ETH from wallet and check whether the fiat currency value of
|
|
|
|
# the new messages is equal to user-selected
|
2019-06-28 14:36:24 +00:00
|
|
|
# wallet1.send_transaction(asset_name='ETHro', recipient=recipient['username'], amount=send_amount)
|
|
|
|
# wallet1.get_back_to_home_view()
|
2020-03-17 17:27:10 +00:00
|
|
|
# device1_chat = device1['home_view'].get_chat(recipient['username']).click()
|
2019-06-28 14:36:24 +00:00
|
|
|
#
|
|
|
|
# sent_message = device1_chat.chat_element_by_text(send_amount)
|
|
|
|
# received_message = device2_chat.chat_element_by_text(send_amount)
|
|
|
|
#
|
|
|
|
# if not sent_message.is_element_displayed() and not sent_message.contains_text(device1['currency']):
|
|
|
|
# self.errors.append('Wrong currency fiat value while sending ETH from wallet.')
|
|
|
|
#
|
|
|
|
# if not received_message.is_element_displayed() and not sent_message.contains_text(device2['currency']):
|
|
|
|
# self.errors.append('Wrong currency fiat value while receiving ETH sent via wallet.')
|
2018-11-20 14:56:44 +00:00
|
|
|
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-11-20 14:56:44 +00:00
|
|
|
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
@marks.all
|
|
|
|
@marks.chat
|
|
|
|
class TestMessagesOneToOneChatSingle(SingleDeviceTestCase):
|
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5317)
|
|
|
|
@marks.critical
|
2018-06-28 18:46:51 +00:00
|
|
|
def test_copy_and_paste_messages(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
|
|
|
|
home.join_public_chat(''.join(random.choice(string.ascii_lowercase) for _ in range(7)))
|
|
|
|
chat = sign_in.get_chat_view()
|
|
|
|
message_text = 'test'
|
|
|
|
message_input = chat.chat_message_input
|
|
|
|
message_input.send_keys(message_text)
|
|
|
|
chat.send_message_button.click()
|
|
|
|
|
|
|
|
chat.chat_element_by_text(message_text).long_press_element()
|
2019-03-18 11:15:08 +00:00
|
|
|
chat.element_by_text('Copy').click()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
message_input.paste_text_from_clipboard()
|
|
|
|
if message_input.text != message_text:
|
|
|
|
self.errors.append('Message text was not copied in a public chat')
|
|
|
|
|
|
|
|
chat.get_back_to_home_view()
|
2018-09-17 08:50:01 +00:00
|
|
|
home.add_contact(transaction_senders['M']['public_key'])
|
2018-06-28 18:46:51 +00:00
|
|
|
message_input.send_keys(message_text)
|
|
|
|
chat.send_message_button.click()
|
|
|
|
|
|
|
|
chat.chat_element_by_text(message_text).long_press_element()
|
2019-03-18 11:15:08 +00:00
|
|
|
chat.element_by_text('Copy').click()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
message_input.paste_text_from_clipboard()
|
|
|
|
if message_input.text != message_text:
|
|
|
|
self.errors.append('Message text was not copied in 1-1 chat')
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5322)
|
2019-03-05 16:43:30 +00:00
|
|
|
@marks.medium
|
2018-06-28 18:46:51 +00:00
|
|
|
def test_delete_cut_and_paste_messages(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2018-09-17 08:50:01 +00:00
|
|
|
chat = home.add_contact(transaction_senders['N']['public_key'])
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
message_text = 'test'
|
|
|
|
message_input = chat.chat_message_input
|
|
|
|
message_input.send_keys(message_text)
|
|
|
|
|
|
|
|
message_input.delete_last_symbols(2)
|
2018-08-16 16:47:13 +00:00
|
|
|
current_text = message_input.text
|
|
|
|
if current_text != message_text[:-2]:
|
2019-10-21 12:48:45 +00:00
|
|
|
self.driver.fail("Message input text '%s' doesn't match expected '%s'" % (current_text, message_text[:-2]))
|
2018-06-28 18:46:51 +00:00
|
|
|
|
|
|
|
message_input.cut_text()
|
|
|
|
|
|
|
|
message_input.paste_text_from_clipboard()
|
|
|
|
chat.send_message_button.click()
|
|
|
|
|
2019-11-20 16:27:29 +00:00
|
|
|
chat.chat_element_by_text(message_text[:-2]).wait_for_visibility_of_element(2)
|
2018-06-28 18:46:51 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5328)
|
|
|
|
@marks.critical
|
2018-11-07 12:26:32 +00:00
|
|
|
@marks.battery_consumption
|
2018-06-28 18:46:51 +00:00
|
|
|
def test_send_emoji(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
|
2018-06-29 17:27:30 +00:00
|
|
|
home.join_public_chat(home.get_public_chat_name())
|
2018-06-28 18:46:51 +00:00
|
|
|
chat = sign_in.get_chat_view()
|
|
|
|
emoji_name = random.choice(list(emoji.EMOJI_UNICODE))
|
|
|
|
emoji_unicode = emoji.EMOJI_UNICODE[emoji_name]
|
|
|
|
chat.chat_message_input.send_keys(emoji.emojize(emoji_name))
|
|
|
|
chat.send_message_button.click()
|
|
|
|
|
|
|
|
if not chat.chat_element_by_text(emoji_unicode).is_element_displayed():
|
|
|
|
self.errors.append('Message with emoji was not sent in public chat')
|
|
|
|
|
|
|
|
chat.get_back_to_home_view()
|
2018-09-17 08:50:01 +00:00
|
|
|
home.add_contact(transaction_senders['O']['public_key'])
|
2018-06-28 18:46:51 +00:00
|
|
|
chat.chat_message_input.send_keys(emoji.emojize(emoji_name))
|
|
|
|
chat.send_message_button.click()
|
|
|
|
|
|
|
|
if not chat.chat_element_by_text(emoji_unicode).is_element_displayed():
|
|
|
|
self.errors.append('Message with emoji was not sent in 1-1 chat')
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-11-13 08:25:55 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(5393)
|
|
|
|
@marks.high
|
2019-08-06 14:36:20 +00:00
|
|
|
@marks.skip
|
2019-10-21 12:48:45 +00:00
|
|
|
# TODO: temporary skipped due to 8601
|
2018-11-13 08:25:55 +00:00
|
|
|
def test_that_fiat_value_is_correct_for_token_transactions(self):
|
|
|
|
sender_passphrase = transaction_senders['X']['passphrase']
|
|
|
|
recipient_public_key = transaction_recipients['H']['public_key']
|
|
|
|
recipient_user_name = transaction_recipients['H']['username']
|
|
|
|
default_currency = 'USD'
|
|
|
|
user_currency = 'EUR'
|
|
|
|
sigin_view = SignInView(self.driver)
|
|
|
|
home_view = sigin_view.recover_access(sender_passphrase)
|
|
|
|
wallet = home_view.wallet_button.click()
|
2019-07-15 15:53:56 +00:00
|
|
|
wallet.set_up_wallet()
|
2018-11-13 08:25:55 +00:00
|
|
|
|
|
|
|
wallet.get_back_to_home_view()
|
|
|
|
|
|
|
|
chat = home_view.add_contact(recipient_public_key)
|
|
|
|
send_amount, request_amount = [chat.get_unique_amount() for _ in range(2)]
|
|
|
|
# Send and request some tokens in 1x1 chat and check whether the fiat currency value of the messages is equal
|
|
|
|
# to default
|
|
|
|
chat.send_transaction_in_1_1_chat('STT', send_amount)
|
|
|
|
chat.request_transaction_in_1_1_chat('STT', request_amount)
|
|
|
|
|
|
|
|
send_message = chat.chat_element_by_text(send_amount)
|
2018-11-20 14:56:44 +00:00
|
|
|
if not send_message.is_element_displayed() and not send_message.contains_text(default_currency):
|
2018-11-13 08:25:55 +00:00
|
|
|
self.errors.append('Wrong fiat value while sending assets in 1-1 chat with default currency.')
|
|
|
|
|
|
|
|
request_message = chat.chat_element_by_text(request_amount)
|
2018-11-20 14:56:44 +00:00
|
|
|
if not request_message.is_element_displayed() and not request_message.contains_text(default_currency):
|
2018-11-13 08:25:55 +00:00
|
|
|
self.errors.append('Wrong fiat value while requesting assets in 1-1 chat with default currency.')
|
|
|
|
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
# Switch default currency to user-selected
|
2019-06-28 14:36:24 +00:00
|
|
|
wallet_view = sigin_view.wallet_button.click()
|
|
|
|
wallet_view.set_currency(user_currency)
|
|
|
|
wallet_view.get_back_to_home_view()
|
2018-11-13 08:25:55 +00:00
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
chat = home_view.get_chat(recipient_user_name).click()
|
2018-11-13 08:25:55 +00:00
|
|
|
|
|
|
|
# Check whether the fiat currency value of the messages sent is not changed to user-selected
|
|
|
|
send_message = chat.chat_element_by_text(send_amount)
|
2018-11-20 14:56:44 +00:00
|
|
|
if not send_message.is_element_displayed() and not send_message.contains_text(default_currency):
|
2018-11-13 08:25:55 +00:00
|
|
|
self.errors.append('Wrong fiat value while sending assets in 1-1 chat with default currency.')
|
|
|
|
|
|
|
|
request_message = chat.chat_element_by_text(request_amount)
|
2018-11-20 14:56:44 +00:00
|
|
|
if not request_message.is_element_displayed() and not request_message.contains_text(default_currency):
|
2018-11-13 08:25:55 +00:00
|
|
|
self.errors.append('Wrong fiat value while requesting assets in 1-1 chat with default currency.')
|
|
|
|
|
|
|
|
# Send and request some tokens in 1x1 chat and check whether the fiat currency value of
|
|
|
|
# the new messages is equal to user-selected
|
|
|
|
send_amount, request_amount = [chat.get_unique_amount() for _ in range(2)]
|
|
|
|
chat.send_transaction_in_1_1_chat('STT', send_amount)
|
|
|
|
chat.request_transaction_in_1_1_chat('STT', request_amount)
|
|
|
|
|
|
|
|
send_message = chat.chat_element_by_text(send_amount)
|
2018-11-20 14:56:44 +00:00
|
|
|
if not send_message.is_element_displayed() and not send_message.contains_text(user_currency):
|
2018-11-13 08:25:55 +00:00
|
|
|
self.errors.append('Wrong fiat value while sending assets in 1-1 chat with user selected currency.')
|
|
|
|
|
|
|
|
request_message = chat.chat_element_by_text(request_amount)
|
2018-11-20 14:56:44 +00:00
|
|
|
if not request_message.is_element_displayed() and not request_message.contains_text(user_currency):
|
2018-11-13 08:25:55 +00:00
|
|
|
self.errors.append('Wrong fiat value while requesting assets in 1-1 chat with user selected currency.')
|
|
|
|
|
2019-06-28 14:36:24 +00:00
|
|
|
# disabled since after merge https://github.com/status-im/status-react/pull/8425 no messages are shown
|
|
|
|
# in 1-1 chat after sending from wallet
|
2018-11-13 08:25:55 +00:00
|
|
|
|
2019-06-28 14:36:24 +00:00
|
|
|
# chat.get_back_to_home_view()
|
|
|
|
#
|
|
|
|
# wallet = home_view.wallet_button.click()
|
|
|
|
# send_amount, request_amount = [chat.get_unique_amount() for _ in range(2)]
|
2018-11-13 08:25:55 +00:00
|
|
|
|
|
|
|
# Send and request some tokens from wallet and check whether the fiat currency value of
|
|
|
|
# the new messages is equal to user-selected
|
2019-06-28 14:36:24 +00:00
|
|
|
#
|
|
|
|
# wallet.send_transaction(asset_name='STT', recipient=recipient_user_name, amount=send_amount)
|
|
|
|
# wallet.receive_transaction(asset_name='STT', recipient=recipient_user_name, amount=request_amount)
|
|
|
|
#
|
|
|
|
# wallet.get_back_to_home_view()
|
2020-03-17 17:27:10 +00:00
|
|
|
# chat = home_view.get_chat(recipient_user_name).click()
|
2019-06-28 14:36:24 +00:00
|
|
|
#
|
|
|
|
# send_message = chat.chat_element_by_text(send_amount)
|
|
|
|
# if not send_message.is_element_displayed() and not send_message.contains_text(user_currency):
|
|
|
|
# self.errors.append('Wrong fiat value while sending assets from wallet with user selected currency.')
|
|
|
|
#
|
|
|
|
# request_message = chat.chat_element_by_text(request_amount)
|
|
|
|
# if not request_message.is_element_displayed() and not request_message.contains_text(user_currency):
|
|
|
|
# self.errors.append('Wrong fiat value while requesting assets from wallet with user selected currency.')
|
2018-11-13 08:25:55 +00:00
|
|
|
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2019-03-12 12:18:03 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(5782)
|
2019-10-10 09:29:22 +00:00
|
|
|
@marks.critical
|
2019-03-12 12:18:03 +00:00
|
|
|
def test_install_pack_and_send_sticker(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
2019-09-05 02:32:33 +00:00
|
|
|
home = sign_in.create_user()
|
2019-10-10 09:29:22 +00:00
|
|
|
|
|
|
|
sign_in.just_fyi('join public chat and check that stickers are not available on Ropsten')
|
2019-09-05 02:32:33 +00:00
|
|
|
chat_name = home.get_public_chat_name()
|
|
|
|
home.join_public_chat(chat_name)
|
2019-03-12 12:18:03 +00:00
|
|
|
chat = sign_in.get_chat_view()
|
2019-09-05 02:32:33 +00:00
|
|
|
if chat.show_stickers_button.is_element_displayed():
|
|
|
|
self.errors.append('Sticker button is shown while on Ropsten')
|
2019-10-10 09:29:22 +00:00
|
|
|
|
|
|
|
sign_in.just_fyi('switch to mainnet')
|
2019-09-05 02:32:33 +00:00
|
|
|
chat.get_back_to_home_view()
|
|
|
|
profile = home.profile_button.click()
|
|
|
|
profile.switch_network('Mainnet with upstream RPC')
|
2020-03-17 17:27:10 +00:00
|
|
|
home.get_chat('#' + chat_name).click()
|
2019-10-10 09:29:22 +00:00
|
|
|
|
|
|
|
sign_in.just_fyi('install free sticker pack and use it in public chat')
|
2019-03-12 12:18:03 +00:00
|
|
|
chat.show_stickers_button.click()
|
|
|
|
chat.get_stickers.click()
|
2019-09-05 02:32:33 +00:00
|
|
|
chat.install_sticker_pack_by_name('Status Cat')
|
|
|
|
chat.back_button.click()
|
2019-03-12 12:18:03 +00:00
|
|
|
time.sleep(2)
|
|
|
|
chat.swipe_left()
|
|
|
|
chat.sticker_icon.click()
|
2019-09-05 02:32:33 +00:00
|
|
|
if not chat.chat_item.is_element_displayed():
|
|
|
|
self.errors.append('Sticker was not sent')
|
|
|
|
chat.swipe_right()
|
|
|
|
if not chat.sticker_icon.is_element_displayed():
|
|
|
|
self.errors.append('Sticker is not shown in recently used list')
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2019-03-12 12:18:03 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(5783)
|
2019-10-10 09:29:22 +00:00
|
|
|
@marks.critical
|
|
|
|
def test_can_use_purchased_stickers_on_recovered_account(self):
|
2019-03-12 12:18:03 +00:00
|
|
|
sign_in_view = SignInView(self.driver)
|
2019-09-05 02:32:33 +00:00
|
|
|
home_view = sign_in_view.recover_access(ens_user['passphrase'])
|
2019-03-12 12:18:03 +00:00
|
|
|
|
2019-10-10 09:29:22 +00:00
|
|
|
sign_in_view.just_fyi('switch to Mainnet')
|
2019-09-05 02:32:33 +00:00
|
|
|
profile_view = home_view.profile_button.click()
|
|
|
|
profile_view.switch_network('Mainnet with upstream RPC')
|
2019-03-12 12:18:03 +00:00
|
|
|
|
2019-10-10 09:29:22 +00:00
|
|
|
sign_in_view.just_fyi('join to public chat, buy and install stickers')
|
2019-09-05 02:32:33 +00:00
|
|
|
chat = home_view.join_public_chat(home_view.get_public_chat_name())
|
2019-03-12 12:18:03 +00:00
|
|
|
chat.show_stickers_button.click()
|
|
|
|
chat.get_stickers.click()
|
2019-09-05 02:32:33 +00:00
|
|
|
chat.install_sticker_pack_by_name('Tozemoon')
|
|
|
|
chat.back_button.click()
|
2019-03-12 12:18:03 +00:00
|
|
|
|
2019-10-10 09:29:22 +00:00
|
|
|
sign_in_view.just_fyi('check that can use installed pack')
|
2019-03-12 12:18:03 +00:00
|
|
|
time.sleep(2)
|
|
|
|
chat.swipe_left()
|
|
|
|
chat.sticker_icon.click()
|
2019-09-05 02:32:33 +00:00
|
|
|
if not chat.chat_item.is_element_displayed():
|
|
|
|
self.driver.fail('Sticker was not sent')
|
2019-08-02 09:28:59 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(5403)
|
|
|
|
@marks.critical
|
|
|
|
def test_start_chat_with_ens(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
profile = home.profile_button.click()
|
|
|
|
profile.switch_network('Mainnet with upstream RPC')
|
|
|
|
chat = home.add_contact(ens_user['ens'])
|
2019-12-18 14:39:58 +00:00
|
|
|
if not chat.element_by_text("@" + ens_user['ens']).is_element_displayed():
|
2019-08-02 09:28:59 +00:00
|
|
|
self.driver.fail('Wrong user is resolved from username when starting 1-1 chat.')
|
2020-03-17 17:27:10 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(5326)
|
|
|
|
@marks.critical
|
|
|
|
def test_offline_status(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home_view = sign_in.create_user()
|
|
|
|
|
|
|
|
home_view.airplane_mode_button.click()
|
|
|
|
|
|
|
|
chat = home_view.add_contact(transaction_senders['C']['public_key'])
|
|
|
|
chat.element_by_text('Offline').wait_for_visibility_of_element(15)
|
|
|
|
if chat.connection_status.text != 'Offline':
|
|
|
|
self.errors.append('Offline status is not shown in 1-1 chat')
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
if home_view.connection_status.text != 'Offline':
|
|
|
|
self.errors.append('Offline status is not shown in home screen')
|
|
|
|
|
|
|
|
public_chat = home_view.join_public_chat(home_view.get_public_chat_name())
|
|
|
|
if public_chat.connection_status.text != 'Offline':
|
|
|
|
self.errors.append('Offline status is not shown in a public chat')
|
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|