# encoding: utf-8 require 'spec_helper' require 'shared_contexts' require 'support/sh_interceptor' require 'albacore' require 'albacore/task_types/nugets_pack' require 'albacore/nuget_model' include ::Albacore::NugetsPack class ConfigFac def self.create id, curr, gen_symbols = true cfg = Albacore::NugetsPack::Config.new cfg.target = 'mono32' cfg.configuration = 'Debug' cfg.files = Dir.glob(File.join(curr, 'testdata', 'Project', '*.fsproj')) cfg.out = 'spec/testdata/pkg' cfg.exe = 'NuGet.exe' cfg.with_metadata do |m| m.id = id m.authors = 'haf' m.owners = 'haf owner' m.description = 'a nice lib' m.language = 'Danish' m.project_url = 'https://github.com/haf/Reasonable' m.license_url = 'https://github.com/haf/README.md' m.version = '0.2.3' m.release_notes = %{ v10.0.0: - Some notes } m.require_license_acceptance = false m.add_dependency 'Abc.Package', '>= 1.0.2' m.add_framework_dependency 'System.Transactions', '4.0.0' end cfg.gen_symbols if gen_symbols # files: *.{pdb,dll,all compiled files} cfg end end shared_context 'pack_config' do let :id do 'Sample.Nuget' end let :curr do File.dirname(__FILE__) end let :config do cfg = ConfigFac.create id, curr, true end end shared_context 'pack_config no symbols' do let :id do 'Sample.Nuget' end let :curr do File.dirname(__FILE__) end let :config do cfg = ConfigFac.create id, curr, false end end # testing the command for nuget describe Cmd, "when calling #execute" do include_context 'path testing' let :cmd do Cmd.new 'NuGet.exe', config.opts() end subject do cmd.extend ShInterceptor cmd.execute './spec/testdata/example.nuspec', './spec/testdata/example.symbols.nuspec' #puts "## INVOCATIONS:" #cmd.invocations.each do |i| # puts "#{i}" #end cmd end describe "first invocation" do include_context 'pack_config' it "should run the correct executable" do subject.mono_command(0).should eq('NuGet.exe') end it "should include the correct parameters" do subject.mono_parameters(0).should eq(%W[Pack -OutputDirectory #{path 'spec/testdata/pkg'} ./spec/testdata/example.nuspec]) end end describe "second invocation" do include_context 'pack_config' it "should include -Symbols" do subject.mono_parameters(1).should eq(%W[Pack -OutputDirectory #{path 'spec/testdata/pkg'} -Symbols ./spec/testdata/example.symbols.nuspec]) end end describe "without symbols" do include_context 'pack_config no symbols' subject do cmd.extend ShInterceptor cmd.execute './spec/testdata/example.nuspec' cmd end it 'should not include -Symbols' do subject.mono_parameters(0).should eq(%W[Pack -OutputDirectory #{path 'spec/testdata/pkg'} ./spec/testdata/example.nuspec]) end it 'should not have a second invocation' do subject.invocations.length.should eq(1) end end end describe Cmd, 'when calling :get_nuget_path_of' do include_context 'pack_config' subject do Cmd.new 'NuGet.exe', config.opts() end let :sample1 do < [projfile])) end it "rejects .nuspec files" do ProjectTask.accept?('some.nuspec').should eq false end end describe ProjectTask, "creating nuget from proj file" do let(:cmdo) { Hash.new } subject do ProjectTask.new(config.opts()) do |cmd| cmd.extend ShInterceptor cmdo[:cmd] = cmd end end before :each do subject.execute end describe 'when generating symbols' do include_context 'pack_config' it 'should have generated a nuspec' do cmdo[:cmd].mono_parameters(0)[-1].should include('Sample.Nuget.nuspec') end it 'should have generated a symbol nuspec' do cmdo[:cmd].mono_parameters(1)[-1].should include('Sample.Nuget.symbols.nuspec') end end describe 'when not generating symbols' do include_context 'pack_config no symbols' it 'should have generated a nuspec' do cmdo[:cmd].mono_parameters(0)[-1].should include('Sample.Nuget.nuspec') end it 'should have done no further calls' do cmdo[:cmd].invocations.length.should eq(1) end it 'should have no further invocations' do begin cmdo[:cmd].mono_parameters(1) rescue RuntimeError end end end end describe 'encoding functions' do it 'should throw InvalidByteSequenceError by default' do # http://www.ruby-doc.org/core-2.1.3/String.html#method-i-encode begin # it's "valid US-ASCII" from the POV of #encode unless # #force_encoding is used [0xef].pack('C*').force_encoding('US-ASCII').encode 'utf-8' fail 'should throw invalid byte sequence error, because it\'s NOT US-ASCII' rescue Encoding::InvalidByteSequenceError # yep end end it 'should be replaceable' do subj = [0xef].pack('C*').encode 'utf-8', undef: :replace, invalid: :replace, replace: '' expect(subj).to eq '' end end