Sha256: e65582e1e0233b4110d786dd41f13c491ebb4d87fee5a9a4cbdf6524e8f1d4ba

Contents?: true

Size: 1.69 KB

Versions: 4

Compression:

Stored size: 1.69 KB

Contents

module KnapsackPro
  module Client
    module API
      module V1
        class BuildDistributions < Base
          TEST_SUITE_SPLIT_CACHE_MISS_CODE = 'TEST_SUITE_SPLIT_CACHE_MISS'

          class << self
            def subset(args)
              request_hash = {
                :fixed_test_suite_split => KnapsackPro::Config::Env.fixed_test_suite_split,
                :cache_read_attempt => args.fetch(:cache_read_attempt),
                :commit_hash => args.fetch(:commit_hash),
                :branch => args.fetch(:branch),
                :node_total => args.fetch(:node_total),
                :node_index => args.fetch(:node_index),
                :ci_build_id => KnapsackPro::Config::Env.ci_node_build_id,
                :user_seat => KnapsackPro::Config::Env.user_seat_hash,
              }

              unless request_hash[:cache_read_attempt]
                request_hash.merge!({
                  :test_files => args.fetch(:test_files)
                })
              end

              action_class.new(
                endpoint_path: '/v1/build_distributions/subset',
                http_method: :post,
                request_hash: request_hash
              )
            end

            def last(args)
              action_class.new(
                endpoint_path: '/v1/build_distributions/last',
                http_method: :get,
                request_hash: {
                  :commit_hash => args.fetch(:commit_hash),
                  :branch => args.fetch(:branch),
                  :node_total => args.fetch(:node_total),
                  :node_index => args.fetch(:node_index),
                }
              )
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
knapsack_pro-5.0.0 lib/knapsack_pro/client/api/v1/build_distributions.rb
knapsack_pro-4.1.0 lib/knapsack_pro/client/api/v1/build_distributions.rb
knapsack_pro-4.0.0 lib/knapsack_pro/client/api/v1/build_distributions.rb
knapsack_pro-3.11.0 lib/knapsack_pro/client/api/v1/build_distributions.rb