2019-03-28 10:22:29 -04:00
|
|
|
require_relative '../spec_helper'
|
|
|
|
|
2022-04-25 08:53:54 -04:00
|
|
|
require 'yaml'
|
|
|
|
require 'rubygems'
|
|
|
|
require 'rubygems/safe_yaml'
|
|
|
|
require 'rubygems/commands/owner_command'
|
2019-03-28 10:22:29 -04:00
|
|
|
|
2022-04-25 08:53:54 -04:00
|
|
|
describe "CVE-2019-8322 is resisted by" do
|
|
|
|
it "sanitising owner names" do
|
|
|
|
command = Gem::Commands::OwnerCommand.new
|
|
|
|
def command.rubygems_api_request(*args)
|
|
|
|
Struct.new(:body).new("---\n- email: \"\e]2;nyan\a\"\n handle: handle\n id: id\n")
|
2019-03-28 10:22:29 -04:00
|
|
|
end
|
2022-04-25 08:53:54 -04:00
|
|
|
def command.with_response(response)
|
|
|
|
yield response
|
|
|
|
end
|
|
|
|
command.should_receive(:say).with("Owners for gem: name")
|
|
|
|
command.should_receive(:say).with("- .]2;nyan.")
|
|
|
|
command.show_owners "name"
|
2019-03-28 10:22:29 -04:00
|
|
|
end
|
|
|
|
end
|