summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-01-09 11:26:40 +0000
committerCan Eldem <celdem@gitlab.com>2020-01-09 11:26:40 +0000
commitd89872f850332736eb174f2b0ab28692fda6bf46 (patch)
tree3944b2eade680f90739f2f3805dfec1a7bb1a360 /spec/unit
parentd51e4d90b3e7dbfc5b0a9ec90f37baf84dc105d0 (diff)
Upgrade python from 3.5 to 3.8
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/license/management/report/v2_spec.rb51
-rw-r--r--spec/unit/license/management/repository_spec.rb38
2 files changed, 89 insertions, 0 deletions
diff --git a/spec/unit/license/management/report/v2_spec.rb b/spec/unit/license/management/report/v2_spec.rb
new file mode 100644
index 0000000..4da973c
--- /dev/null
+++ b/spec/unit/license/management/report/v2_spec.rb
@@ -0,0 +1,51 @@
+RSpec.describe License::Management::Report::V2 do
+ describe "#to_h" do
+ {
+ 'AGPL-1.0' => 'AGPL-1.0',
+ 'AGPL-3.0' => 'AGPL-3.0',
+ 'Apache 2.0' => 'Apache-2.0',
+ 'Artistic-2.0' => 'Artistic-2.0',
+ 'BSD' => 'BSD-4-Clause',
+ 'CC0 1.0 Universal' => 'CC0-1.0',
+ 'CDDL-1.0' => 'CDDL-1.0',
+ 'CDDL-1.1' => 'CDDL-1.1',
+ 'EPL-1.0' => 'EPL-1.0',
+ 'EPL-2.0' => 'EPL-2.0',
+ 'GPLv2' => 'GPL-2.0',
+ 'GPLv3' => 'GPL-3.0',
+ 'ISC' => 'ISC',
+ 'LGPL' => 'LGPL-3.0-only',
+ 'LGPL-2.1' => 'LGPL-2.1',
+ 'MIT' => 'MIT',
+ 'Mozilla Public License 2.0' => 'MPL-2.0',
+ 'MS-PL' => 'MS-PL',
+ 'MS-RL' => 'MS-RL',
+ 'New BSD' => 'BSD-3-Clause',
+ 'Python Software Foundation License' => 'Python-2.0',
+ 'ruby' => 'Ruby',
+ 'Simplified BSD' => 'BSD-2-Clause',
+ 'WTFPL' => 'WTFPL',
+ 'Zlib' => 'Zlib'
+ }.each do |old_name, spdx_id|
+ context "when mapping the legacy license name #{old_name}" do
+ subject { described_class.new([dependency]) }
+
+ let(:license) { LicenseFinder::License.new(short_name: old_name, matcher: LicenseFinder::License::NoneMatcher.new, url: nil) }
+ let(:dependency) { instance_double(LicenseFinder::Package, name: 'x', summary: '', description: '', homepage: '', licenses: [license]).as_null_object }
+ let(:result) { subject.to_h }
+
+ specify { expect(result[:version]).to eq('2.0') }
+ specify { expect(result[:licenses].count).to be(1) }
+ specify { expect(result[:licenses][0]['id']).to eq(spdx_id) }
+ end
+ end
+
+ context "when choosing an appropriate url for a license" do
+ subject { described_class.new([dependency]) }
+ let(:license) { LicenseFinder::License.new(short_name: 'MIT', matcher: LicenseFinder::License::NoneMatcher.new, url: nil) }
+ let(:dependency) { instance_double(LicenseFinder::Package, name: 'x', summary: '', description: '', homepage: '', licenses: [license]).as_null_object }
+
+ specify { expect(subject.to_h[:licenses][0]['url']).to eql('https://opensource.org/licenses/MIT') }
+ end
+ end
+end
diff --git a/spec/unit/license/management/repository_spec.rb b/spec/unit/license/management/repository_spec.rb
new file mode 100644
index 0000000..6ebc09e
--- /dev/null
+++ b/spec/unit/license/management/repository_spec.rb
@@ -0,0 +1,38 @@
+RSpec.describe License::Management::Repository do
+ describe "#item_for" do
+ let(:spdx_licenses) { JSON.parse(IO.read('spdx-licenses.json'))['licenses'] }
+
+ context "when mapping a license that refers to opensource.org" do
+ it 'parses the SPDX id from the url' do
+ spdx_licenses.each do |license|
+ spdx_id = license['licenseId']
+ url = "https://opensource.org/licenses/#{spdx_id}"
+ license = LicenseFinder::License.new(short_name: url, matcher: LicenseFinder::License::NoneMatcher.new, url: url)
+ expect(subject.item_for(license)['id']).to eql(spdx_id)
+ end
+ end
+ end
+
+ context "when mapping a license that refers to nuget.org" do
+ it 'parses the SPDX id from the url' do
+ spdx_licenses.each do |license|
+ spdx_id = license['licenseId']
+ url = "https://licenses.nuget.org/#{spdx_id}"
+ license = LicenseFinder::License.new(short_name: url, matcher: LicenseFinder::License::NoneMatcher.new, url: url)
+ expect(subject.item_for(license)['id']).to eql(spdx_id)
+ end
+ end
+ end
+
+ [
+ ['Apache License v2.0', 'Apache-2.0'],
+ ].each do |short_name, spdx_id|
+ context "when mapping a `#{short_name}` license" do
+ let(:license) { LicenseFinder::License.new(short_name: short_name, matcher: LicenseFinder::License::NoneMatcher.new, url: nil) }
+ let(:dependency) { double(name: 'x', summary: '', description: '', homepage: '', licenses: [license]) }
+
+ it { expect(subject.item_for(license)['id']).to eql(spdx_id) }
+ end
+ end
+ end
+end