gpt4 book ai didi

ruby-on-rails - 如何使用 RSpec 在我的 Rails 应用程序中测试 JQuery-UI Sortable 的 Controller 交互?

转载 作者:行者123 更新时间:2023-11-28 20:56:20 25 4
gpt4 key购买 nike

问题

问题是我知道正在调用 Controller 排序操作,并且它正在获取正确的参数来执行它的操作。当我通过 UI 进行测试时,我可以看到一切正常,但它不会为我的测试排序。我可以看到(在 Controller 操作中使用“puts”)哈希被正确地发送到 Controller 操作,所以它运行良好。问题是 Controller 的 Action 似乎根本就不是…… Action 。

问题

我如何测试它?我试过在我的规范中的 :post, :sort 行之后插入一个“sleep 2”。你可以看到我在该行的前面添加了“xhr”,并且我尝试在该行的末尾添加 :format => :js(未显示)但无济于事。

我在做什么

我正在使用 JQuery UI 的“可排序”插件对屏幕上的 list 上的作业进行排序。它目前运行良好,我可以通过更改屏幕上的顺序来“测试”它,然后刷新页面以查看现在所有内容都在正确的位置(我刚刚在刷新之前将内容移动到的位置)。显然,这不是严格的测试,但到目前为止已经足够好了。

现在,我正在添加一些逻辑来在后台复制/存档已排序的项目,并且我需要进行一些测试以确保在我进行排序时所有数据都得到正确处理。旧的排序-刷新-检查测试方法在这里不起作用,因为有些东西在后台发生,而且这些东西不会显示在屏幕上。在我编写这些测试之前,我想为当前工作的设置编写测试,但我无法让测试通过。

关联注意事项

有 Jobs、Checklists 和 ChecklistsJobs(连接表)。连接表具有使用这种排序更新的“job_position”字段。请参阅下面的“代码”部分中的模型片段。

用于执行此操作的资源

JQuery UI - Sortable

Railscast #147 Sortable Lists (revised)

Guard gem

rails 3.2.11

ruby 1.9.3p374

rspec 2.13.1

gem 在:测试

gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails", :require => false
gem "capybara"
gem "guard-rspec"
gem 'rb-fsevent', '~> 0.9'
end

代码

工作.rb

class Job < ActiveRecord::Base
scope :archived_state, lambda {|s| where(:archived => s)}

belongs_to :creator, :class_name => "Admin", :foreign_key => "creator_id"
has_many :checklists_jobs, :dependent => :destroy
has_many :checklists, :through => :checklists_jobs
.
.
.
end

list .rb

class Checklist < ActiveRecord::Base
scope :archived_state, lambda {|s| where(:archived => s) }

has_many :checklists_jobs, :dependent => :destroy, :order => 'checklists_jobs.job_position'#, :conditions => {'archived_at' => nil}
has_many :jobs, :through => :checklists_jobs
.
.
.
end

checklists_job.rb

class ChecklistsJob < ActiveRecord::Base
belongs_to :job
belongs_to :checklist
attr_accessible :job_position, :job_required
.
.
.
end

应用程序.js

$(function() {
$('ul[id^="sortable"]').sortable({
axis: 'y',
handle: '.handle',
update: function() {
return $.post($(this).data('update-url'), $(this).sortable('serialize'));
}
});
});

显示.html.erb View

<dd><ul class="unstyled" id="sortable" data-update-url="<%= sort_checklist_path(@checklist) %>">
<% @checklist.checklists_jobs.archived_state(:false).each do |cj| %>
<%= content_tag_for :li, cj do %><span class="handle"><i class="icon-move btn btn-mini"></i></span> <strong><%= cj.job.name %></strong><% if cj.job.description? %> - <%= cj.job.description %><% end %>
<% end %>
<% end %>
</ul></dd>

checklists_controller.rb

def sort
@checklist = Checklist.find(params[:id])
params[:checklists_job].each_with_index do |id, index|
@checklist.checklists_jobs.update_all({job_position: index+1}, {id: id})
end
render nothing: true
end

checklists_controller_spec.rb - 我知道这不是 super 高效的空间用户,但我将所有内容分解成单独的行以确保我正确设置了所有内容。

require 'spec_helper'

describe ChecklistsController do
login_admin
describe "POST sort" do
context "with no submission" do
before do
@checklist = FactoryGirl.create(:checklist)
@job1 = FactoryGirl.create(:job)
@job2 = FactoryGirl.create(:job)
@job3 = FactoryGirl.create(:job)
@job4 = FactoryGirl.create(:job)
@checklist.jobs << [@job1, @job2, @job3, @job4]
@checklist.save
@cj1 = @checklist.checklists_jobs.find_by_job_id(@job1.id)
@cj2 = @checklist.checklists_jobs.find_by_job_id(@job2.id)
@cj3 = @checklist.checklists_jobs.find_by_job_id(@job3.id)
@cj4 = @checklist.checklists_jobs.find_by_job_id(@job4.id)
@cj1.job_position = 1
@cj2.job_position = 2
@cj3.job_position = 3
@cj4.job_position = 4
@cj1.save
@cj2.save
@cj3.save
@cj4.save
@attr = [@job4.id, @job3.id, @job2.id, @job1.id]
end

# format of the params hash that's being passed:
# {"checklists_job"=>["545", "544", "546", "547"], "id"=>"124"}

it "sorts the checklist's checklists_jobs" do
xhr :post, :sort, { :id => @checklist.id, :checklists_job => @attr }
@checklist.reload
# The test fails on the next line
@checklist.checklists_jobs.find_by_job_id(@job1.id).job_position.should == 4
end
end
end
end

测试结果 - 请注意,我在上面的规范中标记了失败的行

Failures:

1) ChecklistsController POST sort with no submission sorts the checklist's checklists_jobs
Failure/Error: @checklist.checklists_jobs.find_by_job_id(@job1.id).job_position.should == 4
expected: 4
got: 1 (using ==)
# ./spec/controllers/checklists_controller_spec.rb:394:in `block (4 levels) in <top (required)>'

Finished in 2.59 seconds
51 examples, 1 failure

Failed examples:

rspec ./spec/controllers/checklists_controller_spec.rb:391 # ChecklistsController POST sort with no submission sorts the checklist's checklists_jobs

最佳答案

这是一个非常简单的答案:我在 before block 中构建的 @attr 数组是一个作业 ID 数组,应该是一个 checklists_job id 数组。

这个:

@attr = [@job4.id, @job3.id, @job2.id, @job1.id] 

应该是这样的:

@attr = [@cj4.id, @cj3.id, @cj2.id, @cj1.id]

糟糕。

关于ruby-on-rails - 如何使用 RSpec 在我的 Rails 应用程序中测试 JQuery-UI Sortable 的 Controller 交互?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16040905/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com