Sha256: 33c6fc1ae94941a08f6bded804a02ac276ad02a455fd7427fe06c30eb4b5fae3

Contents?: true

Size: 1.93 KB

Versions: 4

Compression:

Stored size: 1.93 KB

Contents

require File.dirname(__FILE__) + '/spec_helper'

describe RequestLogAnalyzer::LogParser, "Merb without combined requests" do
  include RequestLogAnalyzerSpecHelper
  
  before(:each) do
    @log_parser = RequestLogAnalyzer::LogParser.new(:merb, :combined_requests => false)
  end
  
  it "should parse a stream and find valid requests" do
    File.open(log_fixture(:merb), 'r') do |io|
      @log_parser.parse_io(io) do |request| 
        request.should be_kind_of(RequestLogAnalyzer::Request)
        request.should be_single_line
      end
    end
  end

  it "should find 33 request lines when lines are not linked" do
    @log_parser.should_receive(:handle_request).exactly(33).times
    @log_parser.parse_file(log_fixture(:merb))
  end  
  
  it "should find 11 request start lines when lines are not linked" do
    @log_parser.should_receive(:handle_request).exactly(11).times
    @log_parser.parse_file(log_fixture(:merb), :line_types => [:started])
  end  
end


describe RequestLogAnalyzer::LogParser, "Merb with combined requests" do
  include RequestLogAnalyzerSpecHelper
  
  before(:each) do
    @log_parser = RequestLogAnalyzer::LogParser.new(:merb, :combined_requests => true)
  end
  
  it "should have a valid language definitions" do
    @log_parser.file_format.should be_valid
  end
  
  it "should find 11 completed requests when lines are linked" do
    @log_parser.should_receive(:handle_request).exactly(11).times
    @log_parser.parse_file(log_fixture(:merb))
  end
  
  it "should parse all details from a request correctly" do
    request = nil
    @log_parser.parse_file(log_fixture(:merb)) { |found_request| request ||= found_request }
    
    request.should be_completed
    request[:timestamp].should == 'Fri Aug 29 11:10:23 +0200 2008'
    request[:dispatch_time].should == 0.243424
    request[:after_filters_time].should == 6.9e-05
    request[:before_filters_time].should == 0.213213
    request[:action_time].should == 0.241652
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wvanbergen-request-log-analyzer-0.3.0 spec/merb_format_spec.rb
wvanbergen-request-log-analyzer-0.3.2 spec/merb_format_spec.rb
wvanbergen-request-log-analyzer-0.3.3 spec/merb_format_spec.rb
wvanbergen-request-log-analyzer-0.3.4 spec/merb_format_spec.rb