2015-03-07 12:47:24 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2016-01-20 10:20:04 -05:00
|
|
|
describe "licenses" do
|
2016-01-20 10:37:44 -05:00
|
|
|
|
2016-01-29 12:44:28 -05:00
|
|
|
it "matches the number of files in the _licenses folder" do
|
|
|
|
expect(licenses.count).to eql(Dir["#{licenses_path}/*.txt"].count)
|
|
|
|
end
|
|
|
|
|
2016-01-20 10:20:04 -05:00
|
|
|
licenses.each do |license|
|
2016-01-15 17:40:32 -05:00
|
|
|
|
2016-01-20 10:20:04 -05:00
|
|
|
context "The #{license["title"]} license" do
|
2016-01-15 17:40:32 -05:00
|
|
|
|
2016-01-20 10:20:04 -05:00
|
|
|
let(:id) { license["id"] }
|
2016-01-15 17:40:32 -05:00
|
|
|
|
2016-01-20 10:20:04 -05:00
|
|
|
it "has an SPDX ID" do
|
|
|
|
expect(spdx_ids).to include(id)
|
|
|
|
end
|
2016-01-15 17:40:32 -05:00
|
|
|
|
2016-01-20 10:20:04 -05:00
|
|
|
it "uses its SPDX name" do
|
|
|
|
spdx = find_spdx(id)
|
2016-01-20 10:42:36 -05:00
|
|
|
expect(spdx).to_not be_nil
|
2016-01-20 10:20:04 -05:00
|
|
|
expect(spdx[1]["name"].gsub(/ only$/,"")).to eql(license["title"])
|
|
|
|
end
|
2016-01-15 17:40:32 -05:00
|
|
|
|
2016-01-20 10:20:04 -05:00
|
|
|
context "industry approval" do
|
|
|
|
it "should be approved by OSI or FSF or OD" do
|
|
|
|
expect(approved_licenses).to include(id), "See https://git.io/vzCTV."
|
|
|
|
end
|
2016-01-15 18:01:07 -05:00
|
|
|
end
|
2015-03-07 13:38:52 -05:00
|
|
|
end
|
2015-03-07 12:47:24 -05:00
|
|
|
end
|
|
|
|
end
|