mirror of https://github.com/Shizmob/pydle.git
56 lines
1.4 KiB
Python
56 lines
1.4 KiB
Python
import pytest
|
|
import pydle
|
|
from .fixtures import with_client
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@with_client()
|
|
def test_client_same_channel(server, client):
|
|
assert client.is_same_channel("#lobby", "#lobby")
|
|
assert not client.is_same_channel("#lobby", "#support")
|
|
assert not client.is_same_channel("#lobby", "jilles")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@with_client()
|
|
def test_client_in_channel(server, client):
|
|
client._create_channel("#lobby")
|
|
assert client.in_channel("#lobby")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@with_client()
|
|
def test_client_is_channel(server, client):
|
|
# Test always true...
|
|
assert client.is_channel("#lobby")
|
|
assert client.is_channel("WiZ")
|
|
assert client.is_channel("irc.fbi.gov")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@with_client()
|
|
def test_channel_creation(server, client):
|
|
client._create_channel("#pydle")
|
|
assert "#pydle" in client.channels
|
|
assert client.channels["#pydle"]["users"] == set()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@with_client()
|
|
def test_channel_destruction(server, client):
|
|
client._create_channel("#pydle")
|
|
client._destroy_channel("#pydle")
|
|
assert "#pydle" not in client.channels
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@with_client()
|
|
async def test_channel_user_destruction(server, client):
|
|
client._create_channel("#pydle")
|
|
await client._create_user("WiZ")
|
|
client.channels["#pydle"]["users"].add("WiZ")
|
|
|
|
client._destroy_channel("#pydle")
|
|
assert "#pydle" not in client.channels
|
|
assert "WiZ" not in client.users
|