Sha256: 14c044b17ac7722b1ca3190e11b5916c5e3b5efc387f942331839abf2a9d8ea5

Contents?: true

Size: 1.67 KB

Versions: 107

Compression:

Stored size: 1.67 KB

Contents

module CcApiStub
  module Applications
    extend Helper

    class << self
      def succeed_to_load(options={})
        response_body = Helper.load_fixtures(options.delete(:fixture) || "fake_cc_#{object_name}", options)
        stub_get(object_endpoint, {}, response(200, response_body))
      end

      def succeed_to_create
        response_body = Helper.load_fixtures("fake_cc_created_application")
        stub_post(%r{/v2/apps$}, nil, response(201, response_body))
      end

      def succeed_to_update(options={})
        response_body = Helper.load_fixtures(:fake_cc_application, options)
        stub_put(object_endpoint, nil, response(200, response_body))
      end

      def succeed_to_map_route
        stub_put(%r{/v2/apps/[^/]+/routes/[^/]+$}, {}, response(201, {}))
      end

      def succeed_to_load_stats
        response_body = Helper.load_fixtures("fake_cc_stats")
        stub_get(%r{/v2/apps/[^/]+/stats$}, {}, response(200, response_body))
      end

      def summary_fixture
        Helper.load_fixtures("fake_cc_application_summary")
      end

      def succeed_to_load_summary(options={})
        response = summary_fixture
        response["state"] = options[:state] if options.has_key?(:state)
        response["routes"] = options[:routes] if options.has_key?(:routes)
        stub_get(%r{/v2/apps/[^/]+/summary$}, {}, response(200, response))
      end

      def succeed_to_load_service_bindings
        response_body = Helper.load_fixtures("fake_cc_service_bindings")
        stub_get(%r{/v2/apps/[^/]+/service_bindings/?(?:\?.+)?$}, {}, response(200, response_body))
      end

      private

      def object_endpoint
        %r{/v2/apps/[^/]+$}
      end
    end
  end
end

Version data entries

107 entries across 107 versions & 3 rubygems

Version Path
cloulu-1.0.0 lib/cc_api_stub/applications.rb
cloulu-0.7.0 lib/cc_api_stub/applications.rb
cloulu-0.6.6 lib/cc_api_stub/applications.rb
cloulu-0.6.5 lib/cc_api_stub/applications.rb
cloulu-0.6.1 lib/cc_api_stub/applications.rb
cloulu-0.6.0 lib/cc_api_stub/applications.rb
cloulu-0.5.1 lib/cc_api_stub/applications.rb
cloulu-0.5.0 lib/cc_api_stub/applications.rb
cloulu-0.3.0 lib/cc_api_stub/applications.rb
cloulu-0.2.6 lib/cc_api_stub/applications.rb
cloulu-0.2.5 lib/cc_api_stub/applications.rb
cloulu-0.2.4 lib/cc_api_stub/applications.rb
cloulu-0.2.3 lib/cc_api_stub/applications.rb
cloulu-0.2.1 lib/cc_api_stub/applications.rb
cloulu-0.2.0 lib/cc_api_stub/applications.rb
cfoundry-4.3.2.rc1 lib/cc_api_stub/applications.rb
cfoundry-4.3.1 lib/cc_api_stub/applications.rb
cfoundry-4.3.0 lib/cc_api_stub/applications.rb
cfoundry-4.2.0.rc lib/cc_api_stub/applications.rb
cfoundry-4.1.0 lib/cc_api_stub/applications.rb