spec/outputs/statsd_spec.rb in logstash-output-statsd-2.0.1 vs spec/outputs/statsd_spec.rb in logstash-output-statsd-2.0.2
- old
+ new
@@ -3,12 +3,17 @@
require_relative "../spec_helper"
describe LogStash::Outputs::Statsd do
let(:host) { "localhost" }
- let(:port) { @server.port }
+ let(:port) { rand(2000..10000) }
+ let!(:server) { StatsdServer.new.run(port) }
+ after(:each) do
+ server.close
+ end
+
describe "registration and close" do
it "should register without errors" do
output = LogStash::Plugin.lookup("output", "statsd").new
expect {output.register}.to_not raise_error
@@ -36,10 +41,10 @@
subject.register
end
it "should receive data send to the server" do
subject.receive(event)
- expect(@server.received).to include("logstash.spec.foo.bar:0.1|c")
+ expect(server.received).to include("logstash.spec.foo.bar:0.1|c")
end
end
end