summaryrefslogtreecommitdiff
path: root/spec/license
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2019-10-15 16:31:02 -0600
committermo khan <mo.khan@gmail.com>2019-10-16 10:56:29 -0600
commit8e46aa67ca5be04f5aae12a4eec63434ed0fefff (patch)
tree330bc934cb28632a647bb822e72e46b003916ba2 /spec/license
parent7fe9eede20f1f7bd8b82b759df3e198acb563ba9 (diff)
This maps the hardcoded names to spdx ids
The GitLab UI has a hardcoded list of license names that need to be mapped to the equivalent SPDX identifier. * https://gitlab.com/gitlab-org/gitlab/blob/5d760ac8b75c07a3c748485fe08130fcc9af2acf/ee/app/assets/javascripts/vue_shared/license_management/constants.js#L8-32
Diffstat (limited to 'spec/license')
-rw-r--r--spec/license/management/report/v2_spec.rb43
1 files changed, 43 insertions, 0 deletions
diff --git a/spec/license/management/report/v2_spec.rb b/spec/license/management/report/v2_spec.rb
new file mode 100644
index 0000000..766c08d
--- /dev/null
+++ b/spec/license/management/report/v2_spec.rb
@@ -0,0 +1,43 @@
+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) { double(name: 'x', summary: '', description: '', homepage: '', licenses: [license]) }
+ 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
+ end
+end