Sha256: a774219396c4ed870edd6632d23d95ef482dda3e6a1db17807a9dd93ab9a3736

Contents?: true

Size: 1.81 KB

Versions: 14

Compression:

Stored size: 1.81 KB

Contents

require "foreman_tasks_test_helper"

module ForemanTasks
  class TasksHelperTest < ActionView::TestCase
    describe 'when formatting simple input' do
      before do
        @task = FactoryGirl.build(:dynflow_task, :user_create_task)
        humanized = { :humanized_name => "Create", :humanized_input => [[:user, {:text => "user 'Anonymous Admin'", :link => nil}]] }
        @task.instance_variable_set('@humanized_cache', humanized)
        @task.stubs(:input).returns({"user"=>{"id"=>1, "name"=>"Anonymous Admin"}, "locale"=>"en"})
      end

      it 'formats the task input properly' do
        format_task_input(@task).must_equal("user 'Anonymous Admin'")
        format_task_input(@task, true).must_equal("Create user 'Anonymous Admin'")
      end

    end

    describe 'when formatting input' do
      before do
        @task = FactoryGirl.build(:dynflow_task, :product_create_task)
        humanized = { :humanized_name => "Create",
                      :humanized_input => [[:product, { :text => "product 'product-2'", :link => "#/products/3/info"}], [:organization, { :text => "organization 'test-0'", :link => "/organizations/3/edit" }]]}
        @task.instance_variable_set('@humanized_cache', humanized)
        input = {"product"=>{"id"=>3, "name"=>"product-2", "label"=>"product-2", "cp_id"=>nil},
                 "provider"=>{"id"=>3, "name"=>"Anonymous"},
                 "organization"=>{"id"=>3, "name"=>"test-0", "label"=>"test-0"},
                 "cp_id"=>"1412251033866",
                 "locale"=>"en"}
        @task.stubs(:input).returns(input)
      end

      it 'formats the task input properly' do
        response = "product 'product-2'; organization 'test-0'"
        format_task_input(@task).must_equal(response)
        format_task_input(@task, true).must_equal("Create #{response}")
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
foreman-tasks-0.7.19 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.18 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.17 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.16 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.15 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.14 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.13 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.12 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.11 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.10 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.9 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.8 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.7 test/helpers/foreman_tasks/tasks_helper_test.rb
foreman-tasks-0.7.6 test/helpers/foreman_tasks/tasks_helper_test.rb