ci: Add and configure PyLint, and make it happy

This commit is contained in:
2023-11-01 06:03:06 +01:00
parent e0cd456e77
commit d51f27d883
13 changed files with 379 additions and 81 deletions

View File

@@ -20,6 +20,8 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""Example SSB Client"""
from asyncio import ensure_future, gather, get_event_loop
import base64
import hashlib
@@ -38,18 +40,24 @@ api = MuxRPCAPI()
@api.define("createHistoryStream")
def create_history_stream(connection, msg):
def create_history_stream(connection, msg): # pylint: disable=unused-argument
"""Handle the createHistoryStream RPC call"""
print("create_history_stream", msg)
# msg = PSMessage(PSMessageType.JSON, True, stream=True, end_err=True, req=-req)
# connection.write(msg)
@api.define("blobs.createWants")
def create_wants(connection, msg):
def create_wants(connection, msg): # pylint: disable=unused-argument
"""Handle the createWants RPC call"""
print("create_wants", msg)
async def test_client():
"""The actual client implementation"""
async for msg in api.call(
"createHistoryStream",
[
@@ -90,7 +98,9 @@ async def test_client():
f.write(img_data)
async def main():
async def main(keypair):
"""The main function to run"""
client = SHSClient("127.0.0.1", 8008, keypair, bytes(keypair.verify_key))
packet_stream = PacketStream(client)
await client.open()
@@ -116,8 +126,8 @@ if __name__ == "__main__":
logger.setLevel(logging.INFO)
logger.addHandler(ch)
keypair = load_ssb_secret()["keypair"]
ssb_keypair = load_ssb_secret()["keypair"]
loop = get_event_loop()
loop.run_until_complete(main())
loop.run_until_complete(main(ssb_keypair))
loop.close()

View File

@@ -20,7 +20,9 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from asyncio import ensure_future, gather, get_event_loop
"""Test SSB server"""
from asyncio import get_event_loop
import logging
from colorlog import ColoredFormatter
@@ -34,6 +36,8 @@ api = MuxRPCAPI()
async def on_connect(conn):
"""Incoming connection handler"""
packet_stream = PacketStream(conn)
api.add_connection(packet_stream)
@@ -43,6 +47,8 @@ async def on_connect(conn):
async def main():
"""The main function to run"""
server = SHSServer("127.0.0.1", 8008, load_ssb_secret()["keypair"])
server.on_connect(on_connect)
await server.listen()
@@ -55,7 +61,7 @@ if __name__ == "__main__":
# create formatter
formatter = ColoredFormatter(
"%(log_color)s%(levelname)s%(reset)s:%(bold_white)s%(name)s%(reset)s - " "%(cyan)s%(message)s%(reset)s"
"%(log_color)s%(levelname)s%(reset)s:%(bold_white)s%(name)s%(reset)s - %(cyan)s%(message)s%(reset)s"
)
# add formatter to ch