Sha256: 1d664c4a4c2b3759515eb773de23ccea506d50deb51d091a8d6f0d05ffb867e2

Contents?: true

Size: 1.49 KB

Versions: 8

Compression:

Stored size: 1.49 KB

Contents

require File.dirname(__FILE__) + '/helper'
require 'fixtures/apps/simple'

class TestSimpleReloader < Test::Unit::TestCase

  context 'for simple reset functionality' do

    should 'reset routes' do
      mock_app do
        1.step(10).each do |i|
          get("/#{i}") { "Foo #{i}" }
        end
      end
      1.step(10).each do |i|
        get "/#{i}"
        assert_equal "Foo #{i}", body
      end
      @app.reset_routes!
      1.step(10).each do |i|
        get "/#{i}"
        assert_equal 404, status
      end
    end
  end

  context 'for simple reload functionality' do

    should 'correctly instantiate SimpleDemo fixture' do
      Padrino.mounted_apps.clear
      Padrino.mount_core("simple_demo")
      assert_equal ["core"], Padrino.mounted_apps.collect(&:name)
      assert SimpleDemo.reload?
      assert_match %r{fixtures/apps/simple.rb}, SimpleDemo.app_file
    end

    should 'correctly reload SimpleDemo fixture' do
      @app = SimpleDemo
      get "/"
      assert_equal 200, status
      new_phrase = "The magick number is: #{rand(100)}!"
      buffer     = File.read(SimpleDemo.app_file)
      new_buffer = buffer.gsub(/The magick number is: \d+!/, new_phrase)
      File.open(SimpleDemo.app_file, "w") { |f| f.write(new_buffer) }
      sleep 1.2 # We need at least a cooldown of 1 sec.
      get "/"
      assert_equal new_phrase, body

      # Now we need to prevent to commit a new changed file so we revert it
      File.open(SimpleDemo.app_file, "w") { |f| f.write(buffer) }
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
padrino-core-0.5.0 test/test_reloader_simple.rb
padrino-core-0.4.6 test/test_reloader_simple.rb
padrino-core-0.4.5 test/test_reloader_simple.rb
padrino-core-0.2.9 test/test_reloader_simple.rb
padrino-core-0.2.6 test/test_reloader_simple.rb
padrino-core-0.2.5 test/test_reloader_simple.rb
padrino-core-0.2.2 test/test_reloader_simple.rb
padrino-core-0.2.1 test/test_reloader_simple.rb