Sha256: e0dd5b489de5d2a8f18b348d04da4490981e64db899c8ba10cc5a7db93235e5e

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

require 'spec_helper'

describe Goliath::Request do
  before(:each) do

    app = mock('app').as_null_object
    env = Goliath::Env.new

    @r = Goliath::Request.new(app, nil, env)
  end

  describe 'initialization' do

    it 'initializes env defaults' do
      env = Goliath::Env.new
      env['INIT'] = 'init'

      r = Goliath::Request.new(nil, nil, env)
      r.env['INIT'].should == 'init'
    end

    it 'initializes an async callback' do
      @r.env['async.callback'].should_not be_nil
    end

    it 'initializes request' do
      @r.instance_variable_get("@state").should == :processing
    end
  end

  describe 'process' do

    it 'executes the application' do
      app_mock = mock('app').as_null_object
      env_mock = mock('app').as_null_object
      request = Goliath::Request.new(app_mock, nil, env_mock)

      app_mock.should_receive(:call).with(request.env)
      request.should_receive(:post_process)

      request.process
    end

  end

  describe 'finished?' do
    it "returns false if the request parsing has not yet finished" do
      @r.finished?.should be_false
    end

    it 'returns true if we have finished request parsing' do
      @r.should_receive(:post_process).and_return(nil)
      @r.process

      @r.finished?.should be_true
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
goliath-0.9.0 spec/unit/request_spec.rb