Initial commit with IRC and bot example.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2020-06-12 17:29:35 -04:00
commit 6340936895
20 changed files with 793 additions and 0 deletions

76
test/irc/msg_test.exs Normal file
View File

@@ -0,0 +1,76 @@
alias Omnibot.Irc
alias Omnibot.Msg
defmodule Omnibot.Irc.MsgTest do
use ExUnit.Case
# doctest Irc
test "irc message parsing" do
assert %Irc.Msg{
prefix: %Irc.Msg.Prefix{nick: "example.com"},
command: "PRIVMSG",
params: [],
} == Irc.Msg.parse(":example.com PRIVMSG")
assert %Irc.Msg{
prefix: %Irc.Msg.Prefix{nick: "example.com"},
command: "PRIVMSG",
params: ["#channel", "message text"],
} == Irc.Msg.parse(":example.com PRIVMSG #channel :message text")
assert %Irc.Msg{
prefix: %Irc.Msg.Prefix{nick: "example.com"},
command: "PRIVMSG",
params: ["#channel", "message", "text"],
} == Irc.Msg.parse(":example.com PRIVMSG #channel message text")
end
test "irc message prefix parsing" do
alias Irc.Msg.Prefix
assert Prefix.parse(":example.com") != %Prefix{}
%Prefix{
nick: "example.com"
} = Prefix.parse("example.com")
%Prefix{
nick: "nick"
} = Prefix.parse("nick")
%Prefix{
nick: "nick",
user: "username"
} = Prefix.parse("nick!username")
%Prefix{
nick: "nick",
user: "username",
host: "example.com"
} = Prefix.parse("nick!username@example.com")
end
test "irc message prefix to_string" do
alias Irc.Msg.Prefix
prefixes = [
"example.com",
"nick!username",
"nick!username@example.com"
]
for prefix <- prefixes,
do: assert(Prefix.parse(prefix) |> to_string() == prefix)
end
test "irc message to_string" do
alias Irc.Msg
msgs = [
":example.com PRIVMSG #command",
":example.com PRIVMSG #channel :message text"
]
for msg <- msgs, do: assert(Msg.parse(msg) |> to_string() == msg)
end
end