- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
几天来我一直在尝试对此进行调试,只是无法弄清楚问题出在哪里。我最初认为这是一个顺序依赖,但我不再这么认为了,所以 rspec --bisect=verbose
。
我现在倾向于 Devise/Warden 助手无法正常工作,我没有正确设置 capybara /网络驱动程序或其他原因。
这个测试有时会失败:
在按下“帐户设置”后重定向到“帐户设置”页面
。这是我责怪 Devise 助手的地方,因为当我登陆主页时我已经登录,但是当我进入帐户设置时 current_user
返回 nil
,因此示例失败它被重定向到登录页面。这也是特定于测试的,实时代码可以正常运行数月。
require 'rails_helper'
RSpec.describe 'home page', type: :system do
before(:context) do
WebMock.disable_net_connect!(allow_localhost: true)
end
after(:each) do
Warden.test_reset!
end
context 'when not logged in' do
it 'displays login with discord button' do
visit '/'
expect(page).to have_content 'Login with Discord'
end
it 'logs in with discord after clicking Login with Discord' do
OmniAuth.config.test_mode = true
visit '/'
click_on 'Login with Discord'
expect(page).to_not have_content 'Login with Discord'
find('.profile-menu').hover
expect(page).to have_content 'Account Settings'
expect(page).to have_content 'Event Calendar'
expect(page).to have_content 'Logout'
end
end
context 'when logged in' do
context 'as an average user' do
before do
@user = build(:user, confirmed_at: Time.now)
create(:profile, user: @user)
login_as(@user, scope: :user)
end
it 'shows profile menu' do
visit '/'
find('.profile-menu').hover
expect(page).to have_content 'Account Settings'
expect(page).to have_content 'Event Calendar'
expect(page).to have_content 'Logout'
end
it 'logs user out after pressing Logout' do
visit '/'
find('.profile-menu').hover
find('.logout').click
expect(page).to have_content 'Login with Discord'
end
it 'redirects to Events page after pressing Event Calendar' do
event = create(:event)
visit '/'
find('.profile-menu').hover
find('.event-calendar').click
expect(page).to have_content event.title
end
it 'redirects to Account Settings page after pressing Account Settings' do
visit '/'
find('.profile-menu').hover
find('.settings').click
expect(page).to have_content 'Account Settings'
end
end
context 'as an organiser' do
before do
@user = build(:user, confirmed_at: Time.now, role: :organiser)
create(:profile, user: @user)
login_as(@user, scope: :user)
end
it 'shows profile menu with Organiser Dashboard link' do
visit '/'
find('.profile-menu').hover
expect(page).to have_content 'Organiser Dashboard'
end
it 'redirects to Organiser Dashboard page after pressing Organiser Dashboard' do
visit '/'
find('.profile-menu').hover
find('.organiser-dashboard').click
expect(page).to have_content 'Create Event'
end
end
end
end
require 'devise'
RSpec.configure do |config|
config.include Warden::Test::Helpers
end
handleCommand(command) {
if (command === "logout") {
Rails.ajax({
url: "/sign_out",
type: "DELETE",
dataType: "json",
success: (signed_in_status) => {
this.$store.commit('authenticate', false)
this.$message.success('You logged out');
location.href = "/";
},
error: (signed_in_status) => {
this.$store.commit('authenticate', true)
this.$message.error('Something went wrong');
}
})
}
else if (command === "settings") {
location.href = "/users/edit";
}
else if (command === "events") {
location.href = "/events";
}
else if (command === "organiser") {
location.href = "/admin/events";
}
}
最佳答案
我似乎已经解决了这个问题。我已经尝试了这个 SO 答案中提到的几件事。据我所知,修复它的是什么修复了我的配置:
RSpec.configure do |config|
config.include Warden::Test::Helpers
end
到
RSpec.configure do |config|
config.include Devise::Test::IntegrationHelpers, type: :system
end
这也让我放弃了:
after(:each) do
Warden.test_reset!
end
在我所有的测试中。我已经运行了很多测试,它们不再失败,所以我现在假设这个问题确实已经修复。
关于javascript - 使用 Rails 5.1 和 Vue.js 进行 Flaky 系统测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49967944/
我sometimes see Rust crate 有一个名为 systest 的文件夹。我猜这个名字代表“系统测试”,但我找不到任何相关文档。 我的问题是: systest 的目的是什么?只是测试一
我的任务是对大约 1600 行长的 PHP 脚本进行系统测试,该脚本通过 cron 每分钟运行一次。该脚本是 100% 程序化的,以 30 多个 require_once() 调用开始,这些调用引入了
我有一个使用 Selenium 创建的测试方法,类似于此: [TestFixture] public class Test_Google { IWebDriver driver;
假设您有一个应用程序。此应用程序将经过 QA 测试并部署到生产环境中。应用程序生命周期存在一些限制。 该应用程序的一个版本将永远存在于生产环境中。 一旦部署到生产环境,如果需要,可能需要开发修补程序。
rails :5.2.1 开箱即用的测试设置 以 chrome 作为驱动程序运行(正常和 headless ) 我正在尝试运行系统测试,在其中我访问外部服务,然后被重定向回我自己的应用程序。 在这个系
谷歌搜索了几天,但没有解决以下问题:我使用 Minitest(5.11.3)、capybara(2.13.0) 和 capybara-webkit(1.14.0) 进行了系统测试,说测试在 2 个依赖
默认情况下 rails test 不运行系统测试,必须调用 rails test:system 才能运行系统测试。假设一个人正在使用 Guard,Guardfile 的正确添加是什么,这样 guard
几天来我一直在尝试对此进行调试,只是无法弄清楚问题出在哪里。我最初认为这是一个顺序依赖,但我不再这么认为了,所以 rspec --bisect=verbose。 我现在倾向于 Devise/Warde
我很难将自动化测试引入特定应用程序。我发现的大部分资料都集中在单元测试上。由于以下几个原因,这对该应用程序没有帮助: 应用程序是多层的 编写时并没有考虑到测试(很多单例持有应用程序级设置,对象不可模拟
TL;DR:关于如何正确配置 capybara 以能够在默认 Rails minitest 系统测试的 docker 容器中驱动远程 selenium 浏览器的任何想法? 我在 dockerized
热衷于将 Capybara 烘焙到新版本的 Rails (5.1) cf http://weblog.rubyonrails.org/2017/2/23/Rails-5-1-beta1/ 我遇到了一个
我是一名优秀的程序员,十分优秀!