1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
"""
Copyright (c) 2023 Proton AG
This file is part of Proton VPN.
Proton VPN is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Proton VPN is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>.
"""
import tempfile
from os.path import basename
from unittest.mock import patch
from unittest.mock import Mock
import pytest
from proton.vpn.session import VPNSession
from proton.vpn.session.dataclasses import BugReportForm
MOCK_ISP = "Proton ISP"
MOCK_COUNTRY = "Middle Earth"
def create_mock_vpn_account():
vpn_account = Mock
vpn_account.location = Mock()
vpn_account.location.ISP = MOCK_ISP
vpn_account.location.Country = MOCK_COUNTRY
return vpn_account
@pytest.mark.asyncio
async def test_submit_report():
s = VPNSession()
s._vpn_account = create_mock_vpn_account()
attachments = []
with tempfile.NamedTemporaryFile(mode="rb") as attachment1, tempfile.NamedTemporaryFile(mode="rb") as attachment2:
attachments.append(attachment1)
attachments.append(attachment2)
bug_report = BugReportForm(
username="test_user",
email="email@pm.me",
title="This is a title example",
description="This is a description example",
client_version="1.0.0",
client="Example",
attachments=attachments
)
with patch.object(s, "async_api_request") as patched_async_api_request:
await s.submit_bug_report(bug_report)
patched_async_api_request.assert_called_once()
api_request_kwargs = patched_async_api_request.call_args.kwargs
assert api_request_kwargs["endpoint"] == s.BUG_REPORT_ENDPOINT
submitted_data = api_request_kwargs["data"]
assert len(submitted_data.fields) == 13
form_field = submitted_data.fields[0]
assert form_field.name == "OS"
assert form_field.value == bug_report.os
form_field = submitted_data.fields[1]
assert form_field.name == "OSVersion"
assert form_field.value == bug_report.os_version
form_field = submitted_data.fields[2]
assert form_field.name == "Client"
assert form_field.value == bug_report.client
form_field = submitted_data.fields[3]
assert form_field.name == "ClientVersion"
assert form_field.value == bug_report.client_version
form_field = submitted_data.fields[4]
assert form_field.name == "ClientType"
assert form_field.value == bug_report.client_type
form_field = submitted_data.fields[5]
assert form_field.name == "Title"
assert form_field.value == bug_report.title
form_field = submitted_data.fields[6]
assert form_field.name == "Description"
assert form_field.value == bug_report.description
form_field = submitted_data.fields[7]
assert form_field.name == "Username"
assert form_field.value == bug_report.username
form_field = submitted_data.fields[8]
assert form_field.name == "Email"
assert form_field.value == bug_report.email
form_field = submitted_data.fields[9]
assert form_field.name == "ISP"
assert form_field.value == MOCK_ISP
form_field = submitted_data.fields[10]
assert form_field.name == "Country"
assert form_field.value == MOCK_COUNTRY
form_field = submitted_data.fields[11]
assert form_field.name == "Attachment-0"
assert form_field.value == bug_report.attachments[0]
assert form_field.filename == basename(form_field.value.name)
form_field = submitted_data.fields[12]
assert form_field.name == "Attachment-1"
assert form_field.value == bug_report.attachments[1]
assert form_field.filename == basename(form_field.value.name)
|