blob: fa00297540e24553691eaea62b2b4eb9fbd8e233 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
RSpec.describe GitLab::License::Scanning::Repository do
describe "#item_for" do
let(:spdx_licenses) { Spandx::Catalogue.latest }
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.id
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.id
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
|