gpt4 book ai didi

ruby-on-rails - 预期响应为 <2XX : success>, 但对于 Controller 测试为 <403: Forbidden>

转载 作者:行者123 更新时间:2023-12-04 13:15:54 24 4
gpt4 key购买 nike

我正在尝试在 Ruby on Rails 6.0 应用程序上运行一个简单的测试,但出现 403 错误。

Alberts-MacBook-Pro:rr albertski$ rails test test/controllers/categories_controller_test.rb
Running via Spring preloader in process 72301
Run options: --seed 53214

# Running:

F

Failure:
CategoriesControllerTest#test_should_get_categories_index [/Users/albertski/Sites/rr/test/controllers/categories_controller_test.rb:10]:
Expected response to be a <2XX: success>, but was a <403: Forbidden>

category_controller.rb
class CategoriesController < ApplicationController
def index

end

def new

end

def show

end
end

category_controller_test.rb
require 'test_helper'

class CategoriesControllerTest < ActionDispatch::IntegrationTest
def setup
@category = Category.create(name: "sports")
end

test "should get categories index" do
get categories_path
assert_response :success
end

end

应用 Controller .rb
class ApplicationController < ActionController::Base

helper_method :current_user, :logged_in?

def current_user
@current_user ||= User.find(session[:user_id]) if session[:user_id]
end

def logged_in?
!!current_user
end

def require_user
if !logged_in?
flash[:danger] = "You must be logged in to perform this action"
redirect_to root_path
end
end
end

配置/环境/test.rb
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!

Rails.application.routes.default_url_options[:host] = 'http://localhost:3000'

Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
config.hosts << "localhost:3000"

config.cache_classes = false

# Do not eager load code on boot. This avoids loading your whole application
# just for the purpose of running a single test. If you are using a tool that
# preloads Rails for running tests, you may have to set it to true.
config.eager_load = false

# Configure public file server for tests with Cache-Control for performance.
config.public_file_server.enabled = true
config.public_file_server.headers = {
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
}

# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
config.cache_store = :null_store

# Raise exceptions instead of rendering exception templates.
config.action_dispatch.show_exceptions = false

# Disable request forgery protection in test environment.
config.action_controller.allow_forgery_protection = false

# Store uploaded files on the local file system in a temporary directory.
config.active_storage.service = :test

config.action_mailer.perform_caching = false

# Tell Action Mailer not to deliver emails to the real world.
# The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_method = :test

# Print deprecation notices to the stderr.
config.active_support.deprecation = :stderr

# Raises error for missing translations.
# config.action_view.raise_on_missing_translations = true
end

我确实调试过 get categories_path它返回 /categories .此外,在查看 /categories 时浏览器中的路径我没有任何问题;它只发生在测试中。

最佳答案

我可以通过添加 byebug 找到问题。到我的测试,并打印出 response这向我指出了以下消息:

Blocked host: www.example.com

To allow requests to www.example.com, add the following to your environment configuration:

config.hosts << \"www.example.com\"

更新到 config.hosts << "www.example.com"解决了这个问题。

另外,不知道为什么我有 config.hosts << "localhost:3000"首先在那里。删除该行也可以解决问题。

关于ruby-on-rails - 预期响应为 <2XX : success>, 但对于 Controller 测试为 <403: Forbidden>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60558045/

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