mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-18 13:09:08 +02:00
* Replace use_tor field with network in peer address * Got itest passing with network column in db. * Got frontend working with network (ipv4 or torv3) configurable * Fix go to peer address page navigation from sent payment and received payment
63 lines
2 KiB
Python
63 lines
2 KiB
Python
# MIT License
|
|
#
|
|
# Copyright (c) 2020 Jonathan Zernik
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
import pytest
|
|
|
|
from proto import squeak_admin_pb2
|
|
from squeaknode.admin.messages import message_to_peer_address
|
|
from squeaknode.admin.messages import peer_address_to_message
|
|
from squeaknode.core.peer_address import Network
|
|
from squeaknode.core.peer_address import PeerAddress
|
|
|
|
|
|
@pytest.fixture
|
|
def torv3():
|
|
yield Network.TORV3
|
|
|
|
|
|
@pytest.fixture
|
|
def peer_address():
|
|
yield PeerAddress(
|
|
network=Network.TORV3,
|
|
host="fake_host",
|
|
port=56789,
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def peer_address_message():
|
|
yield squeak_admin_pb2.PeerAddress(
|
|
network="TORV3",
|
|
host="fake_host",
|
|
port=56789,
|
|
)
|
|
|
|
|
|
def test_peer_address_to_message(peer_address, peer_address_message):
|
|
msg = peer_address_to_message(peer_address)
|
|
|
|
assert msg == peer_address_message
|
|
|
|
|
|
def test_msg_to_peer_address(peer_address, peer_address_message):
|
|
address = message_to_peer_address(peer_address_message)
|
|
|
|
assert address == peer_address
|