1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-29 15:13:04 +02:00
choosealicense.com/spec/license_meta_spec.rb

82 lines
2.5 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-03-27 02:19:44 +02:00
require 'licensee'
2015-08-22 21:25:16 +02:00
require 'spec_helper'
2016-02-08 21:37:19 +01:00
describe 'license meta' do
2016-01-20 16:20:04 +01:00
licenses.each do |license|
# Manually load the raw license so we don't get the defaults
raw_fields = SafeYAML.load_file("_licenses/#{license['spdx-lcase']}.txt")
2015-08-22 21:25:16 +02:00
2016-02-08 21:37:19 +01:00
context "The #{license['title']} license" do
it 'should only contain supported meta fields' do
2017-03-27 02:19:44 +02:00
extra_fields = raw_fields.keys - (meta.map { |m| m['name'] })
2016-01-20 16:20:04 +01:00
expect(extra_fields).to be_empty
end
2015-08-22 21:25:16 +02:00
2016-02-08 21:37:19 +01:00
it 'should contain all required meta fields' do
required = meta.select { |m| m['required'] }.map { |m| m['name'] }
2016-01-20 16:20:04 +01:00
missing = required - raw_fields.keys
2015-08-22 21:25:16 +02:00
expect(missing).to be_empty
end
2017-05-30 23:17:13 +02:00
examples = raw_fields['using'] || []
2017-05-30 23:17:13 +02:00
it 'using contains 3 examples' do
legacy = [
'afl-3.0',
'agpl-3.0',
'artistic-2.0',
'bsd-2-clause',
'bsd-3-clause',
'bsd-3-clause-clear',
'bsl-1.0',
'cc0-1.0',
'cc-by-4.0',
'cc-by-sa-4.0',
'eupl-1.1',
'lgpl-2.1',
'lgpl-3.0',
'lppl-1.3c',
'ms-pl',
'ms-rl',
'ofl-1.1',
'wtfpl',
'zlib'
]
skip 'added before 3 using examples required' if legacy.include?(license['slug'])
expect(examples.length).to eq(3)
end
context 'licensee detects using examples' do
module Licensee
class License
class << self
def license_dir
dir = ::File.dirname(__FILE__)
::File.expand_path '../_licenses', dir
end
end
end
end
examples.each do |example|
example_url = example.values[0]
if example_url.index('https://github.com/') == 0
2017-11-26 04:56:20 +01:00
example_url.gsub!(%r{\Ahttps://github.com/([\w-]+/[\w-]+)/blob/([\w-]+/\S+)\z}, 'https://raw.githubusercontent.com/\1/\2')
2017-11-26 05:27:20 +01:00
elsif example_url.index('https://git.savannah.gnu.org/') == 0 || example_url.index('https://git.gnome.org/') == 0
example_url.gsub!(%r{/tree/}, '/plain/')
2017-11-26 05:32:19 +01:00
elsif example_url.index('https://bitbucket.org/') == 0
example_url.gsub!(%r{/src/}, '/raw/')
end
content = open(example_url).read
detected = Licensee::ProjectFiles::LicenseFile.new(content, 'LICENSE').license
it example_url do
expect(detected.key).to eq(license['slug'])
end
end
end
2015-08-22 21:25:16 +02:00
end
end
end