require 'spec_helper' describe Bolognese::Metadata, vcr: true do context "write metadata as datacite json" do it "with data citation" do input = "10.7554/eLife.01567" subject = Bolognese::Metadata.new(input: input, from: "crossref") datacite = JSON.parse(subject.datacite_json) expect(datacite.fetch("url")).to eq("http://elifesciences.org/lookup/doi/10.7554/eLife.01567") expect(datacite.fetch("resource_type_general")).to eq("Text") expect(datacite.fetch("title")).to eq("Automated quantitative histology reveals vascular morphodynamics during Arabidopsis hypocotyl secondary growth") expect(datacite.fetch("references").length).to eq(25) expect(datacite.fetch("references").first).to eq("id"=>"https://doi.org/10.1038/nature02100", "type"=>"CreativeWork") expect(datacite.fetch("rights")).to eq("id"=>"http://creativecommons.org/licenses/by/3.0") end it "with ORCID ID" do input = "https://doi.org/10.1155/2012/291294" subject = Bolognese::Metadata.new(input: input, from: "crossref") datacite = JSON.parse(subject.datacite_json) expect(datacite.fetch("url")).to eq("http://www.hindawi.com/journals/pm/2012/291294/") expect(datacite.fetch("resource_type_general")).to eq("Text") expect(datacite.fetch("creator").length).to eq(7) expect(datacite.fetch("creator").first).to eq("type"=>"Person", "name"=>"Wendy Thanassi", "givenName"=>"Wendy", "familyName"=>"Thanassi") end it "Crossref DOI" do input = fixture_path + "crossref.bib" subject = Bolognese::Metadata.new(input: input, from: "bibtex") datacite = JSON.parse(subject.datacite_json) expect(datacite.fetch("resource_type_general")).to eq("Text") expect(datacite.fetch("title")).to eq("Automated quantitative histology reveals vascular morphodynamics during Arabidopsis hypocotyl secondary growth") expect(datacite.dig("description", "text")).to start_with("Among various advantages, their small size makes model organisms preferred subjects of investigation.") expect(datacite.fetch("creator").length).to eq(5) expect(datacite.fetch("creator").first).to eq("type"=>"Person", "name"=>"Martial Sankar", "givenName"=>"Martial", "familyName"=>"Sankar") end it "BlogPosting Citeproc JSON" do input = fixture_path + "citeproc.json" subject = Bolognese::Metadata.new(input: input, from: "citeproc") datacite = JSON.parse(subject.datacite_json) expect(datacite.fetch("resource_type_general")).to eq("Text") expect(datacite.fetch("title")).to eq("Eating your own Dog Food") expect(datacite.dig("description", "text")).to start_with("Eating your own dog food") expect(datacite.fetch("creator")).to eq("type"=>"Person", "name"=>"Martin Fenner", "givenName"=>"Martin", "familyName"=>"Fenner") end it "rdataone" do input = fixture_path + 'codemeta.json' subject = Bolognese::Metadata.new(input: input, from: "codemeta") datacite = JSON.parse(subject.datacite_json) expect(datacite.fetch("title")).to eq("R Interface to the DataONE REST API") expect(datacite.fetch("creator").length).to eq(3) expect(datacite.fetch("creator").first).to eq("type"=>"Person", "id"=>"http://orcid.org/0000-0003-0077-4738", "name"=>"Matt Jones", "givenName"=>"Matt", "familyName"=>"Jones") expect(datacite.fetch("version")).to eq("2.0.0") end it "maremma" do input = "https://github.com/datacite/maremma" subject = Bolognese::Metadata.new(input: input, from: "codemeta") datacite = JSON.parse(subject.datacite_json) expect(datacite.fetch("title")).to eq("Maremma: a Ruby library for simplified network calls") expect(datacite.fetch("creator")).to eq("type"=>"Person", "id"=>"http://orcid.org/0000-0003-0077-4738", "name"=>"Martin Fenner", "givenName"=>"Martin", "familyName"=>"Fenner") end it "with data citation schema.org" do input = "https://blog.datacite.org/eating-your-own-dog-food/" subject = Bolognese::Metadata.new(input: input, from: "schema_org") expect(subject.valid?).to be true datacite = JSON.parse(subject.datacite_json) expect(datacite.fetch("title")).to eq("Eating your own Dog Food") expect(datacite.fetch("references").count).to eq(2) expect(datacite.fetch("references").first).to eq("id"=>"https://doi.org/10.5438/0012", "type"=>"CreativeWork") end end end