Sha256: 37498978c63ceccc04329e7c9224522b412ba94308b8840928a68146cbb4e450
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
require 'spec_helper' require 'ronin/formatting/extensions/http/string' describe String do subject { "hello" } it "should provide String#uri_encode" do should respond_to(:uri_encode) end it "should provide String#uri_decode" do should respond_to(:uri_decode) end it "should provide String#uri_escape" do should respond_to(:uri_escape) end it "should provide String#uri_unescape" do should respond_to(:uri_unescape) end it "should provide String#format_http" do should respond_to(:format_http) end describe "#uri_encode" do subject { "mod % 3" } let(:uri_encoded) { "mod%20%25%203" } it "should URI encode itself" do expect(subject.uri_encode).to eq(uri_encoded) end end describe "#uri_decode" do subject { "mod%20%25%203" } let(:uri_decoded) { "mod % 3" } it "should URI decode itself" do expect(subject.uri_decode).to eq(uri_decoded) end end describe "#uri_escape" do subject { "x + y" } let(:uri_escaped) { "x+%2B+y" } it "should URI escape itself" do expect(subject.uri_escape).to eq(uri_escaped) end end describe "#uri_unescape" do subject { "x+%2B+y" } let(:uri_unescaped) { "x + y" } it "should URI unescape itself" do expect(subject.uri_unescape).to eq(uri_unescaped) end end describe "#format_http" do subject { "mod % 3" } let(:http_formatted) { "%6D%6F%64%20%25%20%33" } it "should format each byte of the String" do expect(subject.format_http).to eq(http_formatted) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ronin-support-0.5.2 | spec/formatting/http/string_spec.rb |