quality/tres: Add handler testcases

This commit is contained in:
Eishun Kondoh 2019-05-08 01:31:27 +09:00
parent 0a6d7f31d6
commit 4965bc60ec
9 changed files with 273 additions and 98 deletions

View file

@ -28,8 +28,14 @@ defmodule OfpPacketIn2Test do
|> Kernel.elem(1)
assert pktin.continuation_action_set == nil
assert pktin.continuation_actions == [%Openflow.Action.NxResubmitTable{in_port: :in_port, table_id: 5}]
assert pktin.continuation_bridge == <<8, 137, 105, 58, 5, 77, 183, 237, 163, 58, 25, 166, 212, 167, 209, 11>>
assert pktin.continuation_actions == [
%Openflow.Action.NxResubmitTable{in_port: :in_port, table_id: 5}
]
assert pktin.continuation_bridge ==
<<8, 137, 105, 58, 5, 77, 183, 237, 163, 58, 25, 166, 212, 167, 209, 11>>
assert pktin.continuation_conntracked == nil
assert pktin.continuation_cookie == nil
assert pktin.continuation_mirrors == nil

View file

@ -11,8 +11,14 @@ defmodule OfpResumeTest do
|> Kernel.elem(1)
assert pktin.continuation_action_set == nil
assert pktin.continuation_actions == [%Openflow.Action.NxResubmitTable{in_port: :in_port, table_id: 5}]
assert pktin.continuation_bridge == <<8, 137, 105, 58, 5, 77, 183, 237, 163, 58, 25, 166, 212, 167, 209, 11>>
assert pktin.continuation_actions == [
%Openflow.Action.NxResubmitTable{in_port: :in_port, table_id: 5}
]
assert pktin.continuation_bridge ==
<<8, 137, 105, 58, 5, 77, 183, 237, 163, 58, 25, 166, 212, 167, 209, 11>>
assert pktin.continuation_conntracked == nil
assert pktin.continuation_cookie == nil
assert pktin.continuation_mirrors == nil

View file

@ -0,0 +1,44 @@
defmodule OVSDB.OpenvSwitchTest do
use ExUnit.Case, async: false
setup_all do
{:ok, pid} = OVSDB.start_child("127.0.0.1:6640")
{:ok, pid: pid}
end
describe "OVSDB.OpenvSwitch.find_by_name/3" do
test "with pid, table and name", context do
%{"datapath_id" => "0000000000000001"} = OVSDB.OpenvSwitch.find_by_name(context.pid, "Bridge", "br0")
end
end
describe "OVSDB.OpenvSwitch.add_br/2" do
test "with options", context do
OVSDB.OpenvSwitch.add_br(
context.pid,
name: "brx",
datapath_id: "0000000000000003"
)
end
end
describe "OVSDB.OpenvSwitch.set_controller/2" do
test "with options", context do
OVSDB.OpenvSwitch.add_br(
context.pid,
name: "brx",
target: "tcp:127.0.0.1:6653",
connection_mode: "out-of-band",
controller_rate_limit: 100,
controller_burst_limit: 25,
protocol: "OpenFlow13"
)
end
end
describe "OVSDB.OpenvSwitch.del_br/2" do
test "with pid and name", context do
OVSDB.OpenvSwitch.del_br(context.pid, "brx")
end
end
end

View file

@ -0,0 +1,178 @@
defmodule Tres.HanderTest do
use ExUnit.Case
@datapath_id "0000000000000001"
setup_all do
:ok = wait_datapath_is_connected()
:ok = send_message(Openflow.FlowMod.new(command: :delete, table_id: :all))
:ok = send_message(Openflow.GroupMod.new(command: :delete, group_id: :all))
:ok = send_message(Openflow.MeterMod.new(command: :delete, meter_id: :all))
end
describe "Openflow RoleRequest message" do
test "with role and generation_id" do
send_message(Openflow.Role.Request.new(role: :nochange, generation_id: 1))
%Openflow.Role.Reply{} = get_message()
end
end
describe "Openflow standard PacketIn message" do
test "with arp_packet" do
send_message(
Openflow.PacketOut.new(
buffer_id: :no_buffer,
in_port: :controller,
actions: [Openflow.Action.Output.new(:controller)],
data: File.read!("test/packet_data/arp_packet.raw")
)
)
%Openflow.PacketIn{} = get_message()
end
end
describe "Openflow Nicira PacketIn2 message" do
test "with arp_packet" do
send_message(Openflow.NxSetPacketInFormat.new(:nxt_packet_in2))
send_message(
Openflow.FlowMod.new(
instructions: Openflow.Instruction.ApplyActions.new(Openflow.Action.NxController2.new())
)
)
send_message(
Openflow.PacketOut.new(
buffer_id: :no_buffer,
in_port: :controller,
actions: [Openflow.Action.Output.new(:controller)],
data: File.read!("test/packet_data/arp_packet.raw")
)
)
%Openflow.NxPacketIn2{} = get_message()
end
end
describe "Openflow FlowRemoved message" do
test "with a flow" do
send_message(
Openflow.FlowMod.new(flags: [:send_flow_rem], match: Openflow.Match.new(reg0: 99))
)
send_message(Openflow.FlowMod.new(command: :delete, match: Openflow.Match.new(reg0: 99)))
%Openflow.FlowRemoved{} = get_message()
end
end
describe "Openflow AggregateStats Reply message" do
test "with no option" do
send_message(Openflow.Multipart.Aggregate.Request.new())
%Openflow.Multipart.Aggregate.Reply{} = get_message()
end
end
describe "Openflow DescStats Reply message" do
test "with no option" do
send_message(Openflow.Multipart.Desc.Request.new())
%Openflow.Multipart.Desc.Reply{} = get_message()
end
end
describe "Openflow FlowStats Reply message" do
test "with no option" do
send_message(Openflow.Multipart.Flow.Request.new())
%Openflow.Multipart.Flow.Reply{} = get_message()
end
test "with 3000 flows" do
Enum.each(1..3000, fn n ->
send_message(Openflow.FlowMod.new(match: Openflow.Match.new(reg0: n)))
end)
send_message(Openflow.Multipart.Flow.Request.new())
%Openflow.Multipart.Flow.Reply{flags: [:more]} = get_message()
end
end
describe "Openflow GroupStats Reply message" do
test "with no option" do
send_message(Openflow.Multipart.Group.Request.new())
%Openflow.Multipart.Group.Reply{} = get_message()
end
test "with 3000 groups" do
Enum.each(1..3000, fn n -> send_message(Openflow.GroupMod.new(group_id: n)) end)
send_message(Openflow.Multipart.Group.Request.new())
%Openflow.Multipart.Group.Reply{flags: [:more]} = get_message()
end
end
describe "Openflow GroupDesc Reply message" do
test "with no option" do
send_message(Openflow.Multipart.GroupDesc.Request.new())
%Openflow.Multipart.GroupDesc.Reply{} = get_message()
end
end
describe "Openflow GroupFeatures Reply message" do
test "with no option" do
send_message(Openflow.Multipart.GroupFeatures.Request.new())
%Openflow.Multipart.GroupFeatures.Reply{} = get_message()
end
end
describe "Openflow MeterStats Reply message" do
test "with no option" do
send_message(Openflow.Multipart.Meter.Request.new())
%Openflow.Multipart.Meter.Reply{} = get_message()
end
test "with 3000 meters" do
Enum.each(1..3000, fn n ->
send_message(
Openflow.MeterMod.new(
meter_id: n,
flags: [:pktps, :burst, :stats],
bands: [Openflow.MeterBand.Drop.new(rate: 1000, burst_size: 10)]
)
)
end)
send_message(Openflow.Multipart.Meter.Request.new())
%Openflow.Multipart.Meter.Reply{flags: [:more]} = get_message()
end
end
describe "Openflow PortDescStats Reply message" do
test "with no option" do
send_message(Openflow.Multipart.PortDesc.Request.new())
%Openflow.Multipart.PortDesc.Reply{} = get_message()
end
end
describe "Openflow PortStats Reply message" do
test "with no option" do
send_message(Openflow.Multipart.Port.Request.new())
%Openflow.Multipart.Port.Reply{} = get_message()
end
end
# helper
def wait_datapath_is_connected do
case Tres.SwitchRegistry.lookup_handler_pid(@datapath_id) do
nil -> wait_datapath_is_connected()
pid when is_pid(pid) -> :ok
end
end
def send_message(msg) do
:ok = Tres.ExampleHandler.send(@datapath_id, msg)
end
def get_message do
Tres.ExampleHandler.get(@datapath_id)
end
end