2019-03-28 14:22:29 +00:00
|
|
|
require_relative '../spec_helper'
|
|
|
|
|
|
|
|
require 'yaml'
|
|
|
|
require 'rubygems'
|
|
|
|
require 'rubygems/safe_yaml'
|
|
|
|
require 'rubygems/commands/owner_command'
|
|
|
|
|
2021-07-29 22:11:21 +02: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 14:22:29 +00:00
|
|
|
end
|
2021-07-29 22:11:21 +02: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 14:22:29 +00:00
|
|
|
end
|
|
|
|
end
|