在我的应用程序中有一个管理部分,仅限于superadmins(具有属性superadmin: true
的用户)。我有一个商店列表,我想要进行分页和测试。
使用save_and_open_page
调试当前代码时,我得到一个空白页面。如果我不是作为superadmin登录,我会被重定向到应用程序的根目录,当尝试使用save_and_open_page
进行调试时会看到根页面。如果我根本没有登录,那么我将被重定向到登录页面。所以基本功能应该有效。
我不知道为什么它不适用于superadmin
以及为什么我在使用save_and_open_page
进行调试时看不到商店列表。
这是我的spec/controllers/shops_controller_spec.rb
(基本上是从here复制的):
require 'rails_helper'
RSpec.describe Admin::ShopsController, type: :controller do
context "GET methods" do
describe "#index action" do
before(:all) {
amount = Rails.application.config.page_size
amount.times { FactoryGirl.create(:shop) }
}
before(:each) {
login_as(FactoryGirl.create(:user, superadmin: true), :scope => :user)
}
context "with entries == config.page_size" do
it "has no second page" do
get :index
expect(response).not_to have_selector("a", :href => "/shops?page=2", :content => "2")
# visit admin_shops_path
# expect(page).to have_no_xpath("//*[@class='pagination']//a[text()='2']")
end
end
context "with entries > config.page_size" do
before { FactoryGirl.create(:shop) }
it "has a second page with too many entries" do
visit "/admin/shops"
save_and_open_page
expect(page).to have_xpath("//*[@class='pagination']//a[text()='2']")
end
it "correctly redirects to next page" do
visit admin_shops_path
find("//*[@class='pagination']//a[text()='2']").click
expect(page.status_code).to eq(200)
end
end
end
end
end
正如您所看到的,我尝试以不同的方式进行测试(“期望块”来自this SO-question),但它们都不起作用。使用get :index
我收到
Admin::ShopsController GET methods #index action with entries == config.page_size has no second page
Failure/Error: expect(page).not_to have_selector("a", :href => "/shops?page=2", :content => "2")
ArgumentError:
invalid keys :href, :content, should be one of :count, :minimum, :maximum, :between, :text, :id, :class, :visible, :exact, :exact_text, :match, :wait, :filter_set
如果有帮助,这是我的AdminController.rb:
class AdminController < ApplicationController
layout 'admin'
before_action :authenticate_user!, :verify_is_superadmin
before_action :set_locale
before_action :get_breadcrumbs
private
def get_breadcrumbs
splitted_url = request.original_fullpath.split("/")
# Remove first object
splitted_url.shift
result = splitted_url.map { |element| element.humanize.capitalize }
session[:breadcrumbs] = result
# debug
end
def set_locale
I18n.locale = params[:locale] || session[:locale] || I18n.default_locale
# session[:locale] = I18n.locale
end
def verify_is_superadmin
(current_user.nil?) ? redirect_to(root_path) : (redirect_to(root_path) unless current_user.superadmin?)
end
end
更新
使用Thomas的回答我最终将我的代码放在spec/features
中,现在看起来像这样:
require "rails_helper"
RSpec.feature "Widget management", :type => :feature do
before(:each) {
amount = Rails.application.config.page_size
amount.times { FactoryGirl.create(:shop) }
}
before(:each) {
login_as(FactoryGirl.create(:user, superadmin: true), :scope => :user)
}
scenario "with entries == config.page_size" do
visit admin_shops_path
#save_and_open_page
expect(page).to have_no_xpath("//*[@class='pagination']//a[text()='2']")
end
scenario "with entries > config.page_size" do
FactoryGirl.create(:shop)
visit admin_shops_path
expect(page).to have_xpath("//*[@class='pagination']//a[text()='2']")
end
scenario "with entries > config.page_size it correctly redirects to next page" do
FactoryGirl.create(:shop)
visit admin_shops_path
find("//*[@class='pagination']//a[text()='2']").click
expect(page.status_code).to eq(200)
end
end
一切正常!
答案 0 :(得分:1)
你在这里遇到了很多问题。
首先,您链接到的另一个SO问题是不使用Capybara,因此复制其匹配示例是错误的。
其次,您正在编写控制器测试,而不是查看测试或功能测试。控制器测试默认情况下不呈现页面,因此要测试页面上要编写视图测试或功能测试的元素。 Capybara专为功能测试而设计,不适用于控制器测试。这就是默认capybara/rspec
配置文件仅将Capybara DSL包含在“功能”类型的测试中的原因。它还将Capybara RSpec匹配器包含在视图测试中,因为它们对那里提供的渲染字符串很有用。
第三,您将get/response
和visit/page
的使用混合在同一文件中,这只会让事情变得混乱。
如果你将这些重写为功能测试,那么检查你没有链接到capybara中的特定href你会做什么
expect(page).not_to have_link(href: '...')
如果您想确保特定文本和特定href
不存在链接expect(page).not_to have_link('link text', href: '...')
注意:检查没有给定文本和给定href的链接,仍然可能存在与文本或href的链接