75 lines
2.2 KiB
Ruby
75 lines
2.2 KiB
Ruby
# encoding: utf-8
|
|
require 'spec_helper'
|
|
require 'bundler'
|
|
|
|
describe Bundler do
|
|
describe "#load_gemspec_uncached" do
|
|
let(:app_gemspec_path) { tmp("test.gemspec") }
|
|
subject { Bundler.load_gemspec_uncached(app_gemspec_path) }
|
|
|
|
context "with incorrect YAML file" do
|
|
before do
|
|
File.open(app_gemspec_path, "wb") do |f|
|
|
f.write strip_whitespace(<<-GEMSPEC)
|
|
---
|
|
{:!00 ao=gu\g1= 7~f
|
|
GEMSPEC
|
|
end
|
|
end
|
|
|
|
context "on Ruby 1.8", :ruby => "1.8" do
|
|
it "catches YAML syntax errors" do
|
|
expect { subject }.to raise_error(Bundler::GemspecError)
|
|
end
|
|
end
|
|
|
|
context "on Ruby 1.9", :ruby => "1.9" do
|
|
context "with Syck as YAML::Engine" do
|
|
it "raises a GemspecError after YAML load throws ArgumentError" do
|
|
orig_yamler, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'syck'
|
|
|
|
expect { subject }.to raise_error(Bundler::GemspecError)
|
|
|
|
YAML::ENGINE.yamler = orig_yamler
|
|
end
|
|
end
|
|
|
|
context "with Psych as YAML::Engine" do
|
|
it "raises a GemspecError after YAML load throws Psych::SyntaxError" do
|
|
orig_yamler, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych'
|
|
|
|
expect { subject }.to raise_error(Bundler::GemspecError)
|
|
|
|
YAML::ENGINE.yamler = orig_yamler
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context "with correct YAML file" do
|
|
it "can load a gemspec with unicode characters with default ruby encoding" do
|
|
# spec_helper forces the external encoding to UTF-8 but that's not the
|
|
# ruby default.
|
|
if defined?(Encoding)
|
|
encoding = Encoding.default_external
|
|
Encoding.default_external = "ASCII"
|
|
end
|
|
|
|
File.open(app_gemspec_path, "wb") do |file|
|
|
file.puts <<-GEMSPEC.gsub(/^\s+/, '')
|
|
# -*- encoding: utf-8 -*-
|
|
Gem::Specification.new do |gem|
|
|
gem.author = "André the Giant"
|
|
end
|
|
GEMSPEC
|
|
end
|
|
|
|
expect(subject.author).to eq("André the Giant")
|
|
|
|
Encoding.default_external = encoding if defined?(Encoding)
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|