Sha256: f95f468e213f5923668a19368f32ace65dbfb9db444dc676424e3b907036ffec

Contents?: true

Size: 1.1 KB

Versions: 19

Compression:

Stored size: 1.1 KB

Contents

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, 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, 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, stack_id: @stack.to_param, sha: @commit.sha, since: 5
      assert_response :success
      assert_json 'output', 'r'
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
shipit-engine-0.11.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.10.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.9.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.9 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.8 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.7 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.6 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.5 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.4 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.3 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.2 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.1 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.8.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.7.0 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.6.4 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.6.3 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.6.2 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.6.1 test/controllers/commit_checks_controller_test.rb
shipit-engine-0.6.0 test/controllers/commit_checks_controller_test.rb