Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7122988
D1215.id3822.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
6 KB
Subscribers
None
D1215.id3822.diff
View Options
diff --git a/package.json b/package.json
--- a/package.json
+++ b/package.json
@@ -5,7 +5,8 @@
"scripts": {
"build-dev": "NODE_ENV=development webpack --config ./swh/web/assets/config/webpack.config.development.js --display-modules --progress --colors",
"start-dev": "NODE_ENV=development nodemon --watch swh/web/api --watch swh/web/browse --watch swh/web/templates --watch swh/web/common --watch swh/web/settings --watch swh/web/assets/config --ext py,html,js --exec \"webpack-dev-server --config ./swh/web/assets/config/webpack.config.development.js --progress --colors\"",
- "build": "NODE_ENV=production webpack --config ./swh/web/assets/config/webpack.config.production.js --display-modules --progress --colors"
+ "build": "NODE_ENV=production webpack --config ./swh/web/assets/config/webpack.config.production.js --display-modules --progress --colors",
+ "test": "jest"
},
"repository": {
"type": "git",
@@ -49,6 +50,7 @@
"highlightjs-line-numbers.js": "^2.6.0",
"iframe-resizer": "^3.6.5",
"imports-loader": "^0.8.0",
+ "jest": "^24.1.0",
"jquery": "^3.3.1",
"js-cookie": "^2.2.0",
"less": "^3.9.0",
diff --git a/swh/web/assets/config/webpack-plugins/generate-weblabels-webpack-plugin/test.js b/swh/web/assets/config/webpack-plugins/generate-weblabels-webpack-plugin/test.js
new file mode 100644
--- /dev/null
+++ b/swh/web/assets/config/webpack-plugins/generate-weblabels-webpack-plugin/test.js
@@ -0,0 +1,153 @@
+/**
+ * Copyright (C) 2019 The Software Heritage developers
+ * See the AUTHORS file at the top-level directory of this distribution
+ * License: GNU Affero General Public License version 3, or any later version
+ * See top-level LICENSE file for more information
+ */
+
+const GenerateWebLabelsPlugin = require('./index');
+
+test('extractLicenseInformation supports missing license/licenses', () => {
+ let plugin = new GenerateWebLabelsPlugin({});
+ plugin.logger = { warn: jest.fn() };
+
+ // FIXME: it should probably return an empty list
+ expect(plugin.extractLicenseInformation({
+ })).toEqual([
+ {
+ "copy_url": "",
+ "name": undefined,
+ "url": ""
+ },
+ ]);
+ expect(plugin.logger.warn).toBeCalled();
+});
+
+
+test('extractLicenseInformation parses an empty "licenses"', () => {
+ let plugin = new GenerateWebLabelsPlugin({});
+ plugin.logger = { warn: jest.fn() };
+
+ // FIXME: it should probably return an empty list
+ expect(plugin.extractLicenseInformation({
+ "licenses": [],
+ })).toEqual([
+ {
+ "copy_url": "",
+ "name": "",
+ "url": ""
+ },
+ ]);
+ expect(plugin.logger.warn).toBeCalled();
+});
+
+test('extractLicenseInformation parses "licenses" with one item', () => {
+ let plugin = new GenerateWebLabelsPlugin({});
+ plugin.logger = { warn: jest.fn() };
+
+ expect(plugin.extractLicenseInformation({
+ "licenses": [
+ {
+ "type": "MIT",
+ "url": "https://www.opensource.org/licenses/mit-license.php"
+ },
+ ],
+ })).toEqual([
+ {
+ "copy_url": "",
+ "name": "Expat License",
+ "url": "http://www.jclark.com/xml/copying.txt"
+ },
+ ]);
+ expect(plugin.logger.warn).not.toBeCalled();
+});
+
+test('extractLicenseInformation parses "licenses" with two items', () => {
+ let plugin = new GenerateWebLabelsPlugin({});
+ plugin.logger = { warn: jest.fn() };
+
+ expect(plugin.extractLicenseInformation({
+ "licenses": [
+ {
+ "type": "MIT",
+ "url": "https://www.opensource.org/licenses/mit-license.php"
+ },
+ {
+ "type": "Apache-2.0",
+ "url": "https://opensource.org/licenses/apache2.0.php"
+ },
+ ],
+ })).toEqual([
+ {
+ "copy_url": "",
+ "name": "Expat License",
+ "url": "http://www.jclark.com/xml/copying.txt"
+ },
+ {
+ "copy_url": "",
+ "name": "Apache License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0"
+ },
+ ]);
+ expect(plugin.logger.warn).not.toBeCalled();
+});
+
+
+test('extractLicenseInformation parses a simple license id', () => {
+ let plugin = new GenerateWebLabelsPlugin({});
+ plugin.logger = { warn: jest.fn() };
+
+ expect(plugin.extractLicenseInformation({
+ "license": "MIT",
+ })).toEqual([
+ {
+ "copy_url": "",
+ "name": "Expat License",
+ "url": "http://www.jclark.com/xml/copying.txt"
+ },
+ ]);
+ expect(plugin.logger.warn).not.toBeCalled();
+});
+
+test('extractLicenseInformation parses an SPDX expression with an OR', () => {
+ let plugin = new GenerateWebLabelsPlugin({});
+ plugin.logger = { warn: jest.fn() };
+
+ expect(plugin.extractLicenseInformation({
+ "license": "MIT OR GPL-3.0",
+ })).toEqual([
+ {
+ "copy_url": "",
+ "name": "Expat License",
+ "url": "http://www.jclark.com/xml/copying.txt"
+ },
+ {
+ "copy_url": "",
+ "name": "GNU General Public License (GPL) version 3",
+ "url": "http://www.gnu.org/licenses/gpl-3.0.html"
+ },
+ ]);
+ expect(plugin.logger.warn).not.toBeCalled();
+});
+
+test('extractLicenseInformation warns on an SPDX with an AND', () => {
+ let plugin = new GenerateWebLabelsPlugin({});
+ plugin.logger = { warn: jest.fn() };
+
+ // FIXME: it should refuse it outright
+ expect(plugin.extractLicenseInformation({
+ "license": "MIT AND GPL-3.0",
+ })).toEqual([
+ {
+ "copy_url": "",
+ "name": "Expat License",
+ "url": "http://www.jclark.com/xml/copying.txt"
+ },
+ {
+ "copy_url": "",
+ "name": "GNU General Public License (GPL) version 3",
+ "url": "http://www.gnu.org/licenses/gpl-3.0.html"
+ },
+ ]);
+ expect(plugin.logger.warn).toBeCalled();
+});
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Dec 17, 2:49 PM (2 d, 21 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3216303
Attached To
D1215: Write tests for license parsing in the WebLabels plugin.
Event Timeline
Log In to Comment