使用Capybara存储浏览器时间和时区

时间:2018-03-27 04:18:17

标签: ruby-on-rails rspec mocking capybara

我有一个很大程度上依赖于 -

的JavaScript组件(例如日期选择器)
  1. 当前系统时间
  2. 当前系统时区
  3. 在Ruby和Capybara中,可以在Timecop等库的帮助下随时存根。

    是否也可以在Capybara控制的无头浏览器中存根这些值?

    谢谢!

    编辑:这是一个关于Ruby如何被存根但是Capybara的浏览器仍然使用系统时间的例子

    before do
      now = Time.zone.parse("Apr 15, 2018 12:00PM")
      Timecop.freeze(now)
    
      visit root_path
    
      binding.pry
    end
    
    > Time.zone.now
    => Sun, 15 Apr 2018 12:00:00 UTC +00:00
    
    > page.evaluate_script("new Date();")
    => "2018-03-27T04:15:44Z"
    

3 个答案:

答案 0 :(得分:4)

正如您所发现的,Timecop仅影响测试中的测试和应用程序的时间。浏览器作为单独的进程运行,完全不受Timecop的影响。因此,你需要在浏览器中存根/模拟时间,并使用许多JS库中的一个来实现。我通常使用的是sinon - http://sinonjs.org/ - ,我使用类似

之类的内容有条件地安装在页面head
- if defined?(Timecop) && Timecop.top_stack_item
  = javascript_include_tag "sinon.js" # adjust based on where you're loading sinon from
  - unix_millis = (Time.now.to_f * 1000.0).to_i
  :javascript
    sinon.useFakeTimers(#{unix_millis});

这应该适用于haml模板(如果使用erb则调整),并且会在访问页面时安装和模拟浏览器时间,而Timecop用于模拟应用时间。

答案 1 :(得分:1)

这可以帮助我与zonebie gem配合使用

RSpec.configure do |config|
  config.before(:suite) do
    ENV['TZ'] = Time.zone.tzinfo.name
    # ...
  end
end

答案 2 :(得分:1)

我知道这个问题有点老了,但是我们有相同的要求,并找到了以下解决方案可用于Rails 6:

context 'different timezones between back-end and front-end' do
        it 'shows the event timestamp according to front-end timezone' do
          # Arrange
          previous_timezone = Time.zone
          previous_timezone_env = ENV['TZ']

          server_timezone = "Europe/Copenhagen"
          browser_timezone = "America/Godthab"

          Time.zone = server_timezone
          ENV['TZ'] = browser_timezone

          Capybara.using_session(browser_timezone) do
            freeze_time do
              # Act
              # ... Code here

              # Assert
              server_clock = Time.zone.now.strftime('%H:%M')
              client_clock = Time.zone.now.in_time_zone(browser_timezone).strftime('%H:%M')
              expect(page).not_to have_content(server_clock)
              expect(page).to have_content(client_clock)
            end
          end
          # (restore)
          Time.zone = previous_timezone
          ENV['TZ'] = previous_timezone_env
        end
end