O TA ME SHI

This commit is contained in:
Eishun Kondoh 2017-11-21 14:07:06 +09:00
parent 4b4d6ce035
commit 67ad6900d8
2 changed files with 26 additions and 2 deletions

View file

@ -35,7 +35,7 @@ defmodule FlogTest do
Code.load_file("test/pf.ex")
# GIVEN
setup_all do
setup do
setup_applications()
wait_for_connected()
ports = get_ports_desc()
@ -51,6 +51,11 @@ defmodule FlogTest do
cookie: cookie,
timeout: timeout
]
on_exit fn ->
print_flows()
GenServer.cast(Flay, :flow_del)
end
{:ok, options}
end
@ -636,4 +641,11 @@ defmodule FlogTest do
port_desc = GenServer.call(Flay, :port_desc_stats, 5000)
port_desc.ports
end
defp print_flows do
flow_stats = GenServer.call(Flay, :flow_stats, 5000)
for flow <- flow_stats.flows do
IO.inspect(flow)
end
end
end