Sha256: eeb3e326fd05cb9e939fb7e11134669d7cdadd66d32afbb58df8b457c6497ed1

Contents?: true

Size: 1.16 KB

Versions: 10

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true
require 'test_helper'

module Shipit
  class CommitChecksControllerTest < ActionController::TestCase
    setup do
      @commit = shipit_commits(:fifth)
      @checks = @commit.checks
      @stack = @commit.stack
      @checks.write('foobar')
      @checks.status = 'running'
      session[:user_id] = shipit_users(:walrus).id
    end

    test ":tail is success" do
      get :tail, params: { stack_id: @stack.to_param, sha: @commit.sha }
      assert_response :success
      assert_json 'output', 'foobar'
      assert_json 'url', stack_tail_commit_checks_path(@stack, sha: @commit.sha, since: 6)
      assert_json 'status', 'running'
    end

    test ":tail doesn't provide another url if the task is finished" do
      @checks.status = 'success'
      get :tail, params: { stack_id: @stack.to_param, sha: @commit.sha }
      assert_response :success
      assert_json 'url', nil
    end

    test ":tail returns only the output after the provided offset" do
      @checks.status = 'success'
      get :tail, params: { stack_id: @stack.to_param, sha: @commit.sha, since: 5 }
      assert_response :success
      assert_json 'output', 'r'
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
shipit-engine-0.39.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.38.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.37.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.36.1 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.36.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.35.1 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.35.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.34.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.33.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.32.0 test/controllers/commit_checks_controller_test.rb