Sha256: 58cec0058131e89952e4216bf8f2112f9c63bb099e9c3bc442db293767d6141f
Contents?: true
Size: 1.92 KB
Versions: 20
Compression:
Stored size: 1.92 KB
Contents
module SecureHeaders describe XXssProtection do specify { expect(XXssProtection.new.name).to eq(X_XSS_PROTECTION_HEADER_NAME)} specify { expect(XXssProtection.new.value).to eq("1")} specify { expect(XXssProtection.new("0").value).to eq("0")} specify { expect(XXssProtection.new(:value => 1, :mode => 'block').value).to eq('1; mode=block') } specify { expect(XXssProtection.new(:value => 1, :mode => 'block', :report_uri => 'https://www.secure.com/reports').value).to eq('1; mode=block; report=https://www.secure.com/reports') } context "with invalid configuration" do it "should raise an error when providing a string that is not valid" do expect { XXssProtection.new("asdf") }.to raise_error(XXssProtectionBuildError) expect { XXssProtection.new("asdf; mode=donkey") }.to raise_error(XXssProtectionBuildError) end context "when using a hash value" do it "should allow string values ('1' or '0' are the only valid strings)" do expect { XXssProtection.new(:value => '1') }.not_to raise_error end it "should allow integer values (1 or 0 are the only valid integers)" do expect { XXssProtection.new(:value => 1) }.not_to raise_error end it "should raise an error if no value key is supplied" do expect { XXssProtection.new(:mode => 'block') }.to raise_error(XXssProtectionBuildError) end it "should raise an error if an invalid key is supplied" do expect { XXssProtection.new(:value => 123) }.to raise_error(XXssProtectionBuildError) end it "should raise an error if mode != block" do expect { XXssProtection.new(:value => 1, :mode => "donkey") }.to raise_error(XXssProtectionBuildError) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems