Sha256: b07697a03ae313978081f74ffa29d9f013f971fe0073ad2da374117c74bcee79

Contents?: true

Size: 1.56 KB

Versions: 1

Compression:

Stored size: 1.56 KB

Contents

require 'spec_helper'
require 'maltese/cli'

describe Maltese::CLI do
  let(:subject) do
    described_class.new
  end

  let(:from_date) { "2015-03-15" }
  let(:until_date) { "2015-04-08" }
  let(:sitemap_bucket) { "search.datacite.org" }
  let(:cli_options) { { sitemap_bucket: sitemap_bucket,
                        from_date: from_date,
                        until_date: until_date } }

  describe "sitemap", vcr: true, :order => :defined do
    it 'should succeed' do
      subject.options = cli_options
      expect { subject.sitemap }.to output(/3380 links/).to_stdout
      sitemap = Zlib::GzipReader.open("public/sitemaps-test/sitemap2.xml.gz") { |gz| gz.read }
      doc = Nokogiri::XML(sitemap)
      expect(doc.xpath("//xmlns:url").size).to eq(3380)
      expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.datacite.org/works/10.6084/M9.FIGSHARE.1371139")

      sitemap_index = Zlib::GzipReader.open("public/sitemaps-test/sitemap.xml.gz") { |gz| gz.read }
      doc = Nokogiri::XML(sitemap_index)
      expect(doc.xpath("//xmlns:sitemap").size).to eq(2)
      expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.datacite.org/sitemaps-test/sitemap2.xml.gz")
    end

    it 'should succeed with no works' do
      from_date = "2005-04-07"
      until_date = "2005-04-08"
      subject.options = { sitemap_bucket: sitemap_bucket,
                          from_date: from_date,
                          until_date: until_date }
      expect { subject.sitemap }.to output("No works found for date range 2005-04-07 - 2005-04-08.\n").to_stdout
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
maltese-0.1.9 spec/cli_spec.rb