Sha256: 599e1a5d8c50c7a89dd52f2a0a66b4a0afdcbf74757359dfa466bdb85b557487

Contents?: true

Size: 936 Bytes

Versions: 43

Compression:

Stored size: 936 Bytes

Contents

#!/usr/bin/env ruby

$:.unshift(File.join(File.dirname(__FILE__), '..', '..', '..'))

require 'test/unit'
require 'rex/proto/http'

class Rex::Proto::Http::Packet::Header::UnitTest < Test::Unit::TestCase

	Klass = Rex::Proto::Http::Packet::Header

	def test_to_s
		h = Klass.new

		h['Foo']     = 'Fishing'
		h['Chicken'] = 47

		assert_equal(
			"Foo: Fishing\r\n" +
			"Chicken: 47\r\n\r\n", h.to_s)
	end

	def test_from_s
		h = Klass.new

		h.from_s(
			"POST /foo HTTP/1.0\r\n" +
			"Lucifer: Beast\r\n" +
			"HoHo: Satan\r\n" +
			"Eat: Babies\r\n" +
			"\r\n")

		assert_equal('Babies', h['Eat'], 'header')
		assert_equal('Satan', h['HoHo'], 'header')
		assert_equal('Satan', h['hOhO'], 'header')

		assert_equal("POST /foo HTTP/1.0\r\n", h.cmd_string, 'cmd_string')
	end

	def test_just_cmdstring
		h = Klass.new

		h.from_s("POST /foo HTTP/1.0")
		assert_equal("POST /foo HTTP/1.0\r\n", h.cmd_string, 'just cmd_string')
	end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
librex-0.0.35 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.34 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.33 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.32 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.31 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.30 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.29 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.28 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.27 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.26 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.25 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.23 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.21 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.19 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.17 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.13 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.12 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.7 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.6 lib/rex/proto/http/header.rb.ut.rb
librex-0.0.5 lib/rex/proto/http/header.rb.ut.rb