Removes MN analytics test
Change-Id: I684ee3e95b4d01a62ccf4fc456292eb626299ef7
This commit is contained in:
parent
afda02210a
commit
c6a082bbd0
@ -1,38 +0,0 @@
|
||||
require 'spec_helper_acceptance'
|
||||
|
||||
describe 'midonet::analytics class' do
|
||||
context 'with mandatory parameters (default params not overwritten)' do
|
||||
# Using puppet_apply as a helper
|
||||
it 'should install the midonet analytics without any errors' do
|
||||
pp = <<-EOS
|
||||
include ::midonet::repository
|
||||
class { 'midonet_openstack::role::nsdb':
|
||||
client_ip => '127.0.0.1',
|
||||
id => 1
|
||||
}
|
||||
class { 'midonet::analytics':
|
||||
is_mem => false,
|
||||
manage_repo => false,
|
||||
mem_username => undef,
|
||||
mem_password => undef,
|
||||
zookeeper_hosts => [{ 'ip' => '127.0.0.1', 'port' => '2181' }],
|
||||
}
|
||||
EOS
|
||||
|
||||
# Run it twice and test for idempotency
|
||||
expect(apply_manifest(pp).exit_code).to_not eq(1)
|
||||
expect(apply_manifest(pp).exit_code).to eq(0)
|
||||
end
|
||||
|
||||
describe package('logstash') do
|
||||
it { should be_installed }
|
||||
end
|
||||
|
||||
describe package('elasticsearch') do
|
||||
it { should be_installed }
|
||||
end
|
||||
end
|
||||
|
||||
context
|
||||
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user