You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
858 B
Crystal
33 lines
858 B
Crystal
require "spec"
|
|
require "../../ltnp/ltnp_operator.cr"
|
|
|
|
describe LtnpOperator do
|
|
sut = LtnpOperator.new File.read("./spec/input/ltnp_example.txt")
|
|
|
|
describe "#get_port_record" do
|
|
existing_port = "8081"
|
|
nonsense_port = "1234"
|
|
|
|
it "should find record when port exists" do
|
|
sut.get_port_record(existing_port).nil?.should be_false
|
|
end
|
|
|
|
it "should not find record when port doesn't exist" do
|
|
sut.get_port_record(nonsense_port).nil?.should be_true
|
|
end
|
|
end
|
|
|
|
describe "#search_p_name" do
|
|
existing_p_name = "polymer"
|
|
nonsense_p_name = "thisisnotathing"
|
|
|
|
it "should find record when process exists" do
|
|
sut.search_p_name(existing_p_name).nil?.should be_false
|
|
end
|
|
|
|
it "should not find record when process doesn't exist" do
|
|
sut.search_p_name(existing_p_name).nil?.should be_false
|
|
end
|
|
end
|
|
end
|