1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-18 09:49:54 +02:00
choosealicense.com/spec/license_spec.rb

56 lines
1.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-03-27 02:19:44 +02:00
2015-03-07 18:47:24 +01:00
require 'spec_helper'
2016-02-08 21:37:19 +01:00
describe 'licenses' do
it 'matches the number of files in the _licenses folder' do
expect(licenses.count).to eql(Dir["#{licenses_path}/*.txt"].count)
2016-01-29 18:44:28 +01:00
end
2016-01-20 16:20:04 +01:00
licenses.each do |license|
2016-02-08 21:37:19 +01:00
context "The #{license['title']} license" do
let(:spdx_lcase) { license['spdx-lcase'] }
let(:spdx_id) { license['spdx-id'] }
2016-01-15 23:40:32 +01:00
2016-02-08 21:37:19 +01:00
it 'has an SPDX ID' do
expect(spdx_ids).to include(spdx_id)
end
it 'has an ID that is downcased SPDX ID' do
expect(spdx_id.casecmp(spdx_lcase).zero?)
2016-01-20 16:20:04 +01:00
end
2016-01-15 23:40:32 +01:00
2016-02-08 21:37:19 +01:00
it 'uses its SPDX name' do
spdx = find_spdx(spdx_id)
expect(spdx).to_not be_nil
2016-02-08 21:37:19 +01:00
expect(spdx[1]['name'].gsub(/ only$/, '')).to eql(license['title'])
2016-01-20 16:20:04 +01:00
end
2016-01-15 23:40:32 +01:00
2016-02-08 21:37:19 +01:00
context 'industry approval' do
it 'should be approved by OSI or FSF or OD' do
2022-04-27 16:43:32 +02:00
expect(approved_licenses).to include(spdx_lcase), 'See https://github.com/github/choosealicense.com/blob/gh-pages/CONTRIBUTING.md#adding-new-licenses.'
2016-01-20 16:20:04 +01:00
end
end
2016-01-15 23:40:32 +01:00
context 'minimum permissions' do
let(:permissions) { license['permissions'] }
it 'should allow commercial use' do
expect(permissions).to include('commercial-use')
end
2016-02-08 23:02:07 +01:00
it 'should allow modification' do
expect(permissions).to include('modifications')
end
2016-02-08 23:02:07 +01:00
it 'should allow distribution' do
expect(permissions).to include('distribution')
end
2016-02-08 23:02:07 +01:00
it 'should allow private use' do
expect(permissions).to include('private-use')
2016-01-20 16:20:04 +01:00
end
2016-01-16 00:01:07 +01:00
end
2015-03-07 19:38:52 +01:00
end
2015-03-07 18:47:24 +01:00
end
end