X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fneutron%2Fspec%2Fclasses%2Fneutron_quota_spec.rb;fp=3rdparty%2Fmodules%2Fneutron%2Fspec%2Fclasses%2Fneutron_quota_spec.rb;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=ce2829b4a37b0cc1d144aa5473a1fbcb4d105050;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/neutron/spec/classes/neutron_quota_spec.rb b/3rdparty/modules/neutron/spec/classes/neutron_quota_spec.rb deleted file mode 100644 index ce2829b4a..000000000 --- a/3rdparty/modules/neutron/spec/classes/neutron_quota_spec.rb +++ /dev/null @@ -1,72 +0,0 @@ -require 'spec_helper' - -describe 'neutron::quota' do - - let :params do - {} - end - - let :default_params do - { :default_quota => -1, - :quota_network => 10, - :quota_subnet => 10, - :quota_port => 50, - :quota_router => 10, - :quota_floatingip => 50, - :quota_security_group => 10, - :quota_security_group_rule => 100, - :quota_driver => 'neutron.db.quota_db.DbQuotaDriver', - :quota_firewall => 1, - :quota_firewall_policy => 1, - :quota_firewall_rule => -1, - :quota_health_monitor => -1, - :quota_items => 'network,subnet,port', - :quota_member => -1, - :quota_network_gateway => 5, - :quota_packet_filter => 100, - :quota_pool => 10, - :quota_vip => 10 } - end - - shared_examples_for 'neutron quota' do - let :params_hash do - default_params.merge(params) - end - - it 'configures quota in neutron.conf' do - params_hash.each_pair do |config,value| - should contain_neutron_config("quotas/#{config}").with_value( value ) - end - end - end - - context 'with default parameters' do - it_configures 'neutron quota' - end - - context 'with provided parameters' do - before do - params.merge!({ - :quota_network => 20, - :quota_subnet => 20, - :quota_port => 100, - :quota_router => 20, - :quota_floatingip => 100, - :quota_security_group => 20, - :quota_security_group_rule => 200, - :quota_firewall => 1, - :quota_firewall_policy => 1, - :quota_firewall_rule => -1, - :quota_health_monitor => -1, - :quota_items => 'network,subnet,port', - :quota_member => -1, - :quota_network_gateway => 5, - :quota_packet_filter => 100, - :quota_pool => 10, - :quota_vip => 10 - }) - end - - it_configures 'neutron quota' - end -end