cloudfoundry/cloud_controller_ng

View on GitHub
spec/unit/messages/quotas_apps_message_spec.rb

Summary

Maintainability
A
2 hrs
Test Coverage
require 'spec_helper'

module VCAP::CloudController
  RSpec.describe QuotasAppsMessage do
    subject { QuotasAppsMessage.new(params) }

    describe 'apps' do
      context 'invalid keys are passed in' do
        let(:params) do
          { bad_key: 'bob' }
        end

        it 'is not valid' do
          expect(subject).not_to be_valid
          expect(subject.errors.full_messages[0]).to include("Unknown field(s): 'bad_key'")
        end
      end

      describe 'total_memory_in_mb' do
        context 'when the type is a string' do
          let(:params) do
            { total_memory_in_mb: 'bob' }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total memory in mb is not a number')
          end
        end

        context 'when the type is decimal' do
          let(:params) do
            { total_memory_in_mb: 1.1 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total memory in mb must be an integer')
          end
        end

        context 'when the type is a negative integer' do
          let(:params) do
            { total_memory_in_mb: -1 }
          end

          it 'is not valid because "unlimited" is set with null, not -1, in V3' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total memory in mb must be greater than or equal to 0')
          end
        end

        context 'when the value is greater than the maximum allowed value in the DB' do
          let(:params) do
            { total_memory_in_mb: 1_000_000_000_000_000_000_000_000 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total memory in mb must be less than or equal to 2147483647')
          end
        end

        context 'when the value is zero' do
          let(:params) do
            { total_memory_in_mb: 0 }
          end

          it { is_expected.to be_valid }
        end

        context 'when the type is nil (unlimited)' do
          let(:params) do
            { total_memory_in_mb: nil }
          end

          it { is_expected.to be_valid }
        end
      end

      describe 'per_process_memory_in_mb' do
        context 'when the type is a string' do
          let(:params) do
            { per_process_memory_in_mb: 'bob' }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per process memory in mb is not a number')
          end
        end

        context 'when the type is decimal' do
          let(:params) do
            { per_process_memory_in_mb: 1.1 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per process memory in mb must be an integer')
          end
        end

        context 'when the type is a negative integer' do
          let(:params) do
            { per_process_memory_in_mb: -1 }
          end

          it 'is not valid because "unlimited" is set with null, not -1, in V3' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per process memory in mb must be greater than or equal to 0')
          end
        end

        context 'when the type is zero' do
          let(:params) do
            { per_process_memory_in_mb: 0 }
          end

          it { is_expected.to be_valid }
        end

        context 'when the type is nil (unlimited)' do
          let(:params) do
            { per_process_memory_in_mb: nil }
          end

          it { is_expected.to be_valid }
        end

        context 'when the value is greater than the maximum allowed value in the DB' do
          let(:params) do
            { per_process_memory_in_mb: 1_000_000_000_000_000_000_000_000 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per process memory in mb must be less than or equal to 2147483647')
          end
        end
      end

      describe 'total_instances' do
        context 'when the type is a string' do
          let(:params) do
            { total_instances: 'bob' }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total instances is not a number')
          end
        end

        context 'when the type is decimal' do
          let(:params) do
            { total_instances: 1.1 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total instances must be an integer')
          end
        end

        context 'when the type is a negative integer' do
          let(:params) do
            { total_instances: -1 }
          end

          it 'is not valid because "unlimited" is set with null, not -1, in V3' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total instances must be greater than or equal to 0')
          end
        end

        context 'when the type is zero' do
          let(:params) do
            { total_instances: 0 }
          end

          it { is_expected.to be_valid }
        end

        context 'when the type is nil (unlimited)' do
          let(:params) do
            { total_instances: nil }
          end

          it { is_expected.to be_valid }
        end

        context 'when the value is greater than the maximum allowed value in the DB' do
          let(:params) do
            { total_instances: 1_000_000_000_000_000_000_000_000 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Total instances must be less than or equal to 2147483647')
          end
        end
      end

      describe 'per_app_tasks' do
        context 'when the type is a string' do
          let(:params) do
            { per_app_tasks: 'bob' }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per app tasks is not a number')
          end
        end

        context 'when the type is decimal' do
          let(:params) do
            { per_app_tasks: 1.1 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per app tasks must be an integer')
          end
        end

        context 'when the type is a negative integer' do
          let(:params) do
            { per_app_tasks: -1 }
          end

          it 'is not valid because "unlimited" is set with null, not -1, in V3' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per app tasks must be greater than or equal to 0')
          end
        end

        context 'when the type is zero' do
          let(:params) do
            { per_app_tasks: 0 }
          end

          it { is_expected.to be_valid }
        end

        context 'when the type is nil (unlimited)' do
          let(:params) do
            { per_app_tasks: nil }
          end

          it { is_expected.to be_valid }
        end

        context 'when the value is greater than the maximum allowed value in the DB' do
          let(:params) do
            { per_app_tasks: 1_000_000_000_000_000_000_000_000 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Per app tasks must be less than or equal to 2147483647')
          end
        end
      end

      describe 'log_rate_limit_in_bytes_per_second' do
        context 'when the type is a string' do
          let(:params) do
            { log_rate_limit_in_bytes_per_second: 'bob' }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Log rate limit in bytes per second is not a number')
          end
        end

        context 'when the type is decimal' do
          let(:params) do
            { log_rate_limit_in_bytes_per_second: 1.1 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Log rate limit in bytes per second must be an integer')
          end
        end

        context 'when the type is a negative integer' do
          let(:params) do
            { log_rate_limit_in_bytes_per_second: -1 }
          end

          it 'is not valid because "unlimited" is set with null, not -1, in V3' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Log rate limit in bytes per second must be greater than or equal to 0')
          end
        end

        context 'when the type is zero' do
          let(:params) do
            { log_rate_limit_in_bytes_per_second: 0 }
          end

          it { is_expected.to be_valid }
        end

        context 'when the type is nil (unlimited)' do
          let(:params) do
            { log_rate_limit_in_bytes_per_second: nil }
          end

          it { is_expected.to be_valid }
        end

        context 'when the value is greater than the maximum allowed value in the DB' do
          let(:params) do
            { log_rate_limit_in_bytes_per_second: 2**64 }
          end

          it 'is not valid' do
            expect(subject).not_to be_valid
            expect(subject.errors).to contain_exactly('Log rate limit in bytes per second must be less than or equal to 9223372036854775807')
          end
        end
      end
    end
  end
end