From d7875d793d6da9d84d3dbc4053652f96325994f5 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Wed, 11 Jun 2025 17:31:48 +0530 Subject: [PATCH] Return `sha1_git` checksum for all files as info Reference: https://github.com/aboutcode-org/scancode-toolkit/issues/624 Signed-off-by: Ayan Sinha Mahapatra --- CHANGELOG.rst | 3 ++ docs/source/cli-reference/output-format.rst | 2 + .../cli-reference/scan-options-post.rst | 1 + docs/source/cli-reference/synopsis.rst | 1 + src/scancode/api.py | 6 ++- src/scancode/plugin_info.py | 1 + .../filtered-expected.json | 1 + .../filtered-expected2.json | 1 + .../filtered-expected3.json | 1 + .../filtered-expected4.json | 1 + .../data/common/manifests-expected.json | 9 ++++ .../data/common/manifests-expected.jsonlines | 15 +++++-- .../data/common/manifests-expected.yaml | 15 +++++-- .../data/csv/livescan/expected.csv | 40 +++++++++--------- .../data/json/simple-expected.json | 2 + .../data/json/simple-expected.jsonlines | 14 ++++--- .../data/json/simple-expected.jsonpp | 2 + .../data/json/tree/expected.json | 8 ++++ .../yaml/package-and-licenses-expected.yaml | 11 +++-- .../data/yaml/simple-expected.yaml | 14 ++++--- .../data/yaml/tree/expected.yaml | 18 +++++--- .../file_with_multiple_licenses.expected.json | 1 + .../policy-codebase.expected.json | 7 ++++ .../plugin_license_text/scan.expected.json | 6 +++ .../data/altpath/copyright.expected.json | 1 + tests/scancode/data/info/all.expected.json | 11 +++++ tests/scancode/data/info/basic.expected.json | 11 +++++ .../data/info/basic.rooted.expected.json | 12 ++++++ .../data/info/email_url_info.expected.json | 11 +++++ .../data/non_utf8/expected-linux.json | 19 +++++++++ .../with_info.expected.json | 16 +++++++ .../plugin_only_findings/basic.expected.json | 2 + .../data/single/iproute.expected.json | 1 + .../unicodepath.expected-linux.json | 4 ++ .../unicodepath.expected-linux.json--quiet | 4 ++ .../unicodepath.expected-linux.json--verbose | 4 ++ .../unicodepath.expected-linux.json-q | 4 ++ .../unicodepath.expected-linux.json-v | 4 ++ .../unicodepath/unicodepath.expected-mac.json | 4 ++ .../unicodepath.expected-mac.json--quiet | 4 ++ .../unicodepath.expected-mac.json--verbose | 4 ++ .../unicodepath.expected-mac.json-q | 4 ++ .../unicodepath.expected-mac.json-v | 4 ++ .../unicodepath.expected-mac14.json | 4 ++ .../unicodepath.expected-mac14.json--quiet | 4 ++ .../unicodepath.expected-mac14.json--verbose | 4 ++ .../unicodepath.expected-mac14.json-q | 4 ++ .../unicodepath.expected-mac14.json-v | 4 ++ .../unicodepath/unicodepath.expected-win.json | 4 ++ .../unicodepath.expected-win.json--quiet | 4 ++ .../unicodepath.expected-win.json--verbose | 4 ++ .../unicodepath.expected-win.json-q | 4 ++ .../unicodepath.expected-win.json-v | 4 ++ .../data/weird_file_name/expected-posix.json | 5 +++ tests/scancode/test_api.py | 1 + .../data/classify/cli.expected.json | 10 +++++ .../classify/with_package_data.expected.json | 15 +++++++ .../component-package-build-expected.json | 12 ++++++ .../component-package-expected.json | 10 +++++ .../license-holder-rollup-expected.json | 9 ++++ ...iple-same-holder-and-license-expected.json | 3 ++ ...t-counted-in-license-holders-expected.json | 8 ++++ .../package-fileset-expected.json | 5 +++ .../package-manifest-expected.json | 2 + ...rectory-with-minority-origin-expected.json | 6 +++ ...return-nested-local-majority-expected.json | 7 ++++ .../data/score/basic-expected.json | 4 ++ ...consistent_licenses_copyleft-expected.json | 5 +++ .../summarycode/data/score/jar-expected.json | 15 +++++++ .../score/no_license_ambiguity-expected.json | 9 ++++ .../no_license_or_copyright-expected.json | 4 ++ .../data/score/no_license_text-expected.json | 4 ++ ...nflicting_license_categories.expected.json | 8 ++++ .../embedded_packages/bunkerweb.expected.json | 7 ++++ .../summary/end-2-end/bug-1141.expected.json | 11 +++++ .../holders/clear_holder.expected.json | 8 ++++ .../holders/combined_holders.expected.json | 8 ++++ .../license_ambiguity/ambiguous.expected.json | 4 ++ .../unambiguous.expected.json | 4 ++ .../multiple_package_data.expected.json | 6 +++ .../single_file/single_file.expected.json | 2 + ...holder_from_package_resource.expected.json | 3 ++ .../with_package_data.expected.json | 5 +++ .../without_package_data.expected.json | 4 ++ .../tallies_key_files.expected.json | 34 +++++++++++++++ .../tallies/end-2-end/bug-1141.expected.json | 11 +++++ .../full_tallies/tallies.expected.json | 36 ++++++++++++++++ .../tallies_by_facet.expected.json | 36 ++++++++++++++++ .../tallies_details.expected.json | 36 ++++++++++++++++ ...lies_key_files-details.expected.json-lines | 42 +++++++++++++++++-- .../tallies_key_files.expected.json | 36 ++++++++++++++++ .../no_todo/base64-arraybuffer.expected.json | 7 ++++ 92 files changed, 736 insertions(+), 50 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 62c721bfb38..c40849180b3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -46,6 +46,9 @@ v33.0.0 (next next, roadmap) - Update ABOUT files to adapt the ABOUT File Specification. See https://github.com/aboutcode-org/scancode-toolkit/issues/4181 +- Also return sha1_git checksums for each files with ``--info`` plugin. + https://github.com/aboutcode-org/scancode-toolkit/issues/624 + v32.3.3 - 2025-03-06 -------------------- diff --git a/docs/source/cli-reference/output-format.rst b/docs/source/cli-reference/output-format.rst index ebc20396f92..590cecd7fc4 100644 --- a/docs/source/cli-reference/output-format.rst +++ b/docs/source/cli-reference/output-format.rst @@ -141,6 +141,7 @@ following options. "date": "2019-02-12", "sha1": "fca4540d490fff36bb90fd801cf9cd8fc695bb17", "md5": "a980b61c1e8be68d5cdb1236ba6b43e7", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/x-c++", "file_type": "C++ source, ASCII text", "programming_language": "C++", @@ -481,6 +482,7 @@ Comparing Different ``json`` Output Formats - size, - sha1, - md5, + - sha1_git, - files_count, - mime_type, - file_type, diff --git a/docs/source/cli-reference/scan-options-post.rst b/docs/source/cli-reference/scan-options-post.rst index 01d305433af..195ce5bdac1 100644 --- a/docs/source/cli-reference/scan-options-post.rst +++ b/docs/source/cli-reference/scan-options-post.rst @@ -1060,6 +1060,7 @@ To see all plugins available via command line help, use ``--plugins``. "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, diff --git a/docs/source/cli-reference/synopsis.rst b/docs/source/cli-reference/synopsis.rst index 0e322bf0f1a..d4405dd21a1 100644 --- a/docs/source/cli-reference/synopsis.rst +++ b/docs/source/cli-reference/synopsis.rst @@ -156,6 +156,7 @@ A sample JSON output file structure will look like:: "date": "2019-02-12", "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", "md5": "effc6856ef85a9250fb1a470792b3f38", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/src/scancode/api.py b/src/scancode/api.py index 9ca9a0d7631..94592e20ce1 100644 --- a/src/scancode/api.py +++ b/src/scancode/api.py @@ -330,10 +330,14 @@ def get_file_info(location, **kwargs): result['date'] = get_last_modified_date(location) or None result['size'] = getsize(location) or 0 - sha1, md5, sha256 = multi_checksums(location, ('sha1', 'md5', 'sha256')).values() + sha1, md5, sha256, sha1_git = multi_checksums( + location=location, + checksum_names=('sha1', 'md5', 'sha256', 'sha1_git') + ).values() result['sha1'] = sha1 result['md5'] = md5 result['sha256'] = sha256 + result['sha1_git'] = sha1_git collector = get_type(location) result['mime_type'] = collector.mimetype_file or None diff --git a/src/scancode/plugin_info.py b/src/scancode/plugin_info.py index d54564836e7..0af4d7e597b 100644 --- a/src/scancode/plugin_info.py +++ b/src/scancode/plugin_info.py @@ -27,6 +27,7 @@ class InfoScanner(ScanPlugin): ('sha1', attr.ib(default=None, repr=False)), ('md5', attr.ib(default=None, repr=False)), ('sha256', attr.ib(default=None, repr=False)), + ('sha1_git', attr.ib(default=None, repr=False)), ('mime_type', attr.ib(default=None, repr=False)), ('file_type', attr.ib(default=None, repr=False)), ('programming_language', attr.ib(default=None, repr=False)), diff --git a/tests/cluecode/data/plugin_filter_clues/filtered-expected.json b/tests/cluecode/data/plugin_filter_clues/filtered-expected.json index 3500e9ab998..fee859788eb 100644 --- a/tests/cluecode/data/plugin_filter_clues/filtered-expected.json +++ b/tests/cluecode/data/plugin_filter_clues/filtered-expected.json @@ -34,6 +34,7 @@ "sha1": "c4d6f133413f1ea9d3c436fb797f9060c8640c04", "md5": "55a970437979ffe95e7b8ee6e51abb0c", "sha256": "ebdef41bf0f5bd7d378e4f76052e02156ce1c80ce67f89209b018a3fca8a071c", + "sha1_git": "c6cc3f85376fd76bdebcc4fee6e9137e80bd8691", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json b/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json index 8f3ca9396dd..07c7e1aad08 100644 --- a/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json +++ b/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json @@ -34,6 +34,7 @@ "sha1": "c43ffed01990c30300e07231790ace9f103ff7d7", "md5": "9946f7dcaf5066f2fb17e682e0326090", "sha256": "58416604a57e2e2625b802ac8c751c61763ae3d279c9c75d7c3bb55a3782cc6c", + "sha1_git": "9956de3f204ca2d5c46b77e70c4c6bf9509f6dd8", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json b/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json index 70a87e5288f..8a4078a15a6 100644 --- a/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json +++ b/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json @@ -34,6 +34,7 @@ "sha1": "9db841f62fdb2372f5f474bb75366140a00c62ca", "md5": "3fdbe85d79aa58aaeab119505f2007b6", "sha256": "408dfe8f9a70ea7bc9feaa9f77fb731ada0c26dc39008fdc5ead52d0442c656f", + "sha1_git": "3ed0b925a62cbabad29cda7743c513d2ed557dc2", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "verilog", diff --git a/tests/cluecode/data/plugin_filter_clues/filtered-expected4.json b/tests/cluecode/data/plugin_filter_clues/filtered-expected4.json index 82aa8766681..42f4f7ca28c 100644 --- a/tests/cluecode/data/plugin_filter_clues/filtered-expected4.json +++ b/tests/cluecode/data/plugin_filter_clues/filtered-expected4.json @@ -146,6 +146,7 @@ "sha1": "8a2e40b4eb23cc05a0b78330d919a7ffacde7a9a", "md5": "d5d03e14130735213e0532277df33cab", "sha256": "e4bd79e88b577d66d351597c0d4114b9ee2e31f0544795e87a88ca1b0dd38383", + "sha1_git": "e7c0b65bcdb17888027d0b53a1f65ad61b238245", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/formattedcode/data/common/manifests-expected.json b/tests/formattedcode/data/common/manifests-expected.json index b235333de7a..f048b3084aa 100644 --- a/tests/formattedcode/data/common/manifests-expected.json +++ b/tests/formattedcode/data/common/manifests-expected.json @@ -1018,6 +1018,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1052,6 +1053,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1088,6 +1090,7 @@ "sha1": "82107f6781df8da9aa7cb60abc649208256af5cb", "md5": "e79938fe4e630b02e3526c0195292cc6", "sha256": "f94648bd92ddf2464e62c56c3833b36927fa8b9803e8ebf3e4cfa7f2d797f3ad", + "sha1_git": "614191600be349e61331a3a0eb2b883493f0db0f", "mime_type": "text/xml", "file_type": "XML 1.0 document, ASCII text", "programming_language": null, @@ -1216,6 +1219,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1250,6 +1254,7 @@ "sha1": "0ed61bf6912407a143ce96c95bea56ad13463f5b", "md5": "427e6d3b579b128fed50328ac65b698e", "sha256": "d292aa647dc82e007ba319c878ec182d6f235f0a923cfe012ffc0ae8b7fa23be", + "sha1_git": "fee016dc24204e079cb9e0217d4439d73e1398ac", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -1550,6 +1555,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1584,6 +1590,7 @@ "sha1": "e6acddf907b7089d197d9d46879cd18ffb8f5198", "md5": "5ba816691af915c02567f459ae26ebd6", "sha256": "11129bc3bbf44b2567307ad13a31bc231f08416919e36bbdeabb9195b3e6ad58", + "sha1_git": "99128a9e08f5a23c650d83af5dcf40c3b976753d", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -1774,6 +1781,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1808,6 +1816,7 @@ "sha1": "5507192502255517e006c531d07dd84dc2325be8", "md5": "6795bed0c9c6b6cb915bfa959a2d1d4a", "sha256": "4378d297df9fcb4f65fdcd1299e17eef7db86883baf149bc41b0335f943cf006", + "sha1_git": "887bd3bfe3bdba0c8f737a69df38454b3d489ac1", "mime_type": "text/x-script.python", "file_type": "Python script, ASCII text executable", "programming_language": "Python", diff --git a/tests/formattedcode/data/common/manifests-expected.jsonlines b/tests/formattedcode/data/common/manifests-expected.jsonlines index ff4dfeb3cad..1249c8df803 100644 --- a/tests/formattedcode/data/common/manifests-expected.jsonlines +++ b/tests/formattedcode/data/common/manifests-expected.jsonlines @@ -20,9 +20,9 @@ "system_environment": { "operating_system": "linux", "cpu_architecture": "64", - "platform": "Linux-6.8.0-52-generic-x86_64-with-glibc2.35", - "platform_version": "#53~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Jan 15 19:18:46 UTC 2", - "python_version": "3.12.9 (main, Feb 20 2025, 19:13:20) [GCC 11.4.0]" + "platform": "Linux-5.15.0-141-generic-x86_64-with-glibc2.35", + "platform_version": "#151-Ubuntu SMP Sun May 18 21:35:19 UTC 2025", + "python_version": "3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0]" }, "spdx_license_list_version": "3.26", "files_count": 4 @@ -1056,6 +1056,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1094,6 +1095,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1134,6 +1136,7 @@ "sha1": "82107f6781df8da9aa7cb60abc649208256af5cb", "md5": "e79938fe4e630b02e3526c0195292cc6", "sha256": "f94648bd92ddf2464e62c56c3833b36927fa8b9803e8ebf3e4cfa7f2d797f3ad", + "sha1_git": "614191600be349e61331a3a0eb2b883493f0db0f", "mime_type": "text/xml", "file_type": "XML 1.0 document, ASCII text", "programming_language": null, @@ -1266,6 +1269,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1304,6 +1308,7 @@ "sha1": "0ed61bf6912407a143ce96c95bea56ad13463f5b", "md5": "427e6d3b579b128fed50328ac65b698e", "sha256": "d292aa647dc82e007ba319c878ec182d6f235f0a923cfe012ffc0ae8b7fa23be", + "sha1_git": "fee016dc24204e079cb9e0217d4439d73e1398ac", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -1608,6 +1613,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1646,6 +1652,7 @@ "sha1": "e6acddf907b7089d197d9d46879cd18ffb8f5198", "md5": "5ba816691af915c02567f459ae26ebd6", "sha256": "11129bc3bbf44b2567307ad13a31bc231f08416919e36bbdeabb9195b3e6ad58", + "sha1_git": "99128a9e08f5a23c650d83af5dcf40c3b976753d", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -1840,6 +1847,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1878,6 +1886,7 @@ "sha1": "5507192502255517e006c531d07dd84dc2325be8", "md5": "6795bed0c9c6b6cb915bfa959a2d1d4a", "sha256": "4378d297df9fcb4f65fdcd1299e17eef7db86883baf149bc41b0335f943cf006", + "sha1_git": "887bd3bfe3bdba0c8f737a69df38454b3d489ac1", "mime_type": "text/x-script.python", "file_type": "Python script, ASCII text executable", "programming_language": "Python", diff --git a/tests/formattedcode/data/common/manifests-expected.yaml b/tests/formattedcode/data/common/manifests-expected.yaml index a561b414c61..9859df5e9ad 100644 --- a/tests/formattedcode/data/common/manifests-expected.yaml +++ b/tests/formattedcode/data/common/manifests-expected.yaml @@ -29,9 +29,9 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-6.8.0-52-generic-x86_64-with-glibc2.35 - platform_version: '#53~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Jan 15 19:18:46 UTC 2' - python_version: 3.12.9 (main, Feb 20 2025, 19:13:20) [GCC 11.4.0] + platform: Linux-5.15.0-141-generic-x86_64-with-glibc2.35 + platform_version: '#151-Ubuntu SMP Sun May 18 21:35:19 UTC 2025' + python_version: 3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0] spdx_license_list_version: '3.26' files_count: 4 summary: @@ -1873,6 +1873,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -1912,6 +1913,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -1952,6 +1954,7 @@ files: sha1: 82107f6781df8da9aa7cb60abc649208256af5cb md5: e79938fe4e630b02e3526c0195292cc6 sha256: f94648bd92ddf2464e62c56c3833b36927fa8b9803e8ebf3e4cfa7f2d797f3ad + sha1_git: 614191600be349e61331a3a0eb2b883493f0db0f mime_type: text/xml file_type: XML 1.0 document, ASCII text programming_language: @@ -2087,6 +2090,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -2126,6 +2130,7 @@ files: sha1: 0ed61bf6912407a143ce96c95bea56ad13463f5b md5: 427e6d3b579b128fed50328ac65b698e sha256: d292aa647dc82e007ba319c878ec182d6f235f0a923cfe012ffc0ae8b7fa23be + sha1_git: fee016dc24204e079cb9e0217d4439d73e1398ac mime_type: application/json file_type: JSON data programming_language: @@ -2398,6 +2403,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -2437,6 +2443,7 @@ files: sha1: e6acddf907b7089d197d9d46879cd18ffb8f5198 md5: 5ba816691af915c02567f459ae26ebd6 sha256: 11129bc3bbf44b2567307ad13a31bc231f08416919e36bbdeabb9195b3e6ad58 + sha1_git: 99128a9e08f5a23c650d83af5dcf40c3b976753d mime_type: application/json file_type: JSON data programming_language: @@ -2619,6 +2626,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -2658,6 +2666,7 @@ files: sha1: 5507192502255517e006c531d07dd84dc2325be8 md5: 6795bed0c9c6b6cb915bfa959a2d1d4a sha256: 4378d297df9fcb4f65fdcd1299e17eef7db86883baf149bc41b0335f943cf006 + sha1_git: 887bd3bfe3bdba0c8f737a69df38454b3d489ac1 mime_type: text/x-script.python file_type: Python script, ASCII text executable programming_language: Python diff --git a/tests/formattedcode/data/csv/livescan/expected.csv b/tests/formattedcode/data/csv/livescan/expected.csv index 785fe354f36..5da81eeffd7 100644 --- a/tests/formattedcode/data/csv/livescan/expected.csv +++ b/tests/formattedcode/data/csv/livescan/expected.csv @@ -1,20 +1,20 @@ -path,type,name,base_name,extension,size,date,sha1,md5,sha256,mime_type,file_type,programming_language,is_binary,is_text,is_archive,is_media,is_source,is_script,detected_license_expression,detected_license_expression_spdx,percentage_of_license_text,files_count,dirs_count,size_count,scan_errors,license_expression,detection_log,license_match__license_expression,license_match__license_expression_spdx,license_match__from_file,start_line,end_line,license_match__matcher,license_match__score,license_match__matched_length,license_match__match_coverage,license_match__rule_relevance,license_match__rule_identifier,license_match__rule_url,copyright,holder,author,email,url,package__type,package__namespace,package__name,package__version,package__qualifiers,package__subpath,package__primary_language,package__description,package__release_date,package__homepage_url,package__download_url,package__size,package__sha1,package__md5,package__sha256,package__sha512,package__bug_tracking_url,package__code_view_url,package__vcs_url,package__copyright,package__holder,package__declared_license_expression,package__declared_license_expression_spdx,package__license_detections,package__other_license_expression,package__other_license_expression_spdx,package__other_license_detections,package__extracted_license_statement,package__notice_text,package__file_references,package__is_private,package__is_virtual,package__extra_data,package__repository_homepage_url,package__repository_download_url,package__api_data_url,package__datasource_id,package__purl -json2csv.rb,file,json2csv.rb,json2csv,.rb,912,2025-03-20,1236469a06a2bacbdd8e172ad718482af5b0a936,1307c281e0b153202e291b217eab85d5,12ba215313981dbe810d9ed696b7cc753d97adfcc26eba1e13f941dc7506aa4e,text/x-script.python,"Python script, ASCII text executable",Ruby,False,True,False,False,True,True,apache-2.0,Apache-2.0,62.04,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,apache-2.0,,apache-2.0,Apache-2.0,scan/json2csv.rb,5,13,2-aho,100.00,85,100.00,100.00,apache-2.0_7.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,,,,,,,,Copyright (c) 2017 nexB Inc. and others,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,,,,,,,,,nexB Inc. and others,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,,,,,,,,,,,,http://nexb.com/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,,,,,,,,,,,,https://github.com/nexB/scancode-toolkit/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,8,,,,,,,,,,,,http://www.apache.org/licenses/LICENSE-2.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -license,file,license,license,,679,2025-03-20,75c5490a718ddd45e40e0cc7ce0c756abc373123,b965a762efb9421cf1bf4405f336e278,a34098a43e5677495f59dff825a3f9bc0f2b0261d75feb2356919f4c3ce049ab,text/plain,ASCII text,,False,True,False,False,False,False,gpl-2.0-plus,GPL-2.0-or-later,100.0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -license,,,,,,,,,,,,,,,,,,,,,,,,,,gpl-2.0-plus,,gpl-2.0-plus,GPL-2.0-or-later,scan/license,1,12,1-hash,100.00,113,100.00,100.00,gpl-2.0-plus_261.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_261.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,file,package.json,package,.json,2200,2025-03-20,918376afce796ef90eeda1d6695f2289c90491ac,1f66239a9b850c5e60a9382dbe2162d2,29f6068a1b6c7d06f115a5edc4ed8558edde42c6bbf0145ed77cf1108a0dd529,application/json,JSON data,,False,True,False,False,False,False,mit,MIT,45.72,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,mit,,mit,MIT,scan/package.json,24,24,2-aho,100.00,3,100.00,100.00,mit_27.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,mit,,mit,MIT,scan/package.json,24,24,3-seq,84.68,136,85.53,99.00,mit_823.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_823.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,24,,,,,,,,Copyright (c) 2012 LearnBoost ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,24,,,,,,,,,LearnBoost,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10,,,,,,,,,,TJ Holowaychuk,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,12,,,,,,,,,,,tj@learnboost.com,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,16,,,,,,,,,,,,https://github.com/visionmedia/node-cookie-signature.git,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,27,,,,,,,,,,,,https://github.com/visionmedia/node-cookie-signature/issues,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,npm,,cookie-signature,v 1.0.3,,,JavaScript,Sign and unsign cookies,,,https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz,,,,,,https://github.com/visionmedia/node-cookie-signature/issues,,git+https://github.com/visionmedia/node-cookie-signature.git,,,mit,MIT,"[{'license_expression': 'mit', 'license_expression_spdx': 'MIT', 'matches': [{'license_expression': 'mit', 'license_expression_spdx': 'MIT', 'from_file': 'scan/package.json', 'start_line': 24, 'end_line': 24, 'matcher': '2-aho', 'score': 100.0, 'matched_length': 3, 'match_coverage': 100.0, 'rule_relevance': 100, 'rule_identifier': 'mit_27.RULE', 'rule_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE'}, {'license_expression': 'mit', 'license_expression_spdx': 'MIT', 'from_file': 'scan/package.json', 'start_line': 24, 'end_line': 24, 'matcher': '3-seq', 'score': 84.68, 'matched_length': 136, 'match_coverage': 85.53, 'rule_relevance': 99, 'rule_identifier': 'mit_823.RULE', 'rule_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_823.RULE'}], 'identifier': 'mit-13195f55-8383-ff05-7a20-04ec94bbf4b1'}]",,,,,,,,,,https://www.npmjs.com/package/cookie-signature,https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz,https://registry.npmjs.org/cookie-signature/1.0.3,npm_package_json,pkg:npm/cookie-signature@1.0.3 +path,type,name,base_name,extension,size,date,sha1,md5,sha256,sha1_git,mime_type,file_type,programming_language,is_binary,is_text,is_archive,is_media,is_source,is_script,detected_license_expression,detected_license_expression_spdx,percentage_of_license_text,files_count,dirs_count,size_count,scan_errors,license_expression,detection_log,license_match__license_expression,license_match__license_expression_spdx,license_match__from_file,start_line,end_line,license_match__matcher,license_match__score,license_match__matched_length,license_match__match_coverage,license_match__rule_relevance,license_match__rule_identifier,license_match__rule_url,copyright,holder,author,email,url,package__type,package__namespace,package__name,package__version,package__qualifiers,package__subpath,package__primary_language,package__description,package__release_date,package__homepage_url,package__download_url,package__size,package__sha1,package__md5,package__sha256,package__sha512,package__bug_tracking_url,package__code_view_url,package__vcs_url,package__copyright,package__holder,package__declared_license_expression,package__declared_license_expression_spdx,package__license_detections,package__other_license_expression,package__other_license_expression_spdx,package__other_license_detections,package__extracted_license_statement,package__notice_text,package__file_references,package__is_private,package__is_virtual,package__extra_data,package__repository_homepage_url,package__repository_download_url,package__api_data_url,package__datasource_id,package__purl +json2csv.rb,file,json2csv.rb,json2csv,.rb,912,2025-06-11,1236469a06a2bacbdd8e172ad718482af5b0a936,1307c281e0b153202e291b217eab85d5,12ba215313981dbe810d9ed696b7cc753d97adfcc26eba1e13f941dc7506aa4e,319776fd5bed1fd12dbf95861f23a25fb1ba27a0,text/x-script.python,"Python script, ASCII text executable",Ruby,False,True,False,False,True,True,apache-2.0,Apache-2.0,62.04,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,apache-2.0,,apache-2.0,Apache-2.0,scan/json2csv.rb,5,13,2-aho,100.00,85,100.00,100.00,apache-2.0_7.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,,,,,,,,Copyright (c) 2017 nexB Inc. and others,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,,,,,,,,,nexB Inc. and others,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,,,,,,,,,,,,http://nexb.com/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,,,,,,,,,,,,https://github.com/nexB/scancode-toolkit/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,8,,,,,,,,,,,,http://www.apache.org/licenses/LICENSE-2.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +license,file,license,license,,679,2025-06-11,75c5490a718ddd45e40e0cc7ce0c756abc373123,b965a762efb9421cf1bf4405f336e278,a34098a43e5677495f59dff825a3f9bc0f2b0261d75feb2356919f4c3ce049ab,7c28423528c8a5b46027850274b8cd4f9eda6918,text/plain,ASCII text,,False,True,False,False,False,False,gpl-2.0-plus,GPL-2.0-or-later,100.0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +license,,,,,,,,,,,,,,,,,,,,,,,,,,,gpl-2.0-plus,,gpl-2.0-plus,GPL-2.0-or-later,scan/license,1,12,1-hash,100.00,113,100.00,100.00,gpl-2.0-plus_261.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_261.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,file,package.json,package,.json,2200,2025-06-11,918376afce796ef90eeda1d6695f2289c90491ac,1f66239a9b850c5e60a9382dbe2162d2,29f6068a1b6c7d06f115a5edc4ed8558edde42c6bbf0145ed77cf1108a0dd529,c249f1f8484ef6a97d92d10b8de52d5457781a92,application/json,JSON data,,False,True,False,False,False,False,mit,MIT,45.72,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,mit,,mit,MIT,scan/package.json,24,24,2-aho,100.00,3,100.00,100.00,mit_27.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,mit,,mit,MIT,scan/package.json,24,24,3-seq,84.68,136,85.53,99.00,mit_823.RULE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_823.RULE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,24,,,,,,,,Copyright (c) 2012 LearnBoost ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,24,,,,,,,,,LearnBoost,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10,,,,,,,,,,TJ Holowaychuk,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,12,,,,,,,,,,,tj@learnboost.com,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,16,,,,,,,,,,,,https://github.com/visionmedia/node-cookie-signature.git,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,27,,,,,,,,,,,,https://github.com/visionmedia/node-cookie-signature/issues,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,npm,,cookie-signature,v 1.0.3,,,JavaScript,Sign and unsign cookies,,,https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz,,,,,,https://github.com/visionmedia/node-cookie-signature/issues,,git+https://github.com/visionmedia/node-cookie-signature.git,,,mit,MIT,"[{'license_expression': 'mit', 'license_expression_spdx': 'MIT', 'matches': [{'license_expression': 'mit', 'license_expression_spdx': 'MIT', 'from_file': 'scan/package.json', 'start_line': 24, 'end_line': 24, 'matcher': '2-aho', 'score': 100.0, 'matched_length': 3, 'match_coverage': 100.0, 'rule_relevance': 100, 'rule_identifier': 'mit_27.RULE', 'rule_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE'}, {'license_expression': 'mit', 'license_expression_spdx': 'MIT', 'from_file': 'scan/package.json', 'start_line': 24, 'end_line': 24, 'matcher': '3-seq', 'score': 84.68, 'matched_length': 136, 'match_coverage': 85.53, 'rule_relevance': 99, 'rule_identifier': 'mit_823.RULE', 'rule_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_823.RULE'}], 'identifier': 'mit-13195f55-8383-ff05-7a20-04ec94bbf4b1'}]",,,,,,,,,,https://www.npmjs.com/package/cookie-signature,https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz,https://registry.npmjs.org/cookie-signature/1.0.3,npm_package_json,pkg:npm/cookie-signature@1.0.3 diff --git a/tests/formattedcode/data/json/simple-expected.json b/tests/formattedcode/data/json/simple-expected.json index 2646647e9db..a87be5143db 100644 --- a/tests/formattedcode/data/json/simple-expected.json +++ b/tests/formattedcode/data/json/simple-expected.json @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -47,6 +48,7 @@ "sha1": "e2466d5b764d27fb301ceb439ffb5da22e43ab1d", "md5": "bdf7c572beb4094c2059508fa73c05a4", "sha256": "234d690ec9a5ac134e01847f34581b0ea83dfd1f3d4c79bee046297baa5f5925", + "sha1_git": "23dbd722d5dab05fbc0c49b61130ac421338c77a", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with no line terminators", "programming_language": "C", diff --git a/tests/formattedcode/data/json/simple-expected.jsonlines b/tests/formattedcode/data/json/simple-expected.jsonlines index 6318a1d1283..8c899170df5 100644 --- a/tests/formattedcode/data/json/simple-expected.jsonlines +++ b/tests/formattedcode/data/json/simple-expected.jsonlines @@ -9,19 +9,19 @@ "--json-lines": "" }, "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "3.0.0", + "output_format_version": "4.0.0", "message": null, "errors": [], "warnings": [], "extra_data": { "system_environment": { - "operating_system": "mac", + "operating_system": "linux", "cpu_architecture": "64", - "platform": "macOS-13.2.1-x86_64-i386-64bit", - "platform_version": "Darwin Kernel Version 22.3.0: Mon Jan 30 20:39:35 PST 2023; root:xnu-8792.81.3~2/RELEASE_ARM64_T8103", - "python_version": "3.10.6 (main, Aug 30 2022, 05:12:36) [Clang 13.1.6 (clang-1316.0.21.2.5)]" + "platform": "Linux-5.15.0-141-generic-x86_64-with-glibc2.35", + "platform_version": "#151-Ubuntu SMP Sun May 18 21:35:19 UTC 2025", + "python_version": "3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0]" }, - "spdx_license_list_version": "3.20", + "spdx_license_list_version": "3.26", "files_count": 1 } } @@ -39,6 +39,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -67,6 +68,7 @@ "sha1": "e2466d5b764d27fb301ceb439ffb5da22e43ab1d", "md5": "bdf7c572beb4094c2059508fa73c05a4", "sha256": "234d690ec9a5ac134e01847f34581b0ea83dfd1f3d4c79bee046297baa5f5925", + "sha1_git": "23dbd722d5dab05fbc0c49b61130ac421338c77a", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with no line terminators", "programming_language": "C", diff --git a/tests/formattedcode/data/json/simple-expected.jsonpp b/tests/formattedcode/data/json/simple-expected.jsonpp index 2646647e9db..a87be5143db 100644 --- a/tests/formattedcode/data/json/simple-expected.jsonpp +++ b/tests/formattedcode/data/json/simple-expected.jsonpp @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -47,6 +48,7 @@ "sha1": "e2466d5b764d27fb301ceb439ffb5da22e43ab1d", "md5": "bdf7c572beb4094c2059508fa73c05a4", "sha256": "234d690ec9a5ac134e01847f34581b0ea83dfd1f3d4c79bee046297baa5f5925", + "sha1_git": "23dbd722d5dab05fbc0c49b61130ac421338c77a", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with no line terminators", "programming_language": "C", diff --git a/tests/formattedcode/data/json/tree/expected.json b/tests/formattedcode/data/json/tree/expected.json index d5f3255c9c2..31e4af1549b 100644 --- a/tests/formattedcode/data/json/tree/expected.json +++ b/tests/formattedcode/data/json/tree/expected.json @@ -13,6 +13,7 @@ "sha1": "3922760d8492eb8f853c10a627f5a73f9eaec6ff", "md5": "fc7f53659b7a9db8b6dff0638641778e", "sha256": "23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201", + "sha1_git": "ad74753e093e867af9b04b6829fb9ff2df69d068", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": "C", @@ -59,6 +60,7 @@ "sha1": "3922760d8492eb8f853c10a627f5a73f9eaec6ff", "md5": "fc7f53659b7a9db8b6dff0638641778e", "sha256": "23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201", + "sha1_git": "ad74753e093e867af9b04b6829fb9ff2df69d068", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": "C", @@ -105,6 +107,7 @@ "sha1": "c91811eb5fdc7ab440355f9f8d1580e1518b0c2f", "md5": "e999e21c9d7de4d0f943aefbb6f21b99", "sha256": "abd984f8715001bb54d5a2ef293b2c559861756b17c4461cde3ac08e9b61ec78", + "sha1_git": "e2233fbac26bc59f4e636de5f461c1108fd5a5ec", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": "C", @@ -151,6 +154,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -185,6 +189,7 @@ "sha1": "3922760d8492eb8f853c10a627f5a73f9eaec6ff", "md5": "fc7f53659b7a9db8b6dff0638641778e", "sha256": "23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201", + "sha1_git": "ad74753e093e867af9b04b6829fb9ff2df69d068", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": "C", @@ -231,6 +236,7 @@ "sha1": "3922760d8492eb8f853c10a627f5a73f9eaec6ff", "md5": "fc7f53659b7a9db8b6dff0638641778e", "sha256": "23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201", + "sha1_git": "ad74753e093e867af9b04b6829fb9ff2df69d068", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": "C", @@ -277,6 +283,7 @@ "sha1": "389af7e629a9853056e42b262d5e30bf4579a74f", "md5": "290627a1387288ef77ae7e07946f3ecf", "sha256": "271a9f4402a59c923ee04fd9bd3f2aa188d2b9e4741cef1b756ec7116f9d83ef", + "sha1_git": "161faeaa72fbb4c9209249024201235695d272a8", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": "C", @@ -323,6 +330,7 @@ "sha1": "58748872d25374160692f1ed7075d0fe80a544b1", "md5": "88e46475db9b1a68f415f6a3544eeb16", "sha256": "f6810dc076ffe08dad2812318e414ac4123de9a612faabc35121206a4fa48ce4", + "sha1_git": "ef84e1098a2bee538c9a6f70a020f456d7c09f20", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": "C", diff --git a/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml b/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml index 52400305fd9..be82db689c9 100644 --- a/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml +++ b/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml @@ -29,9 +29,9 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-6.8.0-52-generic-x86_64-with-glibc2.35 - platform_version: '#53~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Jan 15 19:18:46 UTC 2' - python_version: 3.12.9 (main, Feb 20 2025, 19:13:20) [GCC 11.4.0] + platform: Linux-5.15.0-141-generic-x86_64-with-glibc2.35 + platform_version: '#151-Ubuntu SMP Sun May 18 21:35:19 UTC 2025' + python_version: 3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0] spdx_license_list_version: '3.26' files_count: 4 summary: @@ -1009,6 +1009,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -1048,6 +1049,7 @@ files: sha1: 1df6d834f14cf559f8294602edc62cd1fd3a801a md5: 4d6efca9ce0e3674ff53d5769e8e6d3b sha256: 558bb811471ccfa7e3a17920decbea52596cdb3cbb40bcd3b55dba2a62814650 + sha1_git: 109b12c996b5dd0776b484ade75c0e45d0a97cb5 mime_type: text/plain file_type: ASCII text programming_language: @@ -1124,6 +1126,7 @@ files: sha1: 803d68221700c6b60432e1d8b010939d0eed6867 md5: f427d9ebd9d6c9d4b172a0a5960f298c sha256: 91fea55e6d99116f24c4293db9d8db13860de1bb00c8b74b49c7d77cbf7fecdb + sha1_git: 28827dd3ff369ed5f984600d81819a7aac10206b mime_type: text/plain file_type: ASCII text programming_language: @@ -1333,6 +1336,7 @@ files: sha1: 9cbb2036cd73988fc5d0e6cf39440c6537c5f95e md5: 89ae103eebeb166a19618c03192ae445 sha256: 7835c7a4c87bdf13cbc406b0f696d6ad20351ee48e591f3df4b1d26e57d415cf + sha1_git: 518e1abe66afdcebdb2667c5fb5a6ac7db3bc0bc mime_type: text/plain file_type: ASCII text programming_language: @@ -1408,6 +1412,7 @@ files: sha1: ca794853822fc3793fbb4957185148f522c6a8df md5: dce126308b696b221e6e2a95baac2f43 sha256: 5818a2cd6a864bda25cb95ce8a991abaf2992de4ab9d5417fc9730b2497f1a1a + sha1_git: 5a4f05388d110a0616dc430afda0a66fcdc76b79 mime_type: text/plain file_type: ASCII text programming_language: diff --git a/tests/formattedcode/data/yaml/simple-expected.yaml b/tests/formattedcode/data/yaml/simple-expected.yaml index 9e82cf3a9f9..2399a616787 100644 --- a/tests/formattedcode/data/yaml/simple-expected.yaml +++ b/tests/formattedcode/data/yaml/simple-expected.yaml @@ -14,18 +14,18 @@ headers: for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. Visit https://github.com/nexB/scancode-toolkit/ for support and download. - output_format_version: 3.0.0 + output_format_version: 4.0.0 message: errors: [] warnings: [] extra_data: system_environment: - operating_system: mac + operating_system: linux cpu_architecture: 64 - platform: macOS-13.2.1-x86_64-i386-64bit - platform_version: 'Darwin Kernel Version 22.3.0: Mon Jan 30 20:39:35 PST 2023; root:xnu-8792.81.3~2/RELEASE_ARM64_T8103' - python_version: 3.10.6 (main, Aug 30 2022, 05:12:36) [Clang 13.1.6 (clang-1316.0.21.2.5)] - spdx_license_list_version: '3.20' + platform: Linux-5.15.0-141-generic-x86_64-with-glibc2.35 + platform_version: '#151-Ubuntu SMP Sun May 18 21:35:19 UTC 2025' + python_version: 3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0] + spdx_license_list_version: '3.26' files_count: 1 packages: [] dependencies: [] @@ -40,6 +40,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -72,6 +73,7 @@ files: sha1: e2466d5b764d27fb301ceb439ffb5da22e43ab1d md5: bdf7c572beb4094c2059508fa73c05a4 sha256: 234d690ec9a5ac134e01847f34581b0ea83dfd1f3d4c79bee046297baa5f5925 + sha1_git: 23dbd722d5dab05fbc0c49b61130ac421338c77a mime_type: text/plain file_type: UTF-8 Unicode text, with no line terminators programming_language: C diff --git a/tests/formattedcode/data/yaml/tree/expected.yaml b/tests/formattedcode/data/yaml/tree/expected.yaml index e3ffeff4d5f..87f126c5753 100644 --- a/tests/formattedcode/data/yaml/tree/expected.yaml +++ b/tests/formattedcode/data/yaml/tree/expected.yaml @@ -15,7 +15,7 @@ headers: for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. Visit https://github.com/nexB/scancode-toolkit/ for support and download. - output_format_version: 3.0.0 + output_format_version: 4.0.0 message: errors: [] warnings: [] @@ -23,10 +23,10 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-5.14.0-1058-oem-x86_64-with-glibc2.29 - platform_version: '#66-Ubuntu SMP Fri Feb 10 09:46:18 UTC 2023' - python_version: "3.8.10 (default, Nov 14 2022, 12:59:47) \n[GCC 9.4.0]" - spdx_license_list_version: '3.20' + platform: Linux-5.15.0-141-generic-x86_64-with-glibc2.35 + platform_version: '#151-Ubuntu SMP Sun May 18 21:35:19 UTC 2025' + python_version: 3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0] + spdx_license_list_version: '3.26' files_count: 7 packages: [] dependencies: [] @@ -41,6 +41,7 @@ files: sha1: 3922760d8492eb8f853c10a627f5a73f9eaec6ff md5: fc7f53659b7a9db8b6dff0638641778e sha256: 23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201 + sha1_git: ad74753e093e867af9b04b6829fb9ff2df69d068 mime_type: text/plain file_type: UTF-8 Unicode text programming_language: C @@ -79,6 +80,7 @@ files: sha1: 3922760d8492eb8f853c10a627f5a73f9eaec6ff md5: fc7f53659b7a9db8b6dff0638641778e sha256: 23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201 + sha1_git: ad74753e093e867af9b04b6829fb9ff2df69d068 mime_type: text/plain file_type: UTF-8 Unicode text programming_language: C @@ -117,6 +119,7 @@ files: sha1: c91811eb5fdc7ab440355f9f8d1580e1518b0c2f md5: e999e21c9d7de4d0f943aefbb6f21b99 sha256: abd984f8715001bb54d5a2ef293b2c559861756b17c4461cde3ac08e9b61ec78 + sha1_git: e2233fbac26bc59f4e636de5f461c1108fd5a5ec mime_type: text/plain file_type: UTF-8 Unicode text programming_language: C @@ -155,6 +158,7 @@ files: sha1: md5: sha256: + sha1_git: mime_type: file_type: programming_language: @@ -187,6 +191,7 @@ files: sha1: 3922760d8492eb8f853c10a627f5a73f9eaec6ff md5: fc7f53659b7a9db8b6dff0638641778e sha256: 23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201 + sha1_git: ad74753e093e867af9b04b6829fb9ff2df69d068 mime_type: text/plain file_type: UTF-8 Unicode text programming_language: C @@ -225,6 +230,7 @@ files: sha1: 3922760d8492eb8f853c10a627f5a73f9eaec6ff md5: fc7f53659b7a9db8b6dff0638641778e sha256: 23fe3ce8ad18772ea688a435bb624d65e08fdee1d31b9f620a1ba62619c0f201 + sha1_git: ad74753e093e867af9b04b6829fb9ff2df69d068 mime_type: text/plain file_type: UTF-8 Unicode text programming_language: C @@ -263,6 +269,7 @@ files: sha1: 389af7e629a9853056e42b262d5e30bf4579a74f md5: 290627a1387288ef77ae7e07946f3ecf sha256: 271a9f4402a59c923ee04fd9bd3f2aa188d2b9e4741cef1b756ec7116f9d83ef + sha1_git: 161faeaa72fbb4c9209249024201235695d272a8 mime_type: text/plain file_type: UTF-8 Unicode text programming_language: C @@ -301,6 +308,7 @@ files: sha1: 58748872d25374160692f1ed7075d0fe80a544b1 md5: 88e46475db9b1a68f415f6a3544eeb16 sha256: f6810dc076ffe08dad2812318e414ac4123de9a612faabc35121206a4fa48ce4 + sha1_git: ef84e1098a2bee538c9a6f70a020f456d7c09f20 mime_type: text/plain file_type: UTF-8 Unicode text programming_language: C diff --git a/tests/licensedcode/data/plugin_license_policy/file_with_multiple_licenses.expected.json b/tests/licensedcode/data/plugin_license_policy/file_with_multiple_licenses.expected.json index f8e19bbe578..6c2b5b75fa0 100644 --- a/tests/licensedcode/data/plugin_license_policy/file_with_multiple_licenses.expected.json +++ b/tests/licensedcode/data/plugin_license_policy/file_with_multiple_licenses.expected.json @@ -48,6 +48,7 @@ "sha1": "92bb9a9fbe881166541fb395dc29501851405892", "md5": "1dcb636e0d184b1c85a47245ec6ef8ca", "sha256": "1f9e9d483e71691f5d0a5aa2ad89b07cc7f52ed0ff18b9ab641527c6c2974203", + "sha1_git": "a4cb356182c7f281cbd9dbbd516f388e0b6c3c8a", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/licensedcode/data/plugin_license_policy/policy-codebase.expected.json b/tests/licensedcode/data/plugin_license_policy/policy-codebase.expected.json index e9359dd7d62..a1c31b50b3f 100644 --- a/tests/licensedcode/data/plugin_license_policy/policy-codebase.expected.json +++ b/tests/licensedcode/data/plugin_license_policy/policy-codebase.expected.json @@ -122,6 +122,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -152,6 +153,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -182,6 +184,7 @@ "sha1": "217ccbbd9f1fb74515d4876546331fcd89231960", "md5": "24f77d5a5c926f8779feef39ba4b3c16", "sha256": "9b5f0e72a72c5cdacf37e62e958155f02c75433ef60e0985f7ba471d8d25d2b0", + "sha1_git": "93d5eb9619b930a3f923cbb2b42c5874e044acc4", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -241,6 +244,7 @@ "sha1": "02056333e1deb7deefcd9a43ce010ffa60f5dadf", "md5": "b6a98b8fb9697411ff10f16cf5ab7bab", "sha256": "daaf83d3795d98119d15139a03e57331cc462100c51b9ad278248172d6f3097a", + "sha1_git": "8e97f38dc996392e28c1bf6628a90712644b9662", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -300,6 +304,7 @@ "sha1": "e5646193f4e52c43d549c5e8ed389a39fa988b49", "md5": "629e535ed3b3d6a5e52b1fa96dcd9bfb", "sha256": "05e84837a6b210ec4727ba362caf1946fc78550b7131ef25923af1593ea1e4f7", + "sha1_git": "842ea36368359fc457714c20a97a3cdebd22d447", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -359,6 +364,7 @@ "sha1": "f891d3b96d0c01f1d754f494c65aba9231c1d7b5", "md5": "040e0f985dcc6c2e8093f7dc5c4bf64d", "sha256": "001aef30f8edbd2bd36ce13a8ea47bce4de99796ae74afba7ed97a0745bf53d1", + "sha1_git": "ed3ebbc7e1bd770e23e03f40f5c422543de81a29", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with very long lines", "programming_language": null, @@ -418,6 +424,7 @@ "sha1": "f371cde1d49624fb791e079a283be63db03d41bd", "md5": "c9646421755f00aff62024dc72231f24", "sha256": "1f11e800d2e0052b75539726a93dcd2ffb76b38d187a81ba44adc82c1cfeed8c", + "sha1_git": "3624448f44d3a02073e11bef6290f7aa046243c4", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": null, diff --git a/tests/licensedcode/data/plugin_license_text/scan.expected.json b/tests/licensedcode/data/plugin_license_text/scan.expected.json index 9db04526ab2..34cb2205957 100644 --- a/tests/licensedcode/data/plugin_license_text/scan.expected.json +++ b/tests/licensedcode/data/plugin_license_text/scan.expected.json @@ -112,6 +112,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -141,6 +142,7 @@ "sha1": "2a117ed4f85020c7917c9a5d1e42eb38f6d24c46", "md5": "e8e5d68da4e4bf17e7ab87492b30a730", "sha256": "a13e777d1f16cc3171a0212eca34f69bc5426833f0ac013d89a65aa22b8b087a", + "sha1_git": "bd04ad6465595e49bcb324a882a266d8b5877063", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -195,6 +197,7 @@ "sha1": "bff07e7b6d3eac4d9f6a2fbc506e43bb066eb34e", "md5": "0d7aff886fb38fa0205bceb964d6f096", "sha256": "3a4b10c5f16d76ca94cec99e6398af76af3a8efe666b4de8afe20e146ad53dc0", + "sha1_git": "1b3781481785615529664160381099962d926018", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -249,6 +252,7 @@ "sha1": "bfc4452d91cef87cdbfd9856b2257f259b925669", "md5": "b57386ac3afa45ee16505f162196ff1b", "sha256": "15de8286e318d7dbac8b3ca5ce16ece002522872b5fc4e181bf441c0eae3fb3f", + "sha1_git": "c91f866a822959fdb41343661cfb6dd0595321ab", "mime_type": "text/plain", "file_type": "ASCII text, with very long lines", "programming_language": "Java", @@ -327,6 +331,7 @@ "sha1": "8e558d7fbea9045c5aa7addeca03d9afe7571ee9", "md5": "217f09522fa577f13a2a698a4e87ef90", "sha256": "d219a2e4e0b1cdaf9830c11de7a68930ecf42cc55b06e486f122f6fab70a2215", + "sha1_git": "5eb2c5d1db5783cad471f97cdc621ac811e0c241", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -381,6 +386,7 @@ "sha1": "88a4d38cd2744c9f8daa73f91873261ec521b491", "md5": "f8510b0d32023e128baf82f5a0f663ce", "sha256": "ae6e9666c2e47153cf66f8d8e294ccc26956c7bfcef434e78a9d795457629a81", + "sha1_git": "e886225652d5aaeef49dc6a1286e49ce7e8d6324", "mime_type": "text/x-java", "file_type": "Java source, ASCII text, with very long lines", "programming_language": "Java", diff --git a/tests/scancode/data/altpath/copyright.expected.json b/tests/scancode/data/altpath/copyright.expected.json index e17dbfb897f..5aae87a65ae 100644 --- a/tests/scancode/data/altpath/copyright.expected.json +++ b/tests/scancode/data/altpath/copyright.expected.json @@ -10,6 +10,7 @@ "sha1": "e2466d5b764d27fb301ceb439ffb5da22e43ab1d", "md5": "bdf7c572beb4094c2059508fa73c05a4", "sha256": "234d690ec9a5ac134e01847f34581b0ea83dfd1f3d4c79bee046297baa5f5925", + "sha1_git": "23dbd722d5dab05fbc0c49b61130ac421338c77a", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with no line terminators", "programming_language": "C", diff --git a/tests/scancode/data/info/all.expected.json b/tests/scancode/data/info/all.expected.json index e99000af6a2..d4ccd707dc5 100644 --- a/tests/scancode/data/info/all.expected.json +++ b/tests/scancode/data/info/all.expected.json @@ -57,6 +57,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -90,6 +91,7 @@ "sha1": "94f059d6478d5f460e79b6b948a7fa9849d4dfdc", "md5": "15240737ec72b9e88b485a663bd045f9", "sha256": "ddd09be9e5ed46b2678d8f16967a9e3e05cada8ffdfdc929c25956a969dc6513", + "sha1_git": "3abd3bd3ad175b5fc8728320033f541ee732c892", "mime_type": "application/octet-stream", "file_type": "data", "programming_language": null, @@ -123,6 +125,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -156,6 +159,7 @@ "sha1": "b655d4fc48e19910b9ab7a7102a8c051a39818f1", "md5": "393e789f4e4b2be93a46d0619380b445", "sha256": "21fa169818161ad0f263d74c6b570dd3d29b98bb85191a63d1a14ea246688d3d", + "sha1_git": "816bd585f3c8e41830d443ed9f2cc1a2a08404ab", "mime_type": "application/x-tar", "file_type": "POSIX tar archive (GNU)", "programming_language": null, @@ -189,6 +193,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -222,6 +227,7 @@ "sha1": "03cfd28bb49d1dab105dcce1663630be1ddd821a", "md5": "b2b073a64e4d568ce7b641c1857a7116", "sha256": "06a9c5bd0503aa2149a628f8de5013ba9be8aaeed620ada00fab52c146266946", + "sha1_git": "4d10918f53faa37aabb14ed73a5f360adb9d2644", "mime_type": "audio/x-aiff", "file_type": "IFF data, AIFF audio", "programming_language": null, @@ -255,6 +261,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -288,6 +295,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -321,6 +329,7 @@ "sha1": "99f20eafc7b7e1c8e21bced55c8cdd05339bec77", "md5": "e1c66adaf6b8aa90e348668ac4869a61", "sha256": "230de4eee886fa5ac0b056242ee0a9e90ac1d2fa425b14219902a9839fb4d59e", + "sha1_git": "0cc27583ed309e040d1bf010e779097601c8815d", "mime_type": "text/x-c", "file_type": "C source, ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -394,6 +403,7 @@ "sha1": "4d567dc15d2117445389edfb64ced872329bceaa", "md5": "107dd38273ab10ce12058a3c8977e4ee", "sha256": "d33295b8bb95bf8ca2d4817d19efa37478b74ff02f21d243c9e80d32a973142a", + "sha1_git": "47105f6afddd6e68804828273ef22793d111949d", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -427,6 +437,7 @@ "sha1": "35017ed9762bdc9d16054a40ceefdda8b362083a", "md5": "8d0a3b3fe1c96a49af2a66040193291b", "sha256": "c6f6fb075abb1414982b4aaea37093d9120ce28fea1484ca7e275c262ec09b1c", + "sha1_git": "95923c270c15d70c511f87737b5e827dd48d021f", "mime_type": "text/x-c", "file_type": "C source, ASCII text", "programming_language": "C", diff --git a/tests/scancode/data/info/basic.expected.json b/tests/scancode/data/info/basic.expected.json index 561f173fb8d..7a7c809a0c2 100644 --- a/tests/scancode/data/info/basic.expected.json +++ b/tests/scancode/data/info/basic.expected.json @@ -11,6 +11,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -36,6 +37,7 @@ "sha1": "94f059d6478d5f460e79b6b948a7fa9849d4dfdc", "md5": "15240737ec72b9e88b485a663bd045f9", "sha256": "ddd09be9e5ed46b2678d8f16967a9e3e05cada8ffdfdc929c25956a969dc6513", + "sha1_git": "3abd3bd3ad175b5fc8728320033f541ee732c892", "mime_type": "application/octet-stream", "file_type": "data", "programming_language": null, @@ -61,6 +63,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -86,6 +89,7 @@ "sha1": "b655d4fc48e19910b9ab7a7102a8c051a39818f1", "md5": "393e789f4e4b2be93a46d0619380b445", "sha256": "21fa169818161ad0f263d74c6b570dd3d29b98bb85191a63d1a14ea246688d3d", + "sha1_git": "816bd585f3c8e41830d443ed9f2cc1a2a08404ab", "mime_type": "application/x-tar", "file_type": "POSIX tar archive (GNU)", "programming_language": null, @@ -111,6 +115,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -136,6 +141,7 @@ "sha1": "03cfd28bb49d1dab105dcce1663630be1ddd821a", "md5": "b2b073a64e4d568ce7b641c1857a7116", "sha256": "06a9c5bd0503aa2149a628f8de5013ba9be8aaeed620ada00fab52c146266946", + "sha1_git": "4d10918f53faa37aabb14ed73a5f360adb9d2644", "mime_type": "audio/x-aiff", "file_type": "IFF data, AIFF audio", "programming_language": null, @@ -161,6 +167,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -186,6 +193,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -211,6 +219,7 @@ "sha1": "99f20eafc7b7e1c8e21bced55c8cdd05339bec77", "md5": "e1c66adaf6b8aa90e348668ac4869a61", "sha256": "230de4eee886fa5ac0b056242ee0a9e90ac1d2fa425b14219902a9839fb4d59e", + "sha1_git": "0cc27583ed309e040d1bf010e779097601c8815d", "mime_type": "text/x-c", "file_type": "C source, ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -236,6 +245,7 @@ "sha1": "4d567dc15d2117445389edfb64ced872329bceaa", "md5": "107dd38273ab10ce12058a3c8977e4ee", "sha256": "d33295b8bb95bf8ca2d4817d19efa37478b74ff02f21d243c9e80d32a973142a", + "sha1_git": "47105f6afddd6e68804828273ef22793d111949d", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -261,6 +271,7 @@ "sha1": "35017ed9762bdc9d16054a40ceefdda8b362083a", "md5": "8d0a3b3fe1c96a49af2a66040193291b", "sha256": "c6f6fb075abb1414982b4aaea37093d9120ce28fea1484ca7e275c262ec09b1c", + "sha1_git": "95923c270c15d70c511f87737b5e827dd48d021f", "mime_type": "text/x-c", "file_type": "C source, ASCII text", "programming_language": "C", diff --git a/tests/scancode/data/info/basic.rooted.expected.json b/tests/scancode/data/info/basic.rooted.expected.json index 2054f01bc3f..e0868a660ea 100644 --- a/tests/scancode/data/info/basic.rooted.expected.json +++ b/tests/scancode/data/info/basic.rooted.expected.json @@ -11,6 +11,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -36,6 +37,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -61,6 +63,7 @@ "sha1": "94f059d6478d5f460e79b6b948a7fa9849d4dfdc", "md5": "15240737ec72b9e88b485a663bd045f9", "sha256": "ddd09be9e5ed46b2678d8f16967a9e3e05cada8ffdfdc929c25956a969dc6513", + "sha1_git": "3abd3bd3ad175b5fc8728320033f541ee732c892", "mime_type": "application/octet-stream", "file_type": "data", "programming_language": null, @@ -86,6 +89,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -111,6 +115,7 @@ "sha1": "b655d4fc48e19910b9ab7a7102a8c051a39818f1", "md5": "393e789f4e4b2be93a46d0619380b445", "sha256": "21fa169818161ad0f263d74c6b570dd3d29b98bb85191a63d1a14ea246688d3d", + "sha1_git": "816bd585f3c8e41830d443ed9f2cc1a2a08404ab", "mime_type": "application/x-tar", "file_type": "POSIX tar archive (GNU)", "programming_language": null, @@ -136,6 +141,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -161,6 +167,7 @@ "sha1": "03cfd28bb49d1dab105dcce1663630be1ddd821a", "md5": "b2b073a64e4d568ce7b641c1857a7116", "sha256": "06a9c5bd0503aa2149a628f8de5013ba9be8aaeed620ada00fab52c146266946", + "sha1_git": "4d10918f53faa37aabb14ed73a5f360adb9d2644", "mime_type": "audio/x-aiff", "file_type": "IFF data, AIFF audio", "programming_language": null, @@ -186,6 +193,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -211,6 +219,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -236,6 +245,7 @@ "sha1": "99f20eafc7b7e1c8e21bced55c8cdd05339bec77", "md5": "e1c66adaf6b8aa90e348668ac4869a61", "sha256": "230de4eee886fa5ac0b056242ee0a9e90ac1d2fa425b14219902a9839fb4d59e", + "sha1_git": "0cc27583ed309e040d1bf010e779097601c8815d", "mime_type": "text/x-c", "file_type": "C source, ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -261,6 +271,7 @@ "sha1": "4d567dc15d2117445389edfb64ced872329bceaa", "md5": "107dd38273ab10ce12058a3c8977e4ee", "sha256": "d33295b8bb95bf8ca2d4817d19efa37478b74ff02f21d243c9e80d32a973142a", + "sha1_git": "47105f6afddd6e68804828273ef22793d111949d", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -286,6 +297,7 @@ "sha1": "35017ed9762bdc9d16054a40ceefdda8b362083a", "md5": "8d0a3b3fe1c96a49af2a66040193291b", "sha256": "c6f6fb075abb1414982b4aaea37093d9120ce28fea1484ca7e275c262ec09b1c", + "sha1_git": "95923c270c15d70c511f87737b5e827dd48d021f", "mime_type": "text/x-c", "file_type": "C source, ASCII text", "programming_language": "C", diff --git a/tests/scancode/data/info/email_url_info.expected.json b/tests/scancode/data/info/email_url_info.expected.json index b9e741dcd3d..19db3586263 100644 --- a/tests/scancode/data/info/email_url_info.expected.json +++ b/tests/scancode/data/info/email_url_info.expected.json @@ -11,6 +11,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -38,6 +39,7 @@ "sha1": "94f059d6478d5f460e79b6b948a7fa9849d4dfdc", "md5": "15240737ec72b9e88b485a663bd045f9", "sha256": "ddd09be9e5ed46b2678d8f16967a9e3e05cada8ffdfdc929c25956a969dc6513", + "sha1_git": "3abd3bd3ad175b5fc8728320033f541ee732c892", "mime_type": "application/octet-stream", "file_type": "data", "programming_language": null, @@ -65,6 +67,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -92,6 +95,7 @@ "sha1": "b655d4fc48e19910b9ab7a7102a8c051a39818f1", "md5": "393e789f4e4b2be93a46d0619380b445", "sha256": "21fa169818161ad0f263d74c6b570dd3d29b98bb85191a63d1a14ea246688d3d", + "sha1_git": "816bd585f3c8e41830d443ed9f2cc1a2a08404ab", "mime_type": "application/x-tar", "file_type": "POSIX tar archive (GNU)", "programming_language": null, @@ -119,6 +123,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -146,6 +151,7 @@ "sha1": "03cfd28bb49d1dab105dcce1663630be1ddd821a", "md5": "b2b073a64e4d568ce7b641c1857a7116", "sha256": "06a9c5bd0503aa2149a628f8de5013ba9be8aaeed620ada00fab52c146266946", + "sha1_git": "4d10918f53faa37aabb14ed73a5f360adb9d2644", "mime_type": "audio/x-aiff", "file_type": "IFF data, AIFF audio", "programming_language": null, @@ -173,6 +179,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -200,6 +207,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -227,6 +235,7 @@ "sha1": "99f20eafc7b7e1c8e21bced55c8cdd05339bec77", "md5": "e1c66adaf6b8aa90e348668ac4869a61", "sha256": "230de4eee886fa5ac0b056242ee0a9e90ac1d2fa425b14219902a9839fb4d59e", + "sha1_git": "0cc27583ed309e040d1bf010e779097601c8815d", "mime_type": "text/x-c", "file_type": "C source, ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -266,6 +275,7 @@ "sha1": "4d567dc15d2117445389edfb64ced872329bceaa", "md5": "107dd38273ab10ce12058a3c8977e4ee", "sha256": "d33295b8bb95bf8ca2d4817d19efa37478b74ff02f21d243c9e80d32a973142a", + "sha1_git": "47105f6afddd6e68804828273ef22793d111949d", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -299,6 +309,7 @@ "sha1": "35017ed9762bdc9d16054a40ceefdda8b362083a", "md5": "8d0a3b3fe1c96a49af2a66040193291b", "sha256": "c6f6fb075abb1414982b4aaea37093d9120ce28fea1484ca7e275c262ec09b1c", + "sha1_git": "95923c270c15d70c511f87737b5e827dd48d021f", "mime_type": "text/x-c", "file_type": "C source, ASCII text", "programming_language": "C", diff --git a/tests/scancode/data/non_utf8/expected-linux.json b/tests/scancode/data/non_utf8/expected-linux.json index 10080e8320f..c932cb4cbe5 100644 --- a/tests/scancode/data/non_utf8/expected-linux.json +++ b/tests/scancode/data/non_utf8/expected-linux.json @@ -11,6 +11,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -36,6 +37,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -61,6 +63,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -86,6 +89,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -111,6 +115,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -136,6 +141,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -161,6 +167,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -186,6 +193,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -211,6 +219,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -236,6 +245,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -261,6 +271,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -286,6 +297,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -311,6 +323,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -336,6 +349,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -361,6 +375,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -386,6 +401,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -411,6 +427,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -436,6 +453,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -461,6 +479,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, diff --git a/tests/scancode/data/plugin_mark_source/with_info.expected.json b/tests/scancode/data/plugin_mark_source/with_info.expected.json index 761909dd9a4..3ed9b0f56c0 100644 --- a/tests/scancode/data/plugin_mark_source/with_info.expected.json +++ b/tests/scancode/data/plugin_mark_source/with_info.expected.json @@ -11,6 +11,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -37,6 +38,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -63,6 +65,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -89,6 +92,7 @@ "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", "md5": "276982197c941f4cbf3d218546e17ae2", "sha256": "b03079c80bc3657f4b9d838f02f036e4611693a0e42b043d5d71b45ac6c5040d", + "sha1_git": "dae2270c2c0118eef91e8a6c841299983b71e771", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -115,6 +119,7 @@ "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", "md5": "d273d63619c9aeaf15cdaf76422c4f87", "sha256": "3ddf9be5c28fe27dad143a5dc76eea25222ad1dd68934a047064e56ed2fa40c5", + "sha1_git": "75b52484ea471f882c29e02693b4f02dba175b5e", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -141,6 +146,7 @@ "sha1": "74facb0e9a734479f9cd893b5be3fe1bf651b760", "md5": "9fffd8de865a5705969f62b128381f85", "sha256": "3d469c451a2a0e97380b90143d979281fadd39be55432b903e6bd18b1b9915d4", + "sha1_git": "3cf73c2f03238a23b56389c301deece6ab625b20", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -167,6 +173,7 @@ "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", "sha256": "d9a768a23056b25ab4b0b48381003ce55f0d32514da5a4e017fa0765b3a887aa", + "sha1_git": "2243be15b296d7f00716bfb6e909d7325dbca0a8", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -193,6 +200,7 @@ "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", "md5": "f14599a2f089f6ff8c97e2baa4e3d575", "sha256": "885a03f54b157961236f46843e79972abfcd6890b6cbb368bc7eca328ff95a12", + "sha1_git": "cbee875ba6ddb0dadab286daf7ccec2f6f64191f", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -219,6 +227,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -245,6 +254,7 @@ "sha1": "5901f73dcc78155a1a2c7b5663a3a11fba400b19", "md5": "aca9640ec8beee21b098bcf8ecc91442", "sha256": "aac525060867f5004c7343690f1c197c9a678b334d402e0e9fd117c8b2df73f2", + "sha1_git": "46cf578d6de505d076c7ed49cc791f6597b6f4a9", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", @@ -271,6 +281,7 @@ "sha1": "981d67087e65e9a44957c026d4b10817cf77d966", "md5": "c5064400f759d3e81771005051d17dc1", "sha256": "7c3e384429f27692534184e1511f70416c04c3f0b30be632710101840996695a", + "sha1_git": "6d9a9ec4a3f12a5619dd42cd560f36fd271fea43", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", @@ -297,6 +308,7 @@ "sha1": "30f56b876d5576d9869e2c5c509b08db57110592", "md5": "48ca3c72fb9a65c771a321222f118b88", "sha256": "8a3fb390d4932a92c56e7b999b63b8e5ab55cbe81f65b27439296f279d160bd1", + "sha1_git": "50c720e0bf04f3b06fc8ef4bf7d176c41d6839bc", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -323,6 +335,7 @@ "sha1": "a8087e5d50da3273536ebda9b87b77aa4ff55deb", "md5": "4626bdbc48871b55513e1a12991c61a8", "sha256": "80709043c6c1f4fbd6e7a43c9381da034ab9b67e2e6fee80973a0d4fd33664e0", + "sha1_git": "d0765aa5f296c5f9711b279014331f62ea6f43f4", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", @@ -349,6 +362,7 @@ "sha1": "c1f6818f8ee7bddcc9f444bc94c099729d716d52", "md5": "eecfe23494acbcd8088c93bc1e83c7f2", "sha256": "f212de138e8cb0b7eb13521d8ed2620bc41af55093b857da753d7753b1d3438d", + "sha1_git": "1e0b9f9ef4c063cb7e62e9ddd9abf6a596ef7faa", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", @@ -375,6 +389,7 @@ "sha1": "eb419dc94cfe11ca318a3e743a7f9f080e70c751", "md5": "20bee9631b7c82a45c250e095352aec7", "sha256": "c39a40d4057256a8fe70f2b69e5f940edcaf8b377b546d537e799ecff3f58b81", + "sha1_git": "47153252434d56c35406e63207e4a6a393fa508f", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", @@ -401,6 +416,7 @@ "sha1": "08dba9986f69719970ead3592dc565465164df0d", "md5": "83d8324f37d0e3f120bc89865cf0bd39", "sha256": "c4d59a8837c6320788c74496201e3ecc0ff2100525ebb727bcae6d855b34c548", + "sha1_git": "2f93ec6cc9cb3cf384268b2bce073a9c4fc152f5", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", diff --git a/tests/scancode/data/plugin_only_findings/basic.expected.json b/tests/scancode/data/plugin_only_findings/basic.expected.json index 03d5751cb1e..db5bdd0ec05 100644 --- a/tests/scancode/data/plugin_only_findings/basic.expected.json +++ b/tests/scancode/data/plugin_only_findings/basic.expected.json @@ -58,6 +58,7 @@ "sha1": "99f20eafc7b7e1c8e21bced55c8cdd05339bec77", "md5": "e1c66adaf6b8aa90e348668ac4869a61", "sha256": "230de4eee886fa5ac0b056242ee0a9e90ac1d2fa425b14219902a9839fb4d59e", + "sha1_git": "0cc27583ed309e040d1bf010e779097601c8815d", "mime_type": "text/x-c", "file_type": "C source, ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -132,6 +133,7 @@ "sha1": "35017ed9762bdc9d16054a40ceefdda8b362083a", "md5": "8d0a3b3fe1c96a49af2a66040193291b", "sha256": "c6f6fb075abb1414982b4aaea37093d9120ce28fea1484ca7e275c262ec09b1c", + "sha1_git": "95923c270c15d70c511f87737b5e827dd48d021f", "mime_type": "text/x-c", "file_type": "C source, ASCII text", "programming_language": "C", diff --git a/tests/scancode/data/single/iproute.expected.json b/tests/scancode/data/single/iproute.expected.json index ce28451c764..01e7fbf1ebe 100644 --- a/tests/scancode/data/single/iproute.expected.json +++ b/tests/scancode/data/single/iproute.expected.json @@ -10,6 +10,7 @@ "sha1": "f0f352c14a8d0b0510cbbeae056542ae7f252151", "md5": "b8e7112a6e82921687fd1e008e72058f", "sha256": "9a011f0109d277cb165f7e8fbcfce4cd3d160b511838228e304c5116fec6038f", + "sha1_git": "5936d16e9355ea54ed3985359c8efbaff1f5f644", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-q b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-q index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-q +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-q @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-v b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-v index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-v +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json-v @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-q b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-q index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-q +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-q @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-v b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-v index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-v +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json-v @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-q b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-q index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-q +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-q @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-v b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-v index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-v +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json-v @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json b/tests/scancode/data/unicodepath/unicodepath.expected-win.json index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json-q b/tests/scancode/data/unicodepath/unicodepath.expected-win.json-q index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json-q +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json-q @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json-v b/tests/scancode/data/unicodepath/unicodepath.expected-win.json-v index 13c1de6c83a..b27ecfbdf1e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json-v +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json-v @@ -13,6 +13,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -49,6 +50,7 @@ "sha1": "71853c6197a6a7f222db0f1978c7cb232b87c5ee", "md5": "e1c06d85ae7b8b032bef47e42e4c08f9", "sha256": "75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070", + "sha1_git": "139597f9cb07c5d48bed18984ec4747f4b4f3438", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -85,6 +87,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -121,6 +124,7 @@ "sha1": "37aa63c77398d954473262e1a0057c1e632eda77", "md5": "552e21cd4cd9918678e3c1a0df491bc3", "sha256": "b94f6f125c79e3a5ffaa826f584c10d52ada669e6762051b826b55776d05aed2", + "sha1_git": "b649a9bf89116c581f8329b8ec3c79a86a70be04", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, diff --git a/tests/scancode/data/weird_file_name/expected-posix.json b/tests/scancode/data/weird_file_name/expected-posix.json index 97cc6909014..0dffc7ad78b 100644 --- a/tests/scancode/data/weird_file_name/expected-posix.json +++ b/tests/scancode/data/weird_file_name/expected-posix.json @@ -11,6 +11,7 @@ "sha1": "715037088f2582f3fbb7e9492f819987f713a332", "md5": "62c4cdf80d860c09f215ffff0a9ed020", "sha256": "6b6e53f9c08ff56cc2f84d8befacd6addba2b985a0f2d765cbba6d978e2d8997", + "sha1_git": "82f9a804ba8ca9e6df1b1f84948e0786daf7c9a8", "mime_type": "text/x-shellscript", "file_type": "POSIX shell script, ASCII text executable", "programming_language": "Bash", @@ -39,6 +40,7 @@ "sha1": "73e029b07257966106d79d35271bf400e3543cea", "md5": "e99c06d03836700154f01778ac782d50", "sha256": "1049097b3589b44621209a50cedbb307c873b430bd2588ffa48ed67b68d8193b", + "sha1_git": "010db579b20245137269bdfe185fa593c4025ed2", "mime_type": "text/x-shellscript", "file_type": "POSIX shell script, ASCII text executable", "programming_language": "Bash", @@ -67,6 +69,7 @@ "sha1": "5fbba80b758b93a311369979d8a68f22c4817d37", "md5": "41ac81497162f2ff48a0442847238ad7", "sha256": "31a57760e11ba9c89c644c3919b98ec6a115e6b923fde4a19f580d9086539fd0", + "sha1_git": "427c4722fec2638cabe7946ff29fe4b112b4900c", "mime_type": "application/javascript", "file_type": "Node.js script, ASCII text executable", "programming_language": null, @@ -95,6 +98,7 @@ "sha1": "b2016984d073f405f9788fbf6ae270b452ab73b0", "md5": "9153a386e70bd1713fef91121fb9cbbf", "sha256": "a9305551ad19c281aba3735a731fa097b8effbd14319489f28ee513528247a49", + "sha1_git": "6f47df842f6b3379c8698aae8e71c538b1565c7e", "mime_type": "application/javascript", "file_type": "Node.js script, ASCII text executable", "programming_language": null, @@ -123,6 +127,7 @@ "sha1": "73e029b07257966106d79d35271bf400e3543cea", "md5": "e99c06d03836700154f01778ac782d50", "sha256": "1049097b3589b44621209a50cedbb307c873b430bd2588ffa48ed67b68d8193b", + "sha1_git": "010db579b20245137269bdfe185fa593c4025ed2", "mime_type": "text/x-shellscript", "file_type": "POSIX shell script, ASCII text executable", "programming_language": "Bash", diff --git a/tests/scancode/test_api.py b/tests/scancode/test_api.py index bcecff581f7..da6ed7b3363 100644 --- a/tests/scancode/test_api.py +++ b/tests/scancode/test_api.py @@ -56,6 +56,7 @@ def test_get_file_info_include_size(self): ('sha1', None), ('md5', None), ('sha256', None), + ('sha1_git', None), ('mime_type', 'inode/x-empty'), ('file_type', 'empty'), ('programming_language', None), diff --git a/tests/summarycode/data/classify/cli.expected.json b/tests/summarycode/data/classify/cli.expected.json index e27875aeb77..a44599bb3d1 100644 --- a/tests/summarycode/data/classify/cli.expected.json +++ b/tests/summarycode/data/classify/cli.expected.json @@ -10,6 +10,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -39,6 +40,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -68,6 +70,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -97,6 +100,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -126,6 +130,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -155,6 +160,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -184,6 +190,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, @@ -213,6 +220,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": "C", @@ -242,6 +250,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": "C", @@ -271,6 +280,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": "inode/x-empty", "file_type": "empty", "programming_language": null, diff --git a/tests/summarycode/data/classify/with_package_data.expected.json b/tests/summarycode/data/classify/with_package_data.expected.json index 6fec63a20c9..e99c6bbd30d 100644 --- a/tests/summarycode/data/classify/with_package_data.expected.json +++ b/tests/summarycode/data/classify/with_package_data.expected.json @@ -222,6 +222,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -255,6 +256,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -288,6 +290,7 @@ "sha1": "0467cda446fa0a3adffb8e70100efdf15a75f053", "md5": "68230276f5363d3774ffdf92294e66c1", "sha256": "a8f82250b0ac94b410c306f5f349b83ee6725bef680c73cc3d8d04b2b396fe66", + "sha1_git": "4a8957e9df8943d884e684970decc38b33359e72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -321,6 +324,7 @@ "sha1": "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "md5": "3b83ef96387f14655fc854ddc3c6bd57", "sha256": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30", + "sha1_git": "d645695673349e3947e8e5ae42332d0ac3164cd7", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -354,6 +358,7 @@ "sha1": "036a3e80c37a3b97cfc479d529dc2ba3082cd364", "md5": "e371da445e8b18fcf8ee5b8c26373007", "sha256": "dbd900a6c5e68795b2673418961804f26f534c1b122fe787f884b5f32df80ba9", + "sha1_git": "d838e1feae9b1a566ef59329a8b067e36b0c56b7", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -437,6 +442,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -470,6 +476,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -503,6 +510,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -536,6 +544,7 @@ "sha1": "ec48402737754d5dd48993edd640303d600b3353", "md5": "90b08182f023ccc15728ac74aa9d0491", "sha256": "a28c75b035294db0c6d3d6424d72ebcc15f3eb457585e62e9787dc4f1758adf7", + "sha1_git": "5842c1d1c52fc9283c849ee294a1da163f3cafd0", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -614,6 +623,7 @@ "sha1": "73c974462b2e26d2747a6289f9bd251ca21ece2a", "md5": "9ec6be9d5ad127d9ecc132198049f747", "sha256": "af6819e54c0ffd60204b55b17d0574385f2bc49a17d43efb8ab58c4d595a8835", + "sha1_git": "62f910882b61faac67e519aab18e2cff402a3c4f", "mime_type": "text/plain", "file_type": "exported SGML document, ASCII text", "programming_language": null, @@ -817,6 +827,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -850,6 +861,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -883,6 +895,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -916,6 +929,7 @@ "sha1": "8d85486b6c1d383228c97fe01080642147908b62", "md5": "05d343e2e3156e7a5e2cf6027409be50", "sha256": "e13d193f4d3d93fb353f08e793e9419a75e1c6fd5a65f02ee3ac143da6e2199c", + "sha1_git": "f06b5eacaa03870e805b3ae81e40ca12e66ff27a", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", @@ -949,6 +963,7 @@ "sha1": "86f3915cbc0290e13fe06a3fc3e8eeafa54a08b6", "md5": "321a67c59b5b3d41705e0742b3e9064d", "sha256": "9427d0ade7b02e93b261dbc8ceb92ef60e3275cf52da88efb9d67a6b8acda232", + "sha1_git": "ba41e2efa222126f6eb2b5550382d7d96542466b", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", diff --git a/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json b/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json index 472231659b1..2584c9023cc 100644 --- a/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json +++ b/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json @@ -273,6 +273,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -308,6 +309,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -343,6 +345,7 @@ "sha1": "9c34c25b3c03dfd10ecdea708760ca28f1ded7cb", "md5": "c0ec3769ff4b88cac753fb58fea83cfb", "sha256": "688b99bb403bc14345d9fce5a96137b8b4d8b6e6510da4c1ce574fd90835a8c0", + "sha1_git": "25ec7ec2fb6062c0c262e48bd6bd319b51f5ff2c", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Python", @@ -425,6 +428,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -463,6 +467,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -534,6 +539,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -605,6 +611,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -676,6 +683,7 @@ "sha1": "ce82bf2d5d3e79dabf5960159d1e14e46560da63", "md5": "5817e002d5c6420ebcd4dfa66e500f10", "sha256": "8fa2aa5fc071cf3b0b8569fefe3360133c1958589453cbd5bc4e9f0b05e5d837", + "sha1_git": "42b764dab909c6bf0644b29b3e8fac32dfaf53c7", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -747,6 +755,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -784,6 +793,7 @@ "sha1": "a4a4a28858425dfb6795ff4eb7b397846f03fda9", "md5": "e10ff141105dc64fbde2dc77c61275db", "sha256": "96af7c1cf3144e8a70972e2fac9f34d6ff884ee01206066b1304f08c71053297", + "sha1_git": "a0ccac174b910557fa15fd0239bd3bb888a87f9a", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -923,6 +933,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -994,6 +1005,7 @@ "sha1": "ddbbd1133bac042f1c1bcbd4aa31337756837271", "md5": "79cb837ae2b9a134e62b7bf3762b5ddc", "sha256": "034be33c6cc3945c5a9a88d87ccbbd4e63bde2b58b1246752586dc9b0fc47c76", + "sha1_git": "44691afa929b88a54fa9ff08550165d53302a758", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/component-package-expected.json b/tests/summarycode/data/plugin_consolidate/component-package-expected.json index c193e6d276d..b312dcd08ea 100644 --- a/tests/summarycode/data/plugin_consolidate/component-package-expected.json +++ b/tests/summarycode/data/plugin_consolidate/component-package-expected.json @@ -225,6 +225,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -260,6 +261,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -298,6 +300,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -369,6 +372,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -440,6 +444,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -511,6 +516,7 @@ "sha1": "ce82bf2d5d3e79dabf5960159d1e14e46560da63", "md5": "5817e002d5c6420ebcd4dfa66e500f10", "sha256": "8fa2aa5fc071cf3b0b8569fefe3360133c1958589453cbd5bc4e9f0b05e5d837", + "sha1_git": "42b764dab909c6bf0644b29b3e8fac32dfaf53c7", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -582,6 +588,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -619,6 +626,7 @@ "sha1": "a4a4a28858425dfb6795ff4eb7b397846f03fda9", "md5": "e10ff141105dc64fbde2dc77c61275db", "sha256": "96af7c1cf3144e8a70972e2fac9f34d6ff884ee01206066b1304f08c71053297", + "sha1_git": "a0ccac174b910557fa15fd0239bd3bb888a87f9a", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -758,6 +766,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -829,6 +838,7 @@ "sha1": "ddbbd1133bac042f1c1bcbd4aa31337756837271", "md5": "79cb837ae2b9a134e62b7bf3762b5ddc", "sha256": "034be33c6cc3945c5a9a88d87ccbbd4e63bde2b58b1246752586dc9b0fc47c76", + "sha1_git": "44691afa929b88a54fa9ff08550165d53302a758", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json b/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json index 35d3f9142db..c5ff206018b 100644 --- a/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json +++ b/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json @@ -123,6 +123,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -158,6 +159,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -193,6 +195,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -230,6 +233,7 @@ "sha1": "21aec44ff80c4f5c2957b4360647785ae25c7854", "md5": "5b896afc8c6958d74694967f60bf4d70", "sha256": "d792df04dffa67fadaa439594792af377e508806960a0094d84dfc8e608cd4f3", + "sha1_git": "e0b2a8349211c0c43480236d0a50a313d2aa0860", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -315,6 +319,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -350,6 +355,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -387,6 +393,7 @@ "sha1": "8b94498ae812abc4f82304aa2f9766df45ba1873", "md5": "87ad74664f4ba242df4bedf2a83b2169", "sha256": "0e8b9334e6f8a9b51d745da57c2a958966c3ed8aab580922fb98e146e9c7552c", + "sha1_git": "98285c2a8f6cb854d5b00ebbd5015b1808ac2832", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -472,6 +479,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -509,6 +517,7 @@ "sha1": "e77836a77dea5398842c5dea1eb4e117ae4af544", "md5": "bf1dfc5106c2a5a818bd26aa414cd38d", "sha256": "56b9cf21e16f43cfbd38acb731bef245396fad8b488f27aaf2758c6ab50f5ab5", + "sha1_git": "842ce478b39ef875660db851224b309b06da67d7", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json b/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json index 4e0ba594022..0a9faa34ec9 100644 --- a/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json +++ b/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json @@ -69,6 +69,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -106,6 +107,7 @@ "sha1": "aa6bd87dbe009f5fbd70b2653a60fc0b63c78b8e", "md5": "6456c2560504a2b5896168b54e4c02fa", "sha256": "8d4f6116197c105da3298ae38a773e55cf587e198624d27d0abbbbea73035e82", + "sha1_git": "862f47ea8b4bb2d52a44bf95f6ab2ddbd1a36544", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -201,6 +203,7 @@ "sha1": "aa6bd87dbe009f5fbd70b2653a60fc0b63c78b8e", "md5": "6456c2560504a2b5896168b54e4c02fa", "sha256": "8d4f6116197c105da3298ae38a773e55cf587e198624d27d0abbbbea73035e82", + "sha1_git": "862f47ea8b4bb2d52a44bf95f6ab2ddbd1a36544", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json b/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json index 9b02d55d6c6..be70c0f116d 100644 --- a/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json +++ b/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json @@ -149,6 +149,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -186,6 +187,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -221,6 +223,7 @@ "sha1": "a4a4a28858425dfb6795ff4eb7b397846f03fda9", "md5": "e10ff141105dc64fbde2dc77c61275db", "sha256": "96af7c1cf3144e8a70972e2fac9f34d6ff884ee01206066b1304f08c71053297", + "sha1_git": "a0ccac174b910557fa15fd0239bd3bb888a87f9a", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -362,6 +365,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -435,6 +439,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -508,6 +513,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -581,6 +587,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -652,6 +659,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json b/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json index 3b21d00b72a..3cf4b80e4d8 100644 --- a/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json +++ b/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json @@ -149,6 +149,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -186,6 +187,7 @@ "sha1": "cb5244fdb5b56f3c80a354c4c12ad0831b6a78df", "md5": "985f757e56da685ae306c9cc41253f30", "sha256": "9d24fe2cdbced95e4b49e63c86960500e2f262a23f75a767c7145c8bca37473f", + "sha1_git": "5e8b1f741798eb5a58804ff06e5f5e799f61312d", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -313,6 +315,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -386,6 +389,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -459,6 +463,7 @@ "sha1": "f3eae084a5690638fd1ada38e653a94179f14263", "md5": "7e0e8162de50e718e248ccd7a2d2cb65", "sha256": "1596d61171cf27cbb8f42bec6864f2903497d31060272aaed933e5df0666c584", + "sha1_git": "429e8931814d2d2b09275a4982a20d55148f3ab6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json b/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json index 66809170cf3..87280f4fda0 100644 --- a/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json +++ b/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json @@ -132,6 +132,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -167,6 +168,7 @@ "sha1": "cb5244fdb5b56f3c80a354c4c12ad0831b6a78df", "md5": "985f757e56da685ae306c9cc41253f30", "sha256": "9d24fe2cdbced95e4b49e63c86960500e2f262a23f75a767c7145c8bca37473f", + "sha1_git": "5e8b1f741798eb5a58804ff06e5f5e799f61312d", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json b/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json index 91c9c43406b..8e6662e5ee5 100644 --- a/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json +++ b/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json @@ -71,6 +71,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -108,6 +109,7 @@ "sha1": "c1c59de6f5973dc018be393cad42eae9eab2bd76", "md5": "d4918bcfd0ba980596702cbaae7ceb13", "sha256": "e3f1e3ca671bbf20a66423f543fac394e6391eaa12abf881cbba771adedbdc7e", + "sha1_git": "2b71b2289c82c93625330148abe0c8f647f43030", "mime_type": "text/plain", "file_type": "ASCII text, with very long lines", "programming_language": null, @@ -179,6 +181,7 @@ "sha1": "c1c59de6f5973dc018be393cad42eae9eab2bd76", "md5": "d4918bcfd0ba980596702cbaae7ceb13", "sha256": "e3f1e3ca671bbf20a66423f543fac394e6391eaa12abf881cbba771adedbdc7e", + "sha1_git": "2b71b2289c82c93625330148abe0c8f647f43030", "mime_type": "text/plain", "file_type": "ASCII text, with very long lines", "programming_language": null, @@ -250,6 +253,7 @@ "sha1": "c1c59de6f5973dc018be393cad42eae9eab2bd76", "md5": "d4918bcfd0ba980596702cbaae7ceb13", "sha256": "e3f1e3ca671bbf20a66423f543fac394e6391eaa12abf881cbba771adedbdc7e", + "sha1_git": "2b71b2289c82c93625330148abe0c8f647f43030", "mime_type": "text/plain", "file_type": "ASCII text, with very long lines", "programming_language": null, @@ -321,6 +325,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -358,6 +363,7 @@ "sha1": "e37712571a025608fd352ef365f6cf2ca0a0dac9", "md5": "d19b821a9d3564a3592df92e3956687a", "sha256": "72c1b21a012f749a1b90d7da7adab7c0c60cb4acaef29b8c60627d36e0d31be6", + "sha1_git": "467e72c467015cf8372e5a0485cb9dcb664c487d", "mime_type": "text/plain", "file_type": "ASCII text, with very long lines", "programming_language": null, diff --git a/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json b/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json index 5caabdbbdd7..4d0de5c310c 100644 --- a/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json +++ b/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json @@ -107,6 +107,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -142,6 +143,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -179,6 +181,7 @@ "sha1": "d40f3510342b31094965c538277171ef83c3ff9a", "md5": "4393b546ad103ae739b1409fefeff08a", "sha256": "b6cc9408dbfa9f61074a6bdb600a2b2ce9d0a921d8af530da308dfa8b327eabe", + "sha1_git": "1f9a1396fd57073f2f7f0ef79ecf342f72af4aba", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -250,6 +253,7 @@ "sha1": "d40f3510342b31094965c538277171ef83c3ff9a", "md5": "4393b546ad103ae739b1409fefeff08a", "sha256": "b6cc9408dbfa9f61074a6bdb600a2b2ce9d0a921d8af530da308dfa8b327eabe", + "sha1_git": "1f9a1396fd57073f2f7f0ef79ecf342f72af4aba", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -321,6 +325,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -358,6 +363,7 @@ "sha1": "8b94498ae812abc4f82304aa2f9766df45ba1873", "md5": "87ad74664f4ba242df4bedf2a83b2169", "sha256": "0e8b9334e6f8a9b51d745da57c2a958966c3ed8aab580922fb98e146e9c7552c", + "sha1_git": "98285c2a8f6cb854d5b00ebbd5015b1808ac2832", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -443,6 +449,7 @@ "sha1": "d40f3510342b31094965c538277171ef83c3ff9a", "md5": "4393b546ad103ae739b1409fefeff08a", "sha256": "b6cc9408dbfa9f61074a6bdb600a2b2ce9d0a921d8af530da308dfa8b327eabe", + "sha1_git": "1f9a1396fd57073f2f7f0ef79ecf342f72af4aba", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/score/basic-expected.json b/tests/summarycode/data/score/basic-expected.json index 709f5e179fb..0d63e1af70b 100644 --- a/tests/summarycode/data/score/basic-expected.json +++ b/tests/summarycode/data/score/basic-expected.json @@ -368,6 +368,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -407,6 +408,7 @@ "sha1": "f4399249b905c17338eb06776a7205d6f643d396", "md5": "d897358d498fd2dbb1efedfa297fc0f3", "sha256": "63940bc96c0feeef3b22b96d7d6a4873cdb7f12151ce3362967afdc7f8ec6698", + "sha1_git": "f006181c3c30965e499423bd3fb25ac7cf968c78", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -482,6 +484,7 @@ "sha1": "1ef59e75d33ed8b7b43548fd55843d894db4b910", "md5": "1385905becfdfd8d777342fcb1242d83", "sha256": "1780e44cd2317e04461131b34ea6fa5b1da4a571123c9a391ddc3b865c456298", + "sha1_git": "b6127d64177c08d34ea51f31688e7d97efeda829", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "JavaScript", @@ -557,6 +560,7 @@ "sha1": "003103b742ebfb1e76e80d9fc05ab0b3046f2ab6", "md5": "bd8911e2d8af0caa689f76b9975761fd", "sha256": "d27968b827780212a965387f5ec3421ee59a0bf9166847629db0e716e6d2d9c3", + "sha1_git": "f54d82ed9fae5b25af27ca4ab8250538f9d5e4ad", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, diff --git a/tests/summarycode/data/score/inconsistent_licenses_copyleft-expected.json b/tests/summarycode/data/score/inconsistent_licenses_copyleft-expected.json index 8e2de0e595b..85dc8fd5fd6 100644 --- a/tests/summarycode/data/score/inconsistent_licenses_copyleft-expected.json +++ b/tests/summarycode/data/score/inconsistent_licenses_copyleft-expected.json @@ -390,6 +390,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -429,6 +430,7 @@ "sha1": "f4399249b905c17338eb06776a7205d6f643d396", "md5": "d897358d498fd2dbb1efedfa297fc0f3", "sha256": "63940bc96c0feeef3b22b96d7d6a4873cdb7f12151ce3362967afdc7f8ec6698", + "sha1_git": "f006181c3c30965e499423bd3fb25ac7cf968c78", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -504,6 +506,7 @@ "sha1": "1ef59e75d33ed8b7b43548fd55843d894db4b910", "md5": "1385905becfdfd8d777342fcb1242d83", "sha256": "1780e44cd2317e04461131b34ea6fa5b1da4a571123c9a391ddc3b865c456298", + "sha1_git": "b6127d64177c08d34ea51f31688e7d97efeda829", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "JavaScript", @@ -579,6 +582,7 @@ "sha1": "003103b742ebfb1e76e80d9fc05ab0b3046f2ab6", "md5": "bd8911e2d8af0caa689f76b9975761fd", "sha256": "d27968b827780212a965387f5ec3421ee59a0bf9166847629db0e716e6d2d9c3", + "sha1_git": "f54d82ed9fae5b25af27ca4ab8250538f9d5e4ad", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -868,6 +872,7 @@ "sha1": "b5a76aa5d8949d6ddfc8ef41b0d4e459e3a32d0a", "md5": "7226e442a172bcf25807246d7ef1eba1", "sha256": "2daca237bc5b60e3b7ba984cccdd11927fccaa519ba6e0c0ff7dc812e19d8650", + "sha1_git": "0cb46d2c98c3b4124406a36ccf58c576437b11d6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "JavaScript", diff --git a/tests/summarycode/data/score/jar-expected.json b/tests/summarycode/data/score/jar-expected.json index dfcecef2c60..eb5ad995038 100644 --- a/tests/summarycode/data/score/jar-expected.json +++ b/tests/summarycode/data/score/jar-expected.json @@ -324,6 +324,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -365,6 +366,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -406,6 +408,7 @@ "sha1": "0467cda446fa0a3adffb8e70100efdf15a75f053", "md5": "68230276f5363d3774ffdf92294e66c1", "sha256": "a8f82250b0ac94b410c306f5f349b83ee6725bef680c73cc3d8d04b2b396fe66", + "sha1_git": "4a8957e9df8943d884e684970decc38b33359e72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -447,6 +450,7 @@ "sha1": "2b8b815229aa8a61e483fb4ba0588b8b6c491890", "md5": "3b83ef96387f14655fc854ddc3c6bd57", "sha256": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30", + "sha1_git": "d645695673349e3947e8e5ae42332d0ac3164cd7", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -510,6 +514,7 @@ "sha1": "036a3e80c37a3b97cfc479d529dc2ba3082cd364", "md5": "e371da445e8b18fcf8ee5b8c26373007", "sha256": "dbd900a6c5e68795b2673418961804f26f534c1b122fe787f884b5f32df80ba9", + "sha1_git": "d838e1feae9b1a566ef59329a8b067e36b0c56b7", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": null, @@ -623,6 +628,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -664,6 +670,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -705,6 +712,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -746,6 +754,7 @@ "sha1": "ec48402737754d5dd48993edd640303d600b3353", "md5": "90b08182f023ccc15728ac74aa9d0491", "sha256": "a28c75b035294db0c6d3d6424d72ebcc15f3eb457585e62e9787dc4f1758adf7", + "sha1_git": "5842c1d1c52fc9283c849ee294a1da163f3cafd0", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -832,6 +841,7 @@ "sha1": "73c974462b2e26d2747a6289f9bd251ca21ece2a", "md5": "9ec6be9d5ad127d9ecc132198049f747", "sha256": "af6819e54c0ffd60204b55b17d0574385f2bc49a17d43efb8ab58c4d595a8835", + "sha1_git": "62f910882b61faac67e519aab18e2cff402a3c4f", "mime_type": "text/plain", "file_type": "exported SGML document, ASCII text", "programming_language": null, @@ -1065,6 +1075,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1106,6 +1117,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1147,6 +1159,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1188,6 +1201,7 @@ "sha1": "8d85486b6c1d383228c97fe01080642147908b62", "md5": "05d343e2e3156e7a5e2cf6027409be50", "sha256": "e13d193f4d3d93fb353f08e793e9419a75e1c6fd5a65f02ee3ac143da6e2199c", + "sha1_git": "f06b5eacaa03870e805b3ae81e40ca12e66ff27a", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", @@ -1263,6 +1277,7 @@ "sha1": "86f3915cbc0290e13fe06a3fc3e8eeafa54a08b6", "md5": "321a67c59b5b3d41705e0742b3e9064d", "sha256": "9427d0ade7b02e93b261dbc8ceb92ef60e3275cf52da88efb9d67a6b8acda232", + "sha1_git": "ba41e2efa222126f6eb2b5550382d7d96542466b", "mime_type": "text/x-java", "file_type": "Java source, ASCII text", "programming_language": "Java", diff --git a/tests/summarycode/data/score/no_license_ambiguity-expected.json b/tests/summarycode/data/score/no_license_ambiguity-expected.json index 443a8c80169..18ca7a4acd8 100644 --- a/tests/summarycode/data/score/no_license_ambiguity-expected.json +++ b/tests/summarycode/data/score/no_license_ambiguity-expected.json @@ -390,6 +390,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -429,6 +430,7 @@ "sha1": "75dd1de7e3572b2480378f4a47d99d4140f405a0", "md5": "e9d08921db4b1c78b3ea9d6d7f8bcd82", "sha256": "76b505678de234d2eef751593feec6d9debb76c20d45564a9f23c9e9783dbc63", + "sha1_git": "b0872af6d398436da28f2f8a9fa053d4d8fe7a02", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -468,6 +470,7 @@ "sha1": "f14afa20edce530124d39cd56312c7781c19b267", "md5": "86438b2332d07437f7ddc2fe9fe4edd2", "sha256": "90eb64f0279b0d9432accfa6023ff803bc4965212383697eee27a0f426d5f8d5", + "sha1_git": "468d907caf99fb0cc0dcbb3c322cbb69f740ffd1", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "verilog", @@ -529,6 +532,7 @@ "sha1": "ddec880a9a8eb327d188032cb12236b7197a9db4", "md5": "12bc948aef936e0dc81ef8dc269c442f", "sha256": "a6138a417208be3f9a5adb3f84fb4cc4e25a8b29e3106c456e324f82a854654a", + "sha1_git": "98ba373c68f8be6a8a1327b61b510379f70d8c37", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": null, @@ -810,6 +814,7 @@ "sha1": "4632a631b427f005d97734ea8c6a44090fec5cd9", "md5": "e7b6e9594d2e90bfdc5eac35ff6486fa", "sha256": "35242e7a83f69875e6edeff02291e688c97caafe2f8902e4e19b49d3e78b4cab", + "sha1_git": "494ad3bfdfe44d1a2a1e20553308ba59574fb969", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -871,6 +876,7 @@ "sha1": "d74ad13f1402c35008f22bc588a6b8199ed164d3", "md5": "08cf50287469d314ddbee33f572260a7", "sha256": "209fbbe0ad52d9235e37badf9cadfe4dbdc87203179c0899e738b39ade42177b", + "sha1_git": "d93b5baf341d9813bb48a51f42a7e8e4af89ec52", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -954,6 +960,7 @@ "sha1": "d81ebab9f6c8e3233abf01734beca5419fe353ac", "md5": "e73df191f1b77901adab1471b758a8bc", "sha256": "ddb5a1fa9442c6cab92a3510365937e729f839c94b97e75d3f0430bf3a4dd2bd", + "sha1_git": "44c2e4d518ed308e2ae69aa1e888c5dc0e7c0551", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text", "programming_language": null, @@ -1015,6 +1022,7 @@ "sha1": "99b2240e1aadbc88a2fa2ca65e673b9c46bea285", "md5": "bd20c9d8351a8630c3d4e45afc638491", "sha256": "52e7a012004e078273ede84e6cb6778d6f98c3c69078edf625f4bae08306e74d", + "sha1_git": "a31b4e23fd32e404cfad0ddc96560db9d596e9db", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -1054,6 +1062,7 @@ "sha1": "60527abf5f69306d1e5d5b339afdea200368e081", "md5": "a0a23df0aa695c6b43ea91942ac7df1d", "sha256": "a582a93dc6492d36daae52df7800e369887ba0984d68d98f70b99ca870fed268", + "sha1_git": "6a2d9d4821546564e1600864f929753f99461611", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/score/no_license_or_copyright-expected.json b/tests/summarycode/data/score/no_license_or_copyright-expected.json index 2051d53e21d..0bba0b1cf02 100644 --- a/tests/summarycode/data/score/no_license_or_copyright-expected.json +++ b/tests/summarycode/data/score/no_license_or_copyright-expected.json @@ -278,6 +278,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -317,6 +318,7 @@ "sha1": "7d770c5ffdcf659c944a670225ab43db9f33d4a8", "md5": "4b8955afbb3a8aa01933e99e331e4acf", "sha256": "aac3e1032f4dffd347854cbe37d559223f2d61173caa649ca7cd0cfb11987334", + "sha1_git": "5609113f2542a9077b3eb4210f06e7557ed3b1d5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -358,6 +360,7 @@ "sha1": "53771edd1e0765de7400174e42ca2e8e5840055f", "md5": "ec9dc4294f83d24294f07e6a0676c338", "sha256": "2b61833228890116dded1849a683d31d0273e0cf985a7bf0cc419aa7edefd839", + "sha1_git": "c98f2d67c87912d2d79ac70ad37b4395be5a36e7", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "JavaScript", @@ -399,6 +402,7 @@ "sha1": "adc72f5ee8e1dde3606dd3abbae6b16ae36147c8", "md5": "bc23bb45c7f272127a346faa8b97da74", "sha256": "a93777fcaee28dcc75e8b9187f5fae73ebc651d24f6825587c87553c5260a06d", + "sha1_git": "a39b1f8f9fc5feef2545dd1f14d7347e6a84d975", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, diff --git a/tests/summarycode/data/score/no_license_text-expected.json b/tests/summarycode/data/score/no_license_text-expected.json index 71b73269bff..9322ee2c4ed 100644 --- a/tests/summarycode/data/score/no_license_text-expected.json +++ b/tests/summarycode/data/score/no_license_text-expected.json @@ -346,6 +346,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -385,6 +386,7 @@ "sha1": "5ddd71551f75d62539ba1c629268c05dea33df70", "md5": "5e86afc76a17ee8be9cf19a6e0fd5226", "sha256": "2ce5c5aee36b67f7a1ba28494ad150f9db7a6c2706830d071184e8d8e3ce29d4", + "sha1_git": "7d56e86b881443720b65ca5c23812621ed53ce81", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -438,6 +440,7 @@ "sha1": "53771edd1e0765de7400174e42ca2e8e5840055f", "md5": "ec9dc4294f83d24294f07e6a0676c338", "sha256": "2b61833228890116dded1849a683d31d0273e0cf985a7bf0cc419aa7edefd839", + "sha1_git": "c98f2d67c87912d2d79ac70ad37b4395be5a36e7", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "JavaScript", @@ -479,6 +482,7 @@ "sha1": "003103b742ebfb1e76e80d9fc05ab0b3046f2ab6", "md5": "bd8911e2d8af0caa689f76b9975761fd", "sha256": "d27968b827780212a965387f5ec3421ee59a0bf9166847629db0e716e6d2d9c3", + "sha1_git": "f54d82ed9fae5b25af27ca4ab8250538f9d5e4ad", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, diff --git a/tests/summarycode/data/summary/conflicting_license_categories/conflicting_license_categories.expected.json b/tests/summarycode/data/summary/conflicting_license_categories/conflicting_license_categories.expected.json index b25b0da01be..931e4f0dc23 100644 --- a/tests/summarycode/data/summary/conflicting_license_categories/conflicting_license_categories.expected.json +++ b/tests/summarycode/data/summary/conflicting_license_categories/conflicting_license_categories.expected.json @@ -191,6 +191,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -230,6 +231,7 @@ "sha1": "2daf15d1a99a13f9a0aa55f82c26c501d195b1d4", "md5": "1c417a6dead913d0a186f4551799cec6", "sha256": "eb5e2ed1da7b1af141db3c3970d5485aaa985048be3250c89cb27889050c5bdd", + "sha1_git": "28127bdf83c04c2115a9dc42765bf6f7306efea9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -281,6 +283,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -342,6 +345,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -403,6 +407,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -442,6 +447,7 @@ "sha1": "55c475daa8f6c7bf1837a32834ba8d236d67b2e0", "md5": "e2b1dd2987670abf43bc0d9e990b6b06", "sha256": "339b9cacc68a4b73fcae5ac1b71a7229eadec02894934b690153a5fa0bb1eb72", + "sha1_git": "324e0a539d6bfa3e077a516ed06fc040e5997802", "mime_type": "text/x-script.python", "file_type": "Python script, ASCII text executable", "programming_language": "Python", @@ -539,6 +545,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -578,6 +585,7 @@ "sha1": "67b480fc1edd1078938152b4dbccd097a4fd2727", "md5": "040651978c6d3b38c8b2536dea1b8ad7", "sha256": "c98d765cfb4898eba46bc1b2ddf41e4481836de98fe7d3a2f50de25eb6367d8f", + "sha1_git": "b3693c6adb6e3877ce9694d4fbf2a4ef08485397", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Python", diff --git a/tests/summarycode/data/summary/embedded_packages/bunkerweb.expected.json b/tests/summarycode/data/summary/embedded_packages/bunkerweb.expected.json index d72f6a3b731..dae88e17169 100644 --- a/tests/summarycode/data/summary/embedded_packages/bunkerweb.expected.json +++ b/tests/summarycode/data/summary/embedded_packages/bunkerweb.expected.json @@ -268,6 +268,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -307,6 +308,7 @@ "sha1": "242b333ee88b352d41d2aafe9994a9f77de370f1", "md5": "caa29ac8cda378ef687072b0b1c8c0e4", "sha256": "9a5ef97962dd0750ed94f1ee3aa029136aa2a06586026b179730a777f50c8702", + "sha1_git": "8d45d9625d3319a92ce0bfca165db4f6982e54cb", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -382,6 +384,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -421,6 +424,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -460,6 +464,7 @@ "sha1": "16eb1fced5e1f443e68b3ff36f3328ac8f31d893", "md5": "2493d74f84f74417cd51943cb1141a42", "sha256": "88ef2e3f1383c20ad745a60edbce61fe510eda64e6b09a0e833c3660c9386810", + "sha1_git": "35edb2a6aedf166e17ebcdc1a2eea7663295a189", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -549,6 +554,7 @@ "sha1": "a56c141912506e2eb94bfa164687131ff21fb298", "md5": "ea7cba7d908eaa03a5b49b245b8119ef", "sha256": "d61b7ebe3ebdb52e4e1ffe8ae28313ea7560ab619f9f0b211f6cd988d849f907", + "sha1_git": "10a8f54333ec88e7824cacc20e7ad3d505ad40c6", "mime_type": "text/plain", "file_type": "Python script, ASCII text executable", "programming_language": "Python", @@ -780,6 +786,7 @@ "sha1": "e97ff042e27bc5be29abf6483ea57c3abfbfba83", "md5": "bef2744dd896358a9e799e90cb890883", "sha256": "2e71a200631f19ee4ebaf8a3c0efe859aa3eeef35adba95268282147ad7b8253", + "sha1_git": "6a2fa300d5a2115dc6731c20a0d38d174ca4c99c", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/summary/end-2-end/bug-1141.expected.json b/tests/summarycode/data/summary/end-2-end/bug-1141.expected.json index 2dc15e1af28..98f2f78b844 100644 --- a/tests/summarycode/data/summary/end-2-end/bug-1141.expected.json +++ b/tests/summarycode/data/summary/end-2-end/bug-1141.expected.json @@ -93,6 +93,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -132,6 +133,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -171,6 +173,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -210,6 +213,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -249,6 +253,7 @@ "sha1": "e1883818566861d6e98a560127797065af1a3037", "md5": "b5a59150a33658cc1ffc31b1a4ffb9f2", "sha256": "204de5253787827cd13c9282efff5c0e5c734ca9e6d4b07346a2ab33f23f808a", + "sha1_git": "5bbf7c46b68927e69bb7f8cc07ee14b69c0a81b4", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -310,6 +315,7 @@ "sha1": "e331d6529c7b3dc6f9ed78863f8d93d098a2c486", "md5": "1befbd0fd8f764d410403b551077e14a", "sha256": "7d860dbb9e30d8a964e95f0f02616d1e86bbab06eed5c99cf1912310ce08ced1", + "sha1_git": "1d3e268ce27f45c24cec7b4b365478c1559640c5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -349,6 +355,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -388,6 +395,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -427,6 +435,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -466,6 +475,7 @@ "sha1": "f3cf6c32ff3ab8526a473c39e3bc2c9356ca2c2b", "md5": "a4028ec638973696ece447f4790b3436", "sha256": "dd5c7ade638e676737c03204630222d4cd603f589a2084166da8cf653df4b582", + "sha1_git": "dc320127fe0931c7c3cd2260f5f9693f3a2c7820", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -539,6 +549,7 @@ "sha1": "8bf810dfcae325e0b40e2b0ad4e3302a2c55e2e4", "md5": "6cc4c13ec154a8f58b09b6566345f0b0", "sha256": "d7a63d5354ed605aa61b9ffd25454b65c0930cf87ccc7efcdbb10673e79ce08f", + "sha1_git": "5500b0fa44be226f03c668c953daa8c4fced0413", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/summary/holders/clear_holder.expected.json b/tests/summarycode/data/summary/holders/clear_holder.expected.json index b3ea559ea3d..7f45a0203db 100644 --- a/tests/summarycode/data/summary/holders/clear_holder.expected.json +++ b/tests/summarycode/data/summary/holders/clear_holder.expected.json @@ -129,6 +129,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -168,6 +169,7 @@ "sha1": "d282def871ec7311944a84a8889e26730f0c400d", "md5": "9644fbe6f26482b66036b19d871de381", "sha256": "be675303033bbc1e103bafa3a11e90057048472a46094092941917fb1560d072", + "sha1_git": "ea9a48fd6ba4203a1ed86210bfd754adeb293655", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -265,6 +267,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -326,6 +329,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -387,6 +391,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -426,6 +431,7 @@ "sha1": "5ba2aec7a345cbc36a88a0c73357c84cbc69612c", "md5": "3bc58b8ff4fe4b77d29b53e0d5428445", "sha256": "00a592b998e73453e4d8230418c9636783ce59118d75beb1e7e5c163df11d23c", + "sha1_git": "3b13108ef5d8a7ff8503100ff89629e15aeebc8c", "mime_type": "text/x-script.python", "file_type": "Python script, ASCII text executable", "programming_language": "Python", @@ -513,6 +519,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -552,6 +559,7 @@ "sha1": "d9ff869f31722ca1b9a8b62a4aeb5e1686e7063c", "md5": "d817c452b6f586d3766592e7012a50e6", "sha256": "52619c284c68cf94a2c46e7da99a7f8ab033bd861a9b295171da9939832da83d", + "sha1_git": "08896e91ed310ef165d3b65804809004bbbd2c73", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Python", diff --git a/tests/summarycode/data/summary/holders/combined_holders.expected.json b/tests/summarycode/data/summary/holders/combined_holders.expected.json index 2f5a4bc6313..2e8df984adf 100644 --- a/tests/summarycode/data/summary/holders/combined_holders.expected.json +++ b/tests/summarycode/data/summary/holders/combined_holders.expected.json @@ -125,6 +125,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -164,6 +165,7 @@ "sha1": "d282def871ec7311944a84a8889e26730f0c400d", "md5": "9644fbe6f26482b66036b19d871de381", "sha256": "be675303033bbc1e103bafa3a11e90057048472a46094092941917fb1560d072", + "sha1_git": "ea9a48fd6ba4203a1ed86210bfd754adeb293655", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -261,6 +263,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -322,6 +325,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -383,6 +387,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -422,6 +427,7 @@ "sha1": "e2ea6df347f3ebe5c1d3a2dc02d62c21d605d0af", "md5": "a16a5f703a6d86542bc7af743c69d521", "sha256": "b20f754ecb025b1026e5a35b36ed48775544b177a4f7090ea1d0c93d6cb45446", + "sha1_git": "11df2cd8c3bd088eab721f5cf16433653e91b570", "mime_type": "text/x-script.python", "file_type": "Python script, ASCII text executable", "programming_language": "Python", @@ -497,6 +503,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -536,6 +543,7 @@ "sha1": "1a16761e68a0d2e3e6a38b697bc72198f6714798", "md5": "5cd684d4fdd223c82a251c4923d5924f", "sha256": "c94f7fd0378644b76b9fbff868b9445197c3fee864f351431202146e15ec6c9c", + "sha1_git": "d722553cb92e09a0d877dad515cb877d4b72bec5", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": "Python", diff --git a/tests/summarycode/data/summary/license_ambiguity/ambiguous.expected.json b/tests/summarycode/data/summary/license_ambiguity/ambiguous.expected.json index 8b8cc425d3b..d020b6be760 100644 --- a/tests/summarycode/data/summary/license_ambiguity/ambiguous.expected.json +++ b/tests/summarycode/data/summary/license_ambiguity/ambiguous.expected.json @@ -93,6 +93,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -132,6 +133,7 @@ "sha1": "2daf15d1a99a13f9a0aa55f82c26c501d195b1d4", "md5": "1c417a6dead913d0a186f4551799cec6", "sha256": "eb5e2ed1da7b1af141db3c3970d5485aaa985048be3250c89cb27889050c5bdd", + "sha1_git": "28127bdf83c04c2115a9dc42765bf6f7306efea9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -183,6 +185,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -244,6 +247,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/summary/license_ambiguity/unambiguous.expected.json b/tests/summarycode/data/summary/license_ambiguity/unambiguous.expected.json index 30d4ad21dad..b28862b3e9e 100644 --- a/tests/summarycode/data/summary/license_ambiguity/unambiguous.expected.json +++ b/tests/summarycode/data/summary/license_ambiguity/unambiguous.expected.json @@ -125,6 +125,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -164,6 +165,7 @@ "sha1": "1df6d834f14cf559f8294602edc62cd1fd3a801a", "md5": "4d6efca9ce0e3674ff53d5769e8e6d3b", "sha256": "558bb811471ccfa7e3a17920decbea52596cdb3cbb40bcd3b55dba2a62814650", + "sha1_git": "109b12c996b5dd0776b484ade75c0e45d0a97cb5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -251,6 +253,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -312,6 +315,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/summary/multiple_package_data/multiple_package_data.expected.json b/tests/summarycode/data/summary/multiple_package_data/multiple_package_data.expected.json index 86240230cd0..a34edb9e966 100644 --- a/tests/summarycode/data/summary/multiple_package_data/multiple_package_data.expected.json +++ b/tests/summarycode/data/summary/multiple_package_data/multiple_package_data.expected.json @@ -376,6 +376,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -415,6 +416,7 @@ "sha1": "1df6d834f14cf559f8294602edc62cd1fd3a801a", "md5": "4d6efca9ce0e3674ff53d5769e8e6d3b", "sha256": "558bb811471ccfa7e3a17920decbea52596cdb3cbb40bcd3b55dba2a62814650", + "sha1_git": "109b12c996b5dd0776b484ade75c0e45d0a97cb5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -504,6 +506,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -567,6 +570,7 @@ "sha1": "97d0edda5c68c41ccb29397461b12af7ea216314", "md5": "5f0e096c1e8b60e7d47d2386a77c55ba", "sha256": "fa9742ed8f0a094978bbf7fc86e0d3c188f6a4544696c78cdce9b916fb465680", + "sha1_git": "fa67deffea35a13a12abb431b4eaf420608a6b2d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -713,6 +717,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -776,6 +781,7 @@ "sha1": "10c7f4a6c2f60591dd08c9afeaeb7a05c76388a9", "md5": "425b1701628572de3fd81f9de0be2d64", "sha256": "e0e775cf6127edc482607cabcd652f3b10e6c69e03dc2e92c4b2174103831b3c", + "sha1_git": "d455402042e9413212d0aa3244ffe173bff1cbf3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Python", diff --git a/tests/summarycode/data/summary/single_file/single_file.expected.json b/tests/summarycode/data/summary/single_file/single_file.expected.json index a5b8517f8a5..ce2deb498f3 100644 --- a/tests/summarycode/data/summary/single_file/single_file.expected.json +++ b/tests/summarycode/data/summary/single_file/single_file.expected.json @@ -53,6 +53,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -92,6 +93,7 @@ "sha1": "891981f3aa1db578bae49a0da478854cb9315b91", "md5": "4a44a73fe2301ff4e0576f61ce23fdd2", "sha256": "26de02b66db03a820047109043e337fe5fb9bd3a5132af7926b32cc0d5e614a2", + "sha1_git": "712c7ba92de1e7dcf3cb6c9bd38fc32f90850bb6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/summary/use_holder_from_package_resource/use_holder_from_package_resource.expected.json b/tests/summarycode/data/summary/use_holder_from_package_resource/use_holder_from_package_resource.expected.json index 6f54e573e68..a3d0458a742 100644 --- a/tests/summarycode/data/summary/use_holder_from_package_resource/use_holder_from_package_resource.expected.json +++ b/tests/summarycode/data/summary/use_holder_from_package_resource/use_holder_from_package_resource.expected.json @@ -158,6 +158,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -197,6 +198,7 @@ "sha1": "49c764d8447393378fcd13c8ab69c807a3ce67e9", "md5": "d5a15a5aab582d924dddd5a87a5fdca1", "sha256": "44bbf9c92da0a4ae21795690dc8b9ae553f57b5b3d7a9d6ce794869a7e0542c3", + "sha1_git": "f9a8e97d116925a7ab46f67bc7d455d05edcce88", "mime_type": "text/plain", "file_type": "ASCII text, with no line terminators", "programming_language": null, @@ -250,6 +252,7 @@ "sha1": "ca26ea89aab5d6ac910fe4e092cd7c8857e62322", "md5": "2761f0e079fcd2b07af5088c4712f8f0", "sha256": "a047b71004e6b070d174d260b95dca5930a6ce51948e66afec25692c157408c5", + "sha1_git": "18da29d15e3841a44c17c47711535f8dcc08661d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Python", diff --git a/tests/summarycode/data/summary/with_package_data/with_package_data.expected.json b/tests/summarycode/data/summary/with_package_data/with_package_data.expected.json index 764a08f0556..7e9c6bde26f 100644 --- a/tests/summarycode/data/summary/with_package_data/with_package_data.expected.json +++ b/tests/summarycode/data/summary/with_package_data/with_package_data.expected.json @@ -249,6 +249,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -288,6 +289,7 @@ "sha1": "1df6d834f14cf559f8294602edc62cd1fd3a801a", "md5": "4d6efca9ce0e3674ff53d5769e8e6d3b", "sha256": "558bb811471ccfa7e3a17920decbea52596cdb3cbb40bcd3b55dba2a62814650", + "sha1_git": "109b12c996b5dd0776b484ade75c0e45d0a97cb5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -377,6 +379,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -440,6 +443,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -503,6 +507,7 @@ "sha1": "10c7f4a6c2f60591dd08c9afeaeb7a05c76388a9", "md5": "425b1701628572de3fd81f9de0be2d64", "sha256": "e0e775cf6127edc482607cabcd652f3b10e6c69e03dc2e92c4b2174103831b3c", + "sha1_git": "d455402042e9413212d0aa3244ffe173bff1cbf3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Python", diff --git a/tests/summarycode/data/summary/without_package_data/without_package_data.expected.json b/tests/summarycode/data/summary/without_package_data/without_package_data.expected.json index 81b502a6b08..f606c5f54e3 100644 --- a/tests/summarycode/data/summary/without_package_data/without_package_data.expected.json +++ b/tests/summarycode/data/summary/without_package_data/without_package_data.expected.json @@ -125,6 +125,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -164,6 +165,7 @@ "sha1": "1df6d834f14cf559f8294602edc62cd1fd3a801a", "md5": "4d6efca9ce0e3674ff53d5769e8e6d3b", "sha256": "558bb811471ccfa7e3a17920decbea52596cdb3cbb40bcd3b55dba2a62814650", + "sha1_git": "109b12c996b5dd0776b484ade75c0e45d0a97cb5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -251,6 +253,7 @@ "sha1": "a6a5418b4d67d9f3a33cbf184b25ac7f9fa87d33", "md5": "e23fadd6ceef8c618fc1c65191d846fa", "sha256": "a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9", + "sha1_git": "d9a10c0d8e868ebf8da0b3dc95bb0be634c34bfe", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -312,6 +315,7 @@ "sha1": "d162bf6d725758cf35e4b4e49db3750e85bc98a0", "md5": "8d18be6409468bae48b33b87db85824a", "sha256": "17eeb111a052462b64de9a5a56983f8d732922d8666ecbf20ede8f776b4c4df4", + "sha1_git": "2d4a989856a52f5063bbd779043307a07901c5ed", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, diff --git a/tests/summarycode/data/tallies/copyright_tallies/tallies_key_files.expected.json b/tests/summarycode/data/tallies/copyright_tallies/tallies_key_files.expected.json index 0e6c485a189..6448c54fe64 100644 --- a/tests/summarycode/data/tallies/copyright_tallies/tallies_key_files.expected.json +++ b/tests/summarycode/data/tallies/copyright_tallies/tallies_key_files.expected.json @@ -154,6 +154,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -186,6 +187,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -218,6 +220,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -250,6 +253,7 @@ "sha1": "d0d55d2ae0842afee96695bcc8be939e763704ec", "md5": "301dfe021b3b4076b9f8d49577205b44", "sha256": "ff6dfac01c9b7ad9fcb5e646db83b482f5f720d981f0ca6c68828c5aa4ec784b", + "sha1_git": "b9f2abd00888b689c26a71bc4092b56c548643a3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -294,6 +298,7 @@ "sha1": "21ec75514ce72011c4e86c977505c024832c1b63", "md5": "5165fdeefda7a55c13e44c5e56cac920", "sha256": "8553411bf58f4ac35fc9e7d6142f11fc2fbef33e50a77f514a253135807afd44", + "sha1_git": "991606291da8799b39f94905365c13259ae04fc5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -344,6 +349,7 @@ "sha1": "aee1bb33424e7c1264f85c9aad40d43c3738f871", "md5": "53a91ff66fdc4d812d7656b4e807bfd2", "sha256": "ec1427fc2f7e322e6a4d5d99f8119310d6586aaaf5b30b2904b4ccd27966e120", + "sha1_git": "9c3c08df13f0e67e8f5bb2f0e6a66d246bbbef03", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -388,6 +394,7 @@ "sha1": "8da19aa25da421608fbe9f4f5eeb122ab35fd01e", "md5": "52540f80f5c22d8d13627c57b76d44f4", "sha256": "c3bcefbbb2706f65410b4bb91d531e2ec461fa4586135becc8865adeca3385c8", + "sha1_git": "b4071b2728aff78d02cbaae63bfc1f2109331b07", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -426,6 +433,7 @@ "sha1": "c1baa345449b4b91e61886dadea8f1bbea034eb4", "md5": "a0b4e3f4d679a98d11d75e7e27e894af", "sha256": "5c0f94fc518daca08e74fd117fef09d6dd090b0fd623a47edde451be3aed28c7", + "sha1_git": "c1941b54e7b0d44567b8a2eee0b8cc8add21e68f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -464,6 +472,7 @@ "sha1": "a51c5bbb738c1c1cd1f58c79060fa5ea4d0dd753", "md5": "cae07c80e6f79864de002700bf9ab02f", "sha256": "fe96061d23b37c98913379d54c5388cffdc99239807c2caf8c96d7d10321d085", + "sha1_git": "188435705b6648e2f6a94d82509365a11a7b224f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -508,6 +517,7 @@ "sha1": "a7a9763832eb31e1f7f7927d6288df284b70c6e5", "md5": "ffb481f2a0c6262d0f7d1e9a4681a6ca", "sha256": "5470e41b0bfba6adb43649215df756f1a4a5173ceed6127af1b38801651efde2", + "sha1_git": "b79361f193e4fc5adfe64a35e7e84d1ae4f49a4b", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -546,6 +556,7 @@ "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", "md5": "effc6856ef85a9250fb1a470792b3f38", "sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878", + "sha1_git": "1d61df81ffb14fd19f1ac10344a51755e8719282", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -578,6 +589,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -610,6 +622,7 @@ "sha1": "a7ee5ea54da88a6390e72ff018dd471045d8bbf1", "md5": "92011414f344e34f711e77bac40e4bc4", "sha256": "e533accabdc7434f3905ced32c4fba755f707929ad73df6e07172cd5a786e023", + "sha1_git": "99bd88552be01741ea15b57d9abde4f7a12938e1", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -654,6 +667,7 @@ "sha1": "26610e5eab2a17e0fa9ef6ac791f25f77af145af", "md5": "4ed53ac605f16247ab7d571670f2351d", "sha256": "b09e2a43e9960d3d28d37d24f10dfbc462a4cb376da54ba571ac9a8874911ed5", + "sha1_git": "36568396a1e657f72c524b60c17b27e1f810bc58", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -698,6 +712,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -742,6 +757,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -774,6 +790,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -806,6 +823,7 @@ "sha1": "93b3e6e5822c350a9c12e69a2848e29767777002", "md5": "4e58eb393ad904c1de81a9ca5b9e392c", "sha256": "8e6da5a880c0547bac5b71f0f123164511ae17e3c7d7f424e4ec5b44e1cae731", + "sha1_git": "c814a2df733d77a1f2338090dfa74720f6202ca6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -850,6 +868,7 @@ "sha1": "f98c6c82a570ac852801b46157c1540070d55358", "md5": "48c4037f16b4670795fdf72e88cc278c", "sha256": "fc1682e787ccc8d9eb83eb0b1f5acb59d22aa6ce1bff7c749a9dc315237b2240", + "sha1_git": "d28e903933651219ad37d02dc80a58daf198f707", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -894,6 +913,7 @@ "sha1": "4b4696c59e245cef0bad7334fdb63725ccfa218c", "md5": "f11ed826baf25f2bfa9c610313460036", "sha256": "ef7bf500e1accf7e91352788c92b5c6663bab52e2cd6c42284496518e4a5f054", + "sha1_git": "4524875c9ff79f6478d18e3eb66c39f50c4f7a96", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -938,6 +958,7 @@ "sha1": "a99a71ff971faf49a52ed6f7d3075fdffae8054b", "md5": "d8821cd288e2be7fd83cdcac22a427ce", "sha256": "a3c2fa63c7e730bdd008bc07b7d3865dc76781082b77a03d52a918ce1c7d3459", + "sha1_git": "0b360ce6c169766d4dd9d81993f4ae21aebcfbc9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -982,6 +1003,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1014,6 +1036,7 @@ "sha1": "cc7fcb4d721a7efe9eefa6bd2d9d0105d33203a8", "md5": "dbd621f76cb27e2fd8b8e2d9d985ffcf", "sha256": "8b257a625c537736ee3ac2321b4ef56ba8a6fa4f922a35b1a0e992f9327d39e9", + "sha1_git": "23da9b437db7ce129df56d1c8d297906c0bbf962", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "C#", @@ -1058,6 +1081,7 @@ "sha1": "3043848212232cdde81eb3e20fca7f2447d944be", "md5": "661652a0568e25d12fc9bfad2fdabfb2", "sha256": "f3144ba734429b825e22c2f9048412e78c907e0142f2cdc629879b3a0fa63c89", + "sha1_git": "65ea66cb943a7a8b4b87d7b5beccb660214f1b57", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with CRLF line terminators", "programming_language": "C#", @@ -1102,6 +1126,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1134,6 +1159,7 @@ "sha1": "8dff93e95ccef023a871fb438784635b5df1d541", "md5": "4f0d2f55d43d9466750350f8b27f0302", "sha256": "1551b8fb1c2f1f3cc92c8e4f31730ebdde0c766caeca6d670a7758b55e3804f3", + "sha1_git": "3fc192371e46e14835e4b42c8decb9b3a6cdc1f5", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -1184,6 +1210,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1216,6 +1243,7 @@ "sha1": "299f7a056cf0e0ed7d5bd687c53f3247d809cab2", "md5": "d570bd029ee2362f2a0927c87999773b", "sha256": "03fb435669b57aa90fe00c4dbc12d8492ef87b6243427d1e1831006994ee1f80", + "sha1_git": "3d9f3c93d7ffe4abbfd1f87c0189d6015350600d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1260,6 +1288,7 @@ "sha1": "c849edb4691d23e0db97d3f5da1cc5b396929449", "md5": "2913c8ea7fb43a0f469bb2797c820a95", "sha256": "4f8db049a7156b8a4616a6c9df0b5ee09571f0ac2eb253e111f2fb727fb033ea", + "sha1_git": "e7be4800317bce312679806c0d99770300bfca72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1304,6 +1333,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1336,6 +1366,7 @@ "sha1": "b7fe15df27e601b88cde6b6a63dad184ccbce572", "md5": "8b897171ea0767232e586086bc94518c", "sha256": "ee2eef602cba7c4ba350617f4154de50cb4cbf274c7dd773130aca0775d5d9cd", + "sha1_git": "c62dc6d1f15a532a644302d533421fb967bb2278", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1380,6 +1411,7 @@ "sha1": "85c65180242c560a4df66e9882119bf70eaefd02", "md5": "07497e2688dad9406386f0534a0bbfca", "sha256": "64fef1f0a7cd69eae744ad2fa754ee8568a5715588e38b7a3fa6e11eaeaec97e", + "sha1_git": "a5942194eea562896392979306b4f05cc6042d6a", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1424,6 +1456,7 @@ "sha1": "2e846ef84cfb16e0e8b92c62a850a607a709d7b2", "md5": "2a0ea6a99e31fb0989209a027476038d", "sha256": "dc7224c7f079d237acf510ff40282cf6d50352c851d4e2957d227e2a3b57eb4d", + "sha1_git": "1aac612ec3066c101f6fbd6ce1e426fb8e182b1f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1468,6 +1501,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/tallies/end-2-end/bug-1141.expected.json b/tests/summarycode/data/tallies/end-2-end/bug-1141.expected.json index feb9e0e22fe..538a1f04ecb 100644 --- a/tests/summarycode/data/tallies/end-2-end/bug-1141.expected.json +++ b/tests/summarycode/data/tallies/end-2-end/bug-1141.expected.json @@ -122,6 +122,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -162,6 +163,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -202,6 +204,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -242,6 +245,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -282,6 +286,7 @@ "sha1": "e1883818566861d6e98a560127797065af1a3037", "md5": "b5a59150a33658cc1ffc31b1a4ffb9f2", "sha256": "204de5253787827cd13c9282efff5c0e5c734ca9e6d4b07346a2ab33f23f808a", + "sha1_git": "5bbf7c46b68927e69bb7f8cc07ee14b69c0a81b4", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -346,6 +351,7 @@ "sha1": "e331d6529c7b3dc6f9ed78863f8d93d098a2c486", "md5": "1befbd0fd8f764d410403b551077e14a", "sha256": "7d860dbb9e30d8a964e95f0f02616d1e86bbab06eed5c99cf1912310ce08ced1", + "sha1_git": "1d3e268ce27f45c24cec7b4b365478c1559640c5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -388,6 +394,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -428,6 +435,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -468,6 +476,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -508,6 +517,7 @@ "sha1": "f3cf6c32ff3ab8526a473c39e3bc2c9356ca2c2b", "md5": "a4028ec638973696ece447f4790b3436", "sha256": "dd5c7ade638e676737c03204630222d4cd603f589a2084166da8cf653df4b582", + "sha1_git": "dc320127fe0931c7c3cd2260f5f9693f3a2c7820", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -584,6 +594,7 @@ "sha1": "8bf810dfcae325e0b40e2b0ad4e3302a2c55e2e4", "md5": "6cc4c13ec154a8f58b09b6566345f0b0", "sha256": "d7a63d5354ed605aa61b9ffd25454b65c0930cf87ccc7efcdbb10673e79ce08f", + "sha1_git": "5500b0fa44be226f03c668c953daa8c4fced0413", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/tallies/full_tallies/tallies.expected.json b/tests/summarycode/data/tallies/full_tallies/tallies.expected.json index 9138bfb8723..6e1ef18b90b 100644 --- a/tests/summarycode/data/tallies/full_tallies/tallies.expected.json +++ b/tests/summarycode/data/tallies/full_tallies/tallies.expected.json @@ -3847,6 +3847,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -3881,6 +3882,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -3917,6 +3919,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -3953,6 +3956,7 @@ "sha1": "d0d55d2ae0842afee96695bcc8be939e763704ec", "md5": "301dfe021b3b4076b9f8d49577205b44", "sha256": "ff6dfac01c9b7ad9fcb5e646db83b482f5f720d981f0ca6c68828c5aa4ec784b", + "sha1_git": "b9f2abd00888b689c26a71bc4092b56c548643a3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4023,6 +4027,7 @@ "sha1": "21ec75514ce72011c4e86c977505c024832c1b63", "md5": "5165fdeefda7a55c13e44c5e56cac920", "sha256": "8553411bf58f4ac35fc9e7d6142f11fc2fbef33e50a77f514a253135807afd44", + "sha1_git": "991606291da8799b39f94905365c13259ae04fc5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4099,6 +4104,7 @@ "sha1": "aee1bb33424e7c1264f85c9aad40d43c3738f871", "md5": "53a91ff66fdc4d812d7656b4e807bfd2", "sha256": "ec1427fc2f7e322e6a4d5d99f8119310d6586aaaf5b30b2904b4ccd27966e120", + "sha1_git": "9c3c08df13f0e67e8f5bb2f0e6a66d246bbbef03", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4169,6 +4175,7 @@ "sha1": "8da19aa25da421608fbe9f4f5eeb122ab35fd01e", "md5": "52540f80f5c22d8d13627c57b76d44f4", "sha256": "c3bcefbbb2706f65410b4bb91d531e2ec461fa4586135becc8865adeca3385c8", + "sha1_git": "b4071b2728aff78d02cbaae63bfc1f2109331b07", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4211,6 +4218,7 @@ "sha1": "c1baa345449b4b91e61886dadea8f1bbea034eb4", "md5": "a0b4e3f4d679a98d11d75e7e27e894af", "sha256": "5c0f94fc518daca08e74fd117fef09d6dd090b0fd623a47edde451be3aed28c7", + "sha1_git": "c1941b54e7b0d44567b8a2eee0b8cc8add21e68f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4253,6 +4261,7 @@ "sha1": "a51c5bbb738c1c1cd1f58c79060fa5ea4d0dd753", "md5": "cae07c80e6f79864de002700bf9ab02f", "sha256": "fe96061d23b37c98913379d54c5388cffdc99239807c2caf8c96d7d10321d085", + "sha1_git": "188435705b6648e2f6a94d82509365a11a7b224f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4323,6 +4332,7 @@ "sha1": "a7a9763832eb31e1f7f7927d6288df284b70c6e5", "md5": "ffb481f2a0c6262d0f7d1e9a4681a6ca", "sha256": "5470e41b0bfba6adb43649215df756f1a4a5173ceed6127af1b38801651efde2", + "sha1_git": "b79361f193e4fc5adfe64a35e7e84d1ae4f49a4b", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4365,6 +4375,7 @@ "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", "md5": "effc6856ef85a9250fb1a470792b3f38", "sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878", + "sha1_git": "1d61df81ffb14fd19f1ac10344a51755e8719282", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -4401,6 +4412,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4437,6 +4449,7 @@ "sha1": "a7ee5ea54da88a6390e72ff018dd471045d8bbf1", "md5": "92011414f344e34f711e77bac40e4bc4", "sha256": "e533accabdc7434f3905ced32c4fba755f707929ad73df6e07172cd5a786e023", + "sha1_git": "99bd88552be01741ea15b57d9abde4f7a12938e1", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -4507,6 +4520,7 @@ "sha1": "26610e5eab2a17e0fa9ef6ac791f25f77af145af", "md5": "4ed53ac605f16247ab7d571670f2351d", "sha256": "b09e2a43e9960d3d28d37d24f10dfbc462a4cb376da54ba571ac9a8874911ed5", + "sha1_git": "36568396a1e657f72c524b60c17b27e1f810bc58", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -4577,6 +4591,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -4647,6 +4662,7 @@ "sha1": "172444e7c137eb5cd3cae530aca0879c90f7fada", "md5": "57f047ea87f405486a94bc5a56ba7fcf", "sha256": "963aabe87f6a51ca9c237669034a9fdecd71df7350eaf30bdf0718f63c5a94f8", + "sha1_git": "d9dde3ce8624b573d44ed2245ce9b22df978bea5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -4705,6 +4721,7 @@ "sha1": "dfc6c1274bd31b47d5cc482af0c0dad9d30eccaa", "md5": "62b51527599b11b32361699c75b05683", "sha256": "8b54b0b90570e4b0d5b8c8520e4b5a8258ae15849ec1919f57da093f5df84f38", + "sha1_git": "28ce1718edf320e7f1fb5343bdad69cf5dfcb7b5", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -7868,6 +7885,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -7904,6 +7922,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -7940,6 +7959,7 @@ "sha1": "93b3e6e5822c350a9c12e69a2848e29767777002", "md5": "4e58eb393ad904c1de81a9ca5b9e392c", "sha256": "8e6da5a880c0547bac5b71f0f123164511ae17e3c7d7f424e4ec5b44e1cae731", + "sha1_git": "c814a2df733d77a1f2338090dfa74720f6202ca6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -8010,6 +8030,7 @@ "sha1": "f98c6c82a570ac852801b46157c1540070d55358", "md5": "48c4037f16b4670795fdf72e88cc278c", "sha256": "fc1682e787ccc8d9eb83eb0b1f5acb59d22aa6ce1bff7c749a9dc315237b2240", + "sha1_git": "d28e903933651219ad37d02dc80a58daf198f707", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8080,6 +8101,7 @@ "sha1": "4b4696c59e245cef0bad7334fdb63725ccfa218c", "md5": "f11ed826baf25f2bfa9c610313460036", "sha256": "ef7bf500e1accf7e91352788c92b5c6663bab52e2cd6c42284496518e4a5f054", + "sha1_git": "4524875c9ff79f6478d18e3eb66c39f50c4f7a96", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8150,6 +8172,7 @@ "sha1": "a99a71ff971faf49a52ed6f7d3075fdffae8054b", "md5": "d8821cd288e2be7fd83cdcac22a427ce", "sha256": "a3c2fa63c7e730bdd008bc07b7d3865dc76781082b77a03d52a918ce1c7d3459", + "sha1_git": "0b360ce6c169766d4dd9d81993f4ae21aebcfbc9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8220,6 +8243,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8256,6 +8280,7 @@ "sha1": "cc7fcb4d721a7efe9eefa6bd2d9d0105d33203a8", "md5": "dbd621f76cb27e2fd8b8e2d9d985ffcf", "sha256": "8b257a625c537736ee3ac2321b4ef56ba8a6fa4f922a35b1a0e992f9327d39e9", + "sha1_git": "23da9b437db7ce129df56d1c8d297906c0bbf962", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "C#", @@ -8304,6 +8329,7 @@ "sha1": "3043848212232cdde81eb3e20fca7f2447d944be", "md5": "661652a0568e25d12fc9bfad2fdabfb2", "sha256": "f3144ba734429b825e22c2f9048412e78c907e0142f2cdc629879b3a0fa63c89", + "sha1_git": "65ea66cb943a7a8b4b87d7b5beccb660214f1b57", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with CRLF line terminators", "programming_language": "C#", @@ -8374,6 +8400,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8410,6 +8437,7 @@ "sha1": "8dff93e95ccef023a871fb438784635b5df1d541", "md5": "4f0d2f55d43d9466750350f8b27f0302", "sha256": "1551b8fb1c2f1f3cc92c8e4f31730ebdde0c766caeca6d670a7758b55e3804f3", + "sha1_git": "3fc192371e46e14835e4b42c8decb9b3a6cdc1f5", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -8486,6 +8514,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8522,6 +8551,7 @@ "sha1": "299f7a056cf0e0ed7d5bd687c53f3247d809cab2", "md5": "d570bd029ee2362f2a0927c87999773b", "sha256": "03fb435669b57aa90fe00c4dbc12d8492ef87b6243427d1e1831006994ee1f80", + "sha1_git": "3d9f3c93d7ffe4abbfd1f87c0189d6015350600d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8592,6 +8622,7 @@ "sha1": "c849edb4691d23e0db97d3f5da1cc5b396929449", "md5": "2913c8ea7fb43a0f469bb2797c820a95", "sha256": "4f8db049a7156b8a4616a6c9df0b5ee09571f0ac2eb253e111f2fb727fb033ea", + "sha1_git": "e7be4800317bce312679806c0d99770300bfca72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8662,6 +8693,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8698,6 +8730,7 @@ "sha1": "b7fe15df27e601b88cde6b6a63dad184ccbce572", "md5": "8b897171ea0767232e586086bc94518c", "sha256": "ee2eef602cba7c4ba350617f4154de50cb4cbf274c7dd773130aca0775d5d9cd", + "sha1_git": "c62dc6d1f15a532a644302d533421fb967bb2278", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8768,6 +8801,7 @@ "sha1": "85c65180242c560a4df66e9882119bf70eaefd02", "md5": "07497e2688dad9406386f0534a0bbfca", "sha256": "64fef1f0a7cd69eae744ad2fa754ee8568a5715588e38b7a3fa6e11eaeaec97e", + "sha1_git": "a5942194eea562896392979306b4f05cc6042d6a", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8838,6 +8872,7 @@ "sha1": "2e846ef84cfb16e0e8b92c62a850a607a709d7b2", "md5": "2a0ea6a99e31fb0989209a027476038d", "sha256": "dc7224c7f079d237acf510ff40282cf6d50352c851d4e2957d227e2a3b57eb4d", + "sha1_git": "1aac612ec3066c101f6fbd6ce1e426fb8e182b1f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8908,6 +8943,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/tallies/full_tallies/tallies_by_facet.expected.json b/tests/summarycode/data/tallies/full_tallies/tallies_by_facet.expected.json index 58020cc72cb..64f06c8099d 100644 --- a/tests/summarycode/data/tallies/full_tallies/tallies_by_facet.expected.json +++ b/tests/summarycode/data/tallies/full_tallies/tallies_by_facet.expected.json @@ -4100,6 +4100,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4137,6 +4138,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4176,6 +4178,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4215,6 +4218,7 @@ "sha1": "d0d55d2ae0842afee96695bcc8be939e763704ec", "md5": "301dfe021b3b4076b9f8d49577205b44", "sha256": "ff6dfac01c9b7ad9fcb5e646db83b482f5f720d981f0ca6c68828c5aa4ec784b", + "sha1_git": "b9f2abd00888b689c26a71bc4092b56c548643a3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4296,6 +4300,7 @@ "sha1": "21ec75514ce72011c4e86c977505c024832c1b63", "md5": "5165fdeefda7a55c13e44c5e56cac920", "sha256": "8553411bf58f4ac35fc9e7d6142f11fc2fbef33e50a77f514a253135807afd44", + "sha1_git": "991606291da8799b39f94905365c13259ae04fc5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4388,6 +4393,7 @@ "sha1": "aee1bb33424e7c1264f85c9aad40d43c3738f871", "md5": "53a91ff66fdc4d812d7656b4e807bfd2", "sha256": "ec1427fc2f7e322e6a4d5d99f8119310d6586aaaf5b30b2904b4ccd27966e120", + "sha1_git": "9c3c08df13f0e67e8f5bb2f0e6a66d246bbbef03", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4469,6 +4475,7 @@ "sha1": "8da19aa25da421608fbe9f4f5eeb122ab35fd01e", "md5": "52540f80f5c22d8d13627c57b76d44f4", "sha256": "c3bcefbbb2706f65410b4bb91d531e2ec461fa4586135becc8865adeca3385c8", + "sha1_git": "b4071b2728aff78d02cbaae63bfc1f2109331b07", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4516,6 +4523,7 @@ "sha1": "c1baa345449b4b91e61886dadea8f1bbea034eb4", "md5": "a0b4e3f4d679a98d11d75e7e27e894af", "sha256": "5c0f94fc518daca08e74fd117fef09d6dd090b0fd623a47edde451be3aed28c7", + "sha1_git": "c1941b54e7b0d44567b8a2eee0b8cc8add21e68f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4563,6 +4571,7 @@ "sha1": "a51c5bbb738c1c1cd1f58c79060fa5ea4d0dd753", "md5": "cae07c80e6f79864de002700bf9ab02f", "sha256": "fe96061d23b37c98913379d54c5388cffdc99239807c2caf8c96d7d10321d085", + "sha1_git": "188435705b6648e2f6a94d82509365a11a7b224f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4644,6 +4653,7 @@ "sha1": "a7a9763832eb31e1f7f7927d6288df284b70c6e5", "md5": "ffb481f2a0c6262d0f7d1e9a4681a6ca", "sha256": "5470e41b0bfba6adb43649215df756f1a4a5173ceed6127af1b38801651efde2", + "sha1_git": "b79361f193e4fc5adfe64a35e7e84d1ae4f49a4b", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4691,6 +4701,7 @@ "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", "md5": "effc6856ef85a9250fb1a470792b3f38", "sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878", + "sha1_git": "1d61df81ffb14fd19f1ac10344a51755e8719282", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -4743,6 +4754,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4782,6 +4794,7 @@ "sha1": "a7ee5ea54da88a6390e72ff018dd471045d8bbf1", "md5": "92011414f344e34f711e77bac40e4bc4", "sha256": "e533accabdc7434f3905ced32c4fba755f707929ad73df6e07172cd5a786e023", + "sha1_git": "99bd88552be01741ea15b57d9abde4f7a12938e1", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -4857,6 +4870,7 @@ "sha1": "26610e5eab2a17e0fa9ef6ac791f25f77af145af", "md5": "4ed53ac605f16247ab7d571670f2351d", "sha256": "b09e2a43e9960d3d28d37d24f10dfbc462a4cb376da54ba571ac9a8874911ed5", + "sha1_git": "36568396a1e657f72c524b60c17b27e1f810bc58", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -4949,6 +4963,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -5024,6 +5039,7 @@ "sha1": "172444e7c137eb5cd3cae530aca0879c90f7fada", "md5": "57f047ea87f405486a94bc5a56ba7fcf", "sha256": "963aabe87f6a51ca9c237669034a9fdecd71df7350eaf30bdf0718f63c5a94f8", + "sha1_git": "d9dde3ce8624b573d44ed2245ce9b22df978bea5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -5087,6 +5103,7 @@ "sha1": "dfc6c1274bd31b47d5cc482af0c0dad9d30eccaa", "md5": "62b51527599b11b32361699c75b05683", "sha256": "8b54b0b90570e4b0d5b8c8520e4b5a8258ae15849ec1919f57da093f5df84f38", + "sha1_git": "28ce1718edf320e7f1fb5343bdad69cf5dfcb7b5", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -8537,6 +8554,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8576,6 +8594,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8615,6 +8634,7 @@ "sha1": "93b3e6e5822c350a9c12e69a2848e29767777002", "md5": "4e58eb393ad904c1de81a9ca5b9e392c", "sha256": "8e6da5a880c0547bac5b71f0f123164511ae17e3c7d7f424e4ec5b44e1cae731", + "sha1_git": "c814a2df733d77a1f2338090dfa74720f6202ca6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -8690,6 +8710,7 @@ "sha1": "f98c6c82a570ac852801b46157c1540070d55358", "md5": "48c4037f16b4670795fdf72e88cc278c", "sha256": "fc1682e787ccc8d9eb83eb0b1f5acb59d22aa6ce1bff7c749a9dc315237b2240", + "sha1_git": "d28e903933651219ad37d02dc80a58daf198f707", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8765,6 +8786,7 @@ "sha1": "4b4696c59e245cef0bad7334fdb63725ccfa218c", "md5": "f11ed826baf25f2bfa9c610313460036", "sha256": "ef7bf500e1accf7e91352788c92b5c6663bab52e2cd6c42284496518e4a5f054", + "sha1_git": "4524875c9ff79f6478d18e3eb66c39f50c4f7a96", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8840,6 +8862,7 @@ "sha1": "a99a71ff971faf49a52ed6f7d3075fdffae8054b", "md5": "d8821cd288e2be7fd83cdcac22a427ce", "sha256": "a3c2fa63c7e730bdd008bc07b7d3865dc76781082b77a03d52a918ce1c7d3459", + "sha1_git": "0b360ce6c169766d4dd9d81993f4ae21aebcfbc9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -8915,6 +8938,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8954,6 +8978,7 @@ "sha1": "cc7fcb4d721a7efe9eefa6bd2d9d0105d33203a8", "md5": "dbd621f76cb27e2fd8b8e2d9d985ffcf", "sha256": "8b257a625c537736ee3ac2321b4ef56ba8a6fa4f922a35b1a0e992f9327d39e9", + "sha1_git": "23da9b437db7ce129df56d1c8d297906c0bbf962", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "C#", @@ -9007,6 +9032,7 @@ "sha1": "3043848212232cdde81eb3e20fca7f2447d944be", "md5": "661652a0568e25d12fc9bfad2fdabfb2", "sha256": "f3144ba734429b825e22c2f9048412e78c907e0142f2cdc629879b3a0fa63c89", + "sha1_git": "65ea66cb943a7a8b4b87d7b5beccb660214f1b57", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with CRLF line terminators", "programming_language": "C#", @@ -9088,6 +9114,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -9127,6 +9154,7 @@ "sha1": "8dff93e95ccef023a871fb438784635b5df1d541", "md5": "4f0d2f55d43d9466750350f8b27f0302", "sha256": "1551b8fb1c2f1f3cc92c8e4f31730ebdde0c766caeca6d670a7758b55e3804f3", + "sha1_git": "3fc192371e46e14835e4b42c8decb9b3a6cdc1f5", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -9224,6 +9252,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -9263,6 +9292,7 @@ "sha1": "299f7a056cf0e0ed7d5bd687c53f3247d809cab2", "md5": "d570bd029ee2362f2a0927c87999773b", "sha256": "03fb435669b57aa90fe00c4dbc12d8492ef87b6243427d1e1831006994ee1f80", + "sha1_git": "3d9f3c93d7ffe4abbfd1f87c0189d6015350600d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9338,6 +9368,7 @@ "sha1": "c849edb4691d23e0db97d3f5da1cc5b396929449", "md5": "2913c8ea7fb43a0f469bb2797c820a95", "sha256": "4f8db049a7156b8a4616a6c9df0b5ee09571f0ac2eb253e111f2fb727fb033ea", + "sha1_git": "e7be4800317bce312679806c0d99770300bfca72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9413,6 +9444,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -9452,6 +9484,7 @@ "sha1": "b7fe15df27e601b88cde6b6a63dad184ccbce572", "md5": "8b897171ea0767232e586086bc94518c", "sha256": "ee2eef602cba7c4ba350617f4154de50cb4cbf274c7dd773130aca0775d5d9cd", + "sha1_git": "c62dc6d1f15a532a644302d533421fb967bb2278", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9533,6 +9566,7 @@ "sha1": "85c65180242c560a4df66e9882119bf70eaefd02", "md5": "07497e2688dad9406386f0534a0bbfca", "sha256": "64fef1f0a7cd69eae744ad2fa754ee8568a5715588e38b7a3fa6e11eaeaec97e", + "sha1_git": "a5942194eea562896392979306b4f05cc6042d6a", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9619,6 +9653,7 @@ "sha1": "2e846ef84cfb16e0e8b92c62a850a607a709d7b2", "md5": "2a0ea6a99e31fb0989209a027476038d", "sha256": "dc7224c7f079d237acf510ff40282cf6d50352c851d4e2957d227e2a3b57eb4d", + "sha1_git": "1aac612ec3066c101f6fbd6ce1e426fb8e182b1f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9694,6 +9729,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/tallies/full_tallies/tallies_details.expected.json b/tests/summarycode/data/tallies/full_tallies/tallies_details.expected.json index 5e380dc8f9f..b49b4bc824e 100644 --- a/tests/summarycode/data/tallies/full_tallies/tallies_details.expected.json +++ b/tests/summarycode/data/tallies/full_tallies/tallies_details.expected.json @@ -3847,6 +3847,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4061,6 +4062,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4173,6 +4175,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -4285,6 +4288,7 @@ "sha1": "d0d55d2ae0842afee96695bcc8be939e763704ec", "md5": "301dfe021b3b4076b9f8d49577205b44", "sha256": "ff6dfac01c9b7ad9fcb5e646db83b482f5f720d981f0ca6c68828c5aa4ec784b", + "sha1_git": "b9f2abd00888b689c26a71bc4092b56c548643a3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4387,6 +4391,7 @@ "sha1": "21ec75514ce72011c4e86c977505c024832c1b63", "md5": "5165fdeefda7a55c13e44c5e56cac920", "sha256": "8553411bf58f4ac35fc9e7d6142f11fc2fbef33e50a77f514a253135807afd44", + "sha1_git": "991606291da8799b39f94905365c13259ae04fc5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4495,6 +4500,7 @@ "sha1": "aee1bb33424e7c1264f85c9aad40d43c3738f871", "md5": "53a91ff66fdc4d812d7656b4e807bfd2", "sha256": "ec1427fc2f7e322e6a4d5d99f8119310d6586aaaf5b30b2904b4ccd27966e120", + "sha1_git": "9c3c08df13f0e67e8f5bb2f0e6a66d246bbbef03", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4597,6 +4603,7 @@ "sha1": "8da19aa25da421608fbe9f4f5eeb122ab35fd01e", "md5": "52540f80f5c22d8d13627c57b76d44f4", "sha256": "c3bcefbbb2706f65410b4bb91d531e2ec461fa4586135becc8865adeca3385c8", + "sha1_git": "b4071b2728aff78d02cbaae63bfc1f2109331b07", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4671,6 +4678,7 @@ "sha1": "c1baa345449b4b91e61886dadea8f1bbea034eb4", "md5": "a0b4e3f4d679a98d11d75e7e27e894af", "sha256": "5c0f94fc518daca08e74fd117fef09d6dd090b0fd623a47edde451be3aed28c7", + "sha1_git": "c1941b54e7b0d44567b8a2eee0b8cc8add21e68f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4745,6 +4753,7 @@ "sha1": "a51c5bbb738c1c1cd1f58c79060fa5ea4d0dd753", "md5": "cae07c80e6f79864de002700bf9ab02f", "sha256": "fe96061d23b37c98913379d54c5388cffdc99239807c2caf8c96d7d10321d085", + "sha1_git": "188435705b6648e2f6a94d82509365a11a7b224f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4847,6 +4856,7 @@ "sha1": "a7a9763832eb31e1f7f7927d6288df284b70c6e5", "md5": "ffb481f2a0c6262d0f7d1e9a4681a6ca", "sha256": "5470e41b0bfba6adb43649215df756f1a4a5173ceed6127af1b38801651efde2", + "sha1_git": "b79361f193e4fc5adfe64a35e7e84d1ae4f49a4b", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -4921,6 +4931,7 @@ "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", "md5": "effc6856ef85a9250fb1a470792b3f38", "sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878", + "sha1_git": "1d61df81ffb14fd19f1ac10344a51755e8719282", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -4989,6 +5000,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -5073,6 +5085,7 @@ "sha1": "a7ee5ea54da88a6390e72ff018dd471045d8bbf1", "md5": "92011414f344e34f711e77bac40e4bc4", "sha256": "e533accabdc7434f3905ced32c4fba755f707929ad73df6e07172cd5a786e023", + "sha1_git": "99bd88552be01741ea15b57d9abde4f7a12938e1", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -5175,6 +5188,7 @@ "sha1": "26610e5eab2a17e0fa9ef6ac791f25f77af145af", "md5": "4ed53ac605f16247ab7d571670f2351d", "sha256": "b09e2a43e9960d3d28d37d24f10dfbc462a4cb376da54ba571ac9a8874911ed5", + "sha1_git": "36568396a1e657f72c524b60c17b27e1f810bc58", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -5277,6 +5291,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -5379,6 +5394,7 @@ "sha1": "172444e7c137eb5cd3cae530aca0879c90f7fada", "md5": "57f047ea87f405486a94bc5a56ba7fcf", "sha256": "963aabe87f6a51ca9c237669034a9fdecd71df7350eaf30bdf0718f63c5a94f8", + "sha1_git": "d9dde3ce8624b573d44ed2245ce9b22df978bea5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -5469,6 +5485,7 @@ "sha1": "dfc6c1274bd31b47d5cc482af0c0dad9d30eccaa", "md5": "62b51527599b11b32361699c75b05683", "sha256": "8b54b0b90570e4b0d5b8c8520e4b5a8258ae15849ec1919f57da093f5df84f38", + "sha1_git": "28ce1718edf320e7f1fb5343bdad69cf5dfcb7b5", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -8664,6 +8681,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8812,6 +8830,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -8875,6 +8894,7 @@ "sha1": "93b3e6e5822c350a9c12e69a2848e29767777002", "md5": "4e58eb393ad904c1de81a9ca5b9e392c", "sha256": "8e6da5a880c0547bac5b71f0f123164511ae17e3c7d7f424e4ec5b44e1cae731", + "sha1_git": "c814a2df733d77a1f2338090dfa74720f6202ca6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -8977,6 +8997,7 @@ "sha1": "f98c6c82a570ac852801b46157c1540070d55358", "md5": "48c4037f16b4670795fdf72e88cc278c", "sha256": "fc1682e787ccc8d9eb83eb0b1f5acb59d22aa6ce1bff7c749a9dc315237b2240", + "sha1_git": "d28e903933651219ad37d02dc80a58daf198f707", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9079,6 +9100,7 @@ "sha1": "4b4696c59e245cef0bad7334fdb63725ccfa218c", "md5": "f11ed826baf25f2bfa9c610313460036", "sha256": "ef7bf500e1accf7e91352788c92b5c6663bab52e2cd6c42284496518e4a5f054", + "sha1_git": "4524875c9ff79f6478d18e3eb66c39f50c4f7a96", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9181,6 +9203,7 @@ "sha1": "a99a71ff971faf49a52ed6f7d3075fdffae8054b", "md5": "d8821cd288e2be7fd83cdcac22a427ce", "sha256": "a3c2fa63c7e730bdd008bc07b7d3865dc76781082b77a03d52a918ce1c7d3459", + "sha1_git": "0b360ce6c169766d4dd9d81993f4ae21aebcfbc9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9283,6 +9306,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -9359,6 +9383,7 @@ "sha1": "cc7fcb4d721a7efe9eefa6bd2d9d0105d33203a8", "md5": "dbd621f76cb27e2fd8b8e2d9d985ffcf", "sha256": "8b257a625c537736ee3ac2321b4ef56ba8a6fa4f922a35b1a0e992f9327d39e9", + "sha1_git": "23da9b437db7ce129df56d1c8d297906c0bbf962", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "C#", @@ -9439,6 +9464,7 @@ "sha1": "3043848212232cdde81eb3e20fca7f2447d944be", "md5": "661652a0568e25d12fc9bfad2fdabfb2", "sha256": "f3144ba734429b825e22c2f9048412e78c907e0142f2cdc629879b3a0fa63c89", + "sha1_git": "65ea66cb943a7a8b4b87d7b5beccb660214f1b57", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with CRLF line terminators", "programming_language": "C#", @@ -9541,6 +9567,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -9609,6 +9636,7 @@ "sha1": "8dff93e95ccef023a871fb438784635b5df1d541", "md5": "4f0d2f55d43d9466750350f8b27f0302", "sha256": "1551b8fb1c2f1f3cc92c8e4f31730ebdde0c766caeca6d670a7758b55e3804f3", + "sha1_git": "3fc192371e46e14835e4b42c8decb9b3a6cdc1f5", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -9717,6 +9745,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -9785,6 +9814,7 @@ "sha1": "299f7a056cf0e0ed7d5bd687c53f3247d809cab2", "md5": "d570bd029ee2362f2a0927c87999773b", "sha256": "03fb435669b57aa90fe00c4dbc12d8492ef87b6243427d1e1831006994ee1f80", + "sha1_git": "3d9f3c93d7ffe4abbfd1f87c0189d6015350600d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9887,6 +9917,7 @@ "sha1": "c849edb4691d23e0db97d3f5da1cc5b396929449", "md5": "2913c8ea7fb43a0f469bb2797c820a95", "sha256": "4f8db049a7156b8a4616a6c9df0b5ee09571f0ac2eb253e111f2fb727fb033ea", + "sha1_git": "e7be4800317bce312679806c0d99770300bfca72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -9989,6 +10020,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -10057,6 +10089,7 @@ "sha1": "b7fe15df27e601b88cde6b6a63dad184ccbce572", "md5": "8b897171ea0767232e586086bc94518c", "sha256": "ee2eef602cba7c4ba350617f4154de50cb4cbf274c7dd773130aca0775d5d9cd", + "sha1_git": "c62dc6d1f15a532a644302d533421fb967bb2278", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -10159,6 +10192,7 @@ "sha1": "85c65180242c560a4df66e9882119bf70eaefd02", "md5": "07497e2688dad9406386f0534a0bbfca", "sha256": "64fef1f0a7cd69eae744ad2fa754ee8568a5715588e38b7a3fa6e11eaeaec97e", + "sha1_git": "a5942194eea562896392979306b4f05cc6042d6a", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -10261,6 +10295,7 @@ "sha1": "2e846ef84cfb16e0e8b92c62a850a607a709d7b2", "md5": "2a0ea6a99e31fb0989209a027476038d", "sha256": "dc7224c7f079d237acf510ff40282cf6d50352c851d4e2957d227e2a3b57eb4d", + "sha1_git": "1aac612ec3066c101f6fbd6ce1e426fb8e182b1f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -10363,6 +10398,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines b/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines index dc43632806a..bbebaa5ffa6 100644 --- a/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines +++ b/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines @@ -22,9 +22,9 @@ "system_environment": { "operating_system": "linux", "cpu_architecture": "64", - "platform": "Linux-6.8.0-52-generic-x86_64-with-glibc2.35", - "platform_version": "#53~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Jan 15 19:18:46 UTC 2", - "python_version": "3.11.8 (main, Feb 12 2024, 14:25:06) [GCC 11.4.0]" + "platform": "Linux-5.15.0-141-generic-x86_64-with-glibc2.35", + "platform_version": "#151-Ubuntu SMP Sun May 18 21:35:19 UTC 2025", + "python_version": "3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0]" }, "spdx_license_list_version": "3.26", "files_count": 26 @@ -473,6 +473,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -514,6 +515,7 @@ "sha1": "172444e7c137eb5cd3cae530aca0879c90f7fada", "md5": "57f047ea87f405486a94bc5a56ba7fcf", "sha256": "963aabe87f6a51ca9c237669034a9fdecd71df7350eaf30bdf0718f63c5a94f8", + "sha1_git": "d9dde3ce8624b573d44ed2245ce9b22df978bea5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -577,6 +579,7 @@ "sha1": "dfc6c1274bd31b47d5cc482af0c0dad9d30eccaa", "md5": "62b51527599b11b32361699c75b05683", "sha256": "8b54b0b90570e4b0d5b8c8520e4b5a8258ae15849ec1919f57da093f5df84f38", + "sha1_git": "28ce1718edf320e7f1fb5343bdad69cf5dfcb7b5", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -646,6 +649,7 @@ "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", "md5": "effc6856ef85a9250fb1a470792b3f38", "sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878", + "sha1_git": "1d61df81ffb14fd19f1ac10344a51755e8719282", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -687,6 +691,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -728,6 +733,7 @@ "sha1": "a7ee5ea54da88a6390e72ff018dd471045d8bbf1", "md5": "92011414f344e34f711e77bac40e4bc4", "sha256": "e533accabdc7434f3905ced32c4fba755f707929ad73df6e07172cd5a786e023", + "sha1_git": "99bd88552be01741ea15b57d9abde4f7a12938e1", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -803,6 +809,7 @@ "sha1": "26610e5eab2a17e0fa9ef6ac791f25f77af145af", "md5": "4ed53ac605f16247ab7d571670f2351d", "sha256": "b09e2a43e9960d3d28d37d24f10dfbc462a4cb376da54ba571ac9a8874911ed5", + "sha1_git": "36568396a1e657f72c524b60c17b27e1f810bc58", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -878,6 +885,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -953,6 +961,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -994,6 +1003,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1035,6 +1045,7 @@ "sha1": "d0d55d2ae0842afee96695bcc8be939e763704ec", "md5": "301dfe021b3b4076b9f8d49577205b44", "sha256": "ff6dfac01c9b7ad9fcb5e646db83b482f5f720d981f0ca6c68828c5aa4ec784b", + "sha1_git": "b9f2abd00888b689c26a71bc4092b56c548643a3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -1110,6 +1121,7 @@ "sha1": "21ec75514ce72011c4e86c977505c024832c1b63", "md5": "5165fdeefda7a55c13e44c5e56cac920", "sha256": "8553411bf58f4ac35fc9e7d6142f11fc2fbef33e50a77f514a253135807afd44", + "sha1_git": "991606291da8799b39f94905365c13259ae04fc5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -1191,6 +1203,7 @@ "sha1": "aee1bb33424e7c1264f85c9aad40d43c3738f871", "md5": "53a91ff66fdc4d812d7656b4e807bfd2", "sha256": "ec1427fc2f7e322e6a4d5d99f8119310d6586aaaf5b30b2904b4ccd27966e120", + "sha1_git": "9c3c08df13f0e67e8f5bb2f0e6a66d246bbbef03", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -1266,6 +1279,7 @@ "sha1": "8da19aa25da421608fbe9f4f5eeb122ab35fd01e", "md5": "52540f80f5c22d8d13627c57b76d44f4", "sha256": "c3bcefbbb2706f65410b4bb91d531e2ec461fa4586135becc8865adeca3385c8", + "sha1_git": "b4071b2728aff78d02cbaae63bfc1f2109331b07", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -1313,6 +1327,7 @@ "sha1": "c1baa345449b4b91e61886dadea8f1bbea034eb4", "md5": "a0b4e3f4d679a98d11d75e7e27e894af", "sha256": "5c0f94fc518daca08e74fd117fef09d6dd090b0fd623a47edde451be3aed28c7", + "sha1_git": "c1941b54e7b0d44567b8a2eee0b8cc8add21e68f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -1360,6 +1375,7 @@ "sha1": "a51c5bbb738c1c1cd1f58c79060fa5ea4d0dd753", "md5": "cae07c80e6f79864de002700bf9ab02f", "sha256": "fe96061d23b37c98913379d54c5388cffdc99239807c2caf8c96d7d10321d085", + "sha1_git": "188435705b6648e2f6a94d82509365a11a7b224f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -1435,6 +1451,7 @@ "sha1": "a7a9763832eb31e1f7f7927d6288df284b70c6e5", "md5": "ffb481f2a0c6262d0f7d1e9a4681a6ca", "sha256": "5470e41b0bfba6adb43649215df756f1a4a5173ceed6127af1b38801651efde2", + "sha1_git": "b79361f193e4fc5adfe64a35e7e84d1ae4f49a4b", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -1482,6 +1499,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1523,6 +1541,7 @@ "sha1": "f98c6c82a570ac852801b46157c1540070d55358", "md5": "48c4037f16b4670795fdf72e88cc278c", "sha256": "fc1682e787ccc8d9eb83eb0b1f5acb59d22aa6ce1bff7c749a9dc315237b2240", + "sha1_git": "d28e903933651219ad37d02dc80a58daf198f707", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1598,6 +1617,7 @@ "sha1": "4b4696c59e245cef0bad7334fdb63725ccfa218c", "md5": "f11ed826baf25f2bfa9c610313460036", "sha256": "ef7bf500e1accf7e91352788c92b5c6663bab52e2cd6c42284496518e4a5f054", + "sha1_git": "4524875c9ff79f6478d18e3eb66c39f50c4f7a96", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1673,6 +1693,7 @@ "sha1": "a99a71ff971faf49a52ed6f7d3075fdffae8054b", "md5": "d8821cd288e2be7fd83cdcac22a427ce", "sha256": "a3c2fa63c7e730bdd008bc07b7d3865dc76781082b77a03d52a918ce1c7d3459", + "sha1_git": "0b360ce6c169766d4dd9d81993f4ae21aebcfbc9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1748,6 +1769,7 @@ "sha1": "85c65180242c560a4df66e9882119bf70eaefd02", "md5": "07497e2688dad9406386f0534a0bbfca", "sha256": "64fef1f0a7cd69eae744ad2fa754ee8568a5715588e38b7a3fa6e11eaeaec97e", + "sha1_git": "a5942194eea562896392979306b4f05cc6042d6a", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1823,6 +1845,7 @@ "sha1": "2e846ef84cfb16e0e8b92c62a850a607a709d7b2", "md5": "2a0ea6a99e31fb0989209a027476038d", "sha256": "dc7224c7f079d237acf510ff40282cf6d50352c851d4e2957d227e2a3b57eb4d", + "sha1_git": "1aac612ec3066c101f6fbd6ce1e426fb8e182b1f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1898,6 +1921,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1973,6 +1997,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -2014,6 +2039,7 @@ "sha1": "93b3e6e5822c350a9c12e69a2848e29767777002", "md5": "4e58eb393ad904c1de81a9ca5b9e392c", "sha256": "8e6da5a880c0547bac5b71f0f123164511ae17e3c7d7f424e4ec5b44e1cae731", + "sha1_git": "c814a2df733d77a1f2338090dfa74720f6202ca6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -2089,6 +2115,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -2130,6 +2157,7 @@ "sha1": "cc7fcb4d721a7efe9eefa6bd2d9d0105d33203a8", "md5": "dbd621f76cb27e2fd8b8e2d9d985ffcf", "sha256": "8b257a625c537736ee3ac2321b4ef56ba8a6fa4f922a35b1a0e992f9327d39e9", + "sha1_git": "23da9b437db7ce129df56d1c8d297906c0bbf962", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "C#", @@ -2183,6 +2211,7 @@ "sha1": "3043848212232cdde81eb3e20fca7f2447d944be", "md5": "661652a0568e25d12fc9bfad2fdabfb2", "sha256": "f3144ba734429b825e22c2f9048412e78c907e0142f2cdc629879b3a0fa63c89", + "sha1_git": "65ea66cb943a7a8b4b87d7b5beccb660214f1b57", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with CRLF line terminators", "programming_language": "C#", @@ -2258,6 +2287,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -2299,6 +2329,7 @@ "sha1": "8dff93e95ccef023a871fb438784635b5df1d541", "md5": "4f0d2f55d43d9466750350f8b27f0302", "sha256": "1551b8fb1c2f1f3cc92c8e4f31730ebdde0c766caeca6d670a7758b55e3804f3", + "sha1_git": "3fc192371e46e14835e4b42c8decb9b3a6cdc1f5", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -2380,6 +2411,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -2421,6 +2453,7 @@ "sha1": "299f7a056cf0e0ed7d5bd687c53f3247d809cab2", "md5": "d570bd029ee2362f2a0927c87999773b", "sha256": "03fb435669b57aa90fe00c4dbc12d8492ef87b6243427d1e1831006994ee1f80", + "sha1_git": "3d9f3c93d7ffe4abbfd1f87c0189d6015350600d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -2496,6 +2529,7 @@ "sha1": "c849edb4691d23e0db97d3f5da1cc5b396929449", "md5": "2913c8ea7fb43a0f469bb2797c820a95", "sha256": "4f8db049a7156b8a4616a6c9df0b5ee09571f0ac2eb253e111f2fb727fb033ea", + "sha1_git": "e7be4800317bce312679806c0d99770300bfca72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -2571,6 +2605,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -2612,6 +2647,7 @@ "sha1": "b7fe15df27e601b88cde6b6a63dad184ccbce572", "md5": "8b897171ea0767232e586086bc94518c", "sha256": "ee2eef602cba7c4ba350617f4154de50cb4cbf274c7dd773130aca0775d5d9cd", + "sha1_git": "c62dc6d1f15a532a644302d533421fb967bb2278", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/tallies/full_tallies/tallies_key_files.expected.json b/tests/summarycode/data/tallies/full_tallies/tallies_key_files.expected.json index 23f2b89eb1a..656be014c0b 100644 --- a/tests/summarycode/data/tallies/full_tallies/tallies_key_files.expected.json +++ b/tests/summarycode/data/tallies/full_tallies/tallies_key_files.expected.json @@ -433,6 +433,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -470,6 +471,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -507,6 +509,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -544,6 +547,7 @@ "sha1": "d0d55d2ae0842afee96695bcc8be939e763704ec", "md5": "301dfe021b3b4076b9f8d49577205b44", "sha256": "ff6dfac01c9b7ad9fcb5e646db83b482f5f720d981f0ca6c68828c5aa4ec784b", + "sha1_git": "b9f2abd00888b689c26a71bc4092b56c548643a3", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -615,6 +619,7 @@ "sha1": "21ec75514ce72011c4e86c977505c024832c1b63", "md5": "5165fdeefda7a55c13e44c5e56cac920", "sha256": "8553411bf58f4ac35fc9e7d6142f11fc2fbef33e50a77f514a253135807afd44", + "sha1_git": "991606291da8799b39f94905365c13259ae04fc5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -692,6 +697,7 @@ "sha1": "aee1bb33424e7c1264f85c9aad40d43c3738f871", "md5": "53a91ff66fdc4d812d7656b4e807bfd2", "sha256": "ec1427fc2f7e322e6a4d5d99f8119310d6586aaaf5b30b2904b4ccd27966e120", + "sha1_git": "9c3c08df13f0e67e8f5bb2f0e6a66d246bbbef03", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -763,6 +769,7 @@ "sha1": "8da19aa25da421608fbe9f4f5eeb122ab35fd01e", "md5": "52540f80f5c22d8d13627c57b76d44f4", "sha256": "c3bcefbbb2706f65410b4bb91d531e2ec461fa4586135becc8865adeca3385c8", + "sha1_git": "b4071b2728aff78d02cbaae63bfc1f2109331b07", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -806,6 +813,7 @@ "sha1": "c1baa345449b4b91e61886dadea8f1bbea034eb4", "md5": "a0b4e3f4d679a98d11d75e7e27e894af", "sha256": "5c0f94fc518daca08e74fd117fef09d6dd090b0fd623a47edde451be3aed28c7", + "sha1_git": "c1941b54e7b0d44567b8a2eee0b8cc8add21e68f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -849,6 +857,7 @@ "sha1": "a51c5bbb738c1c1cd1f58c79060fa5ea4d0dd753", "md5": "cae07c80e6f79864de002700bf9ab02f", "sha256": "fe96061d23b37c98913379d54c5388cffdc99239807c2caf8c96d7d10321d085", + "sha1_git": "188435705b6648e2f6a94d82509365a11a7b224f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -920,6 +929,7 @@ "sha1": "a7a9763832eb31e1f7f7927d6288df284b70c6e5", "md5": "ffb481f2a0c6262d0f7d1e9a4681a6ca", "sha256": "5470e41b0bfba6adb43649215df756f1a4a5173ceed6127af1b38801651efde2", + "sha1_git": "b79361f193e4fc5adfe64a35e7e84d1ae4f49a4b", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "Java", @@ -963,6 +973,7 @@ "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", "md5": "effc6856ef85a9250fb1a470792b3f38", "sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878", + "sha1_git": "1d61df81ffb14fd19f1ac10344a51755e8719282", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -1000,6 +1011,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1037,6 +1049,7 @@ "sha1": "a7ee5ea54da88a6390e72ff018dd471045d8bbf1", "md5": "92011414f344e34f711e77bac40e4bc4", "sha256": "e533accabdc7434f3905ced32c4fba755f707929ad73df6e07172cd5a786e023", + "sha1_git": "99bd88552be01741ea15b57d9abde4f7a12938e1", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1108,6 +1121,7 @@ "sha1": "26610e5eab2a17e0fa9ef6ac791f25f77af145af", "md5": "4ed53ac605f16247ab7d571670f2351d", "sha256": "b09e2a43e9960d3d28d37d24f10dfbc462a4cb376da54ba571ac9a8874911ed5", + "sha1_git": "36568396a1e657f72c524b60c17b27e1f810bc58", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1179,6 +1193,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1250,6 +1265,7 @@ "sha1": "172444e7c137eb5cd3cae530aca0879c90f7fada", "md5": "57f047ea87f405486a94bc5a56ba7fcf", "sha256": "963aabe87f6a51ca9c237669034a9fdecd71df7350eaf30bdf0718f63c5a94f8", + "sha1_git": "d9dde3ce8624b573d44ed2245ce9b22df978bea5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -1309,6 +1325,7 @@ "sha1": "dfc6c1274bd31b47d5cc482af0c0dad9d30eccaa", "md5": "62b51527599b11b32361699c75b05683", "sha256": "8b54b0b90570e4b0d5b8c8520e4b5a8258ae15849ec1919f57da093f5df84f38", + "sha1_git": "28ce1718edf320e7f1fb5343bdad69cf5dfcb7b5", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null, @@ -1374,6 +1391,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1411,6 +1429,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1448,6 +1467,7 @@ "sha1": "93b3e6e5822c350a9c12e69a2848e29767777002", "md5": "4e58eb393ad904c1de81a9ca5b9e392c", "sha256": "8e6da5a880c0547bac5b71f0f123164511ae17e3c7d7f424e4ec5b44e1cae731", + "sha1_git": "c814a2df733d77a1f2338090dfa74720f6202ca6", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -1519,6 +1539,7 @@ "sha1": "f98c6c82a570ac852801b46157c1540070d55358", "md5": "48c4037f16b4670795fdf72e88cc278c", "sha256": "fc1682e787ccc8d9eb83eb0b1f5acb59d22aa6ce1bff7c749a9dc315237b2240", + "sha1_git": "d28e903933651219ad37d02dc80a58daf198f707", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1590,6 +1611,7 @@ "sha1": "4b4696c59e245cef0bad7334fdb63725ccfa218c", "md5": "f11ed826baf25f2bfa9c610313460036", "sha256": "ef7bf500e1accf7e91352788c92b5c6663bab52e2cd6c42284496518e4a5f054", + "sha1_git": "4524875c9ff79f6478d18e3eb66c39f50c4f7a96", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1661,6 +1683,7 @@ "sha1": "a99a71ff971faf49a52ed6f7d3075fdffae8054b", "md5": "d8821cd288e2be7fd83cdcac22a427ce", "sha256": "a3c2fa63c7e730bdd008bc07b7d3865dc76781082b77a03d52a918ce1c7d3459", + "sha1_git": "0b360ce6c169766d4dd9d81993f4ae21aebcfbc9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -1732,6 +1755,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1769,6 +1793,7 @@ "sha1": "cc7fcb4d721a7efe9eefa6bd2d9d0105d33203a8", "md5": "dbd621f76cb27e2fd8b8e2d9d985ffcf", "sha256": "8b257a625c537736ee3ac2321b4ef56ba8a6fa4f922a35b1a0e992f9327d39e9", + "sha1_git": "23da9b437db7ce129df56d1c8d297906c0bbf962", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "C#", @@ -1818,6 +1843,7 @@ "sha1": "3043848212232cdde81eb3e20fca7f2447d944be", "md5": "661652a0568e25d12fc9bfad2fdabfb2", "sha256": "f3144ba734429b825e22c2f9048412e78c907e0142f2cdc629879b3a0fa63c89", + "sha1_git": "65ea66cb943a7a8b4b87d7b5beccb660214f1b57", "mime_type": "text/plain", "file_type": "UTF-8 Unicode text, with CRLF line terminators", "programming_language": "C#", @@ -1889,6 +1915,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -1926,6 +1953,7 @@ "sha1": "8dff93e95ccef023a871fb438784635b5df1d541", "md5": "4f0d2f55d43d9466750350f8b27f0302", "sha256": "1551b8fb1c2f1f3cc92c8e4f31730ebdde0c766caeca6d670a7758b55e3804f3", + "sha1_git": "3fc192371e46e14835e4b42c8decb9b3a6cdc1f5", "mime_type": "text/plain", "file_type": "ASCII text, with CRLF line terminators", "programming_language": "GAS", @@ -2003,6 +2031,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -2040,6 +2069,7 @@ "sha1": "299f7a056cf0e0ed7d5bd687c53f3247d809cab2", "md5": "d570bd029ee2362f2a0927c87999773b", "sha256": "03fb435669b57aa90fe00c4dbc12d8492ef87b6243427d1e1831006994ee1f80", + "sha1_git": "3d9f3c93d7ffe4abbfd1f87c0189d6015350600d", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -2111,6 +2141,7 @@ "sha1": "c849edb4691d23e0db97d3f5da1cc5b396929449", "md5": "2913c8ea7fb43a0f469bb2797c820a95", "sha256": "4f8db049a7156b8a4616a6c9df0b5ee09571f0ac2eb253e111f2fb727fb033ea", + "sha1_git": "e7be4800317bce312679806c0d99770300bfca72", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -2182,6 +2213,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -2219,6 +2251,7 @@ "sha1": "b7fe15df27e601b88cde6b6a63dad184ccbce572", "md5": "8b897171ea0767232e586086bc94518c", "sha256": "ee2eef602cba7c4ba350617f4154de50cb4cbf274c7dd773130aca0775d5d9cd", + "sha1_git": "c62dc6d1f15a532a644302d533421fb967bb2278", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -2290,6 +2323,7 @@ "sha1": "85c65180242c560a4df66e9882119bf70eaefd02", "md5": "07497e2688dad9406386f0534a0bbfca", "sha256": "64fef1f0a7cd69eae744ad2fa754ee8568a5715588e38b7a3fa6e11eaeaec97e", + "sha1_git": "a5942194eea562896392979306b4f05cc6042d6a", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -2361,6 +2395,7 @@ "sha1": "2e846ef84cfb16e0e8b92c62a850a607a709d7b2", "md5": "2a0ea6a99e31fb0989209a027476038d", "sha256": "dc7224c7f079d237acf510ff40282cf6d50352c851d4e2957d227e2a3b57eb4d", + "sha1_git": "1aac612ec3066c101f6fbd6ce1e426fb8e182b1f", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", @@ -2432,6 +2467,7 @@ "sha1": "830fca8d60bd0d0d91f6354d83ec8bf118a20e64", "md5": "807b91d2bf5e18de555e56de37e487d1", "sha256": "3980fa5633b16f944641bf2fba3f49b8b9b9de6ffea7be1e142792393bf1a867", + "sha1_git": "d85c1f24ea89d8a4ce9dd1fde3cf20ab80c8c852", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "C", diff --git a/tests/summarycode/data/todo/no_todo/base64-arraybuffer.expected.json b/tests/summarycode/data/todo/no_todo/base64-arraybuffer.expected.json index f0c045768f2..73f7cfe22a2 100644 --- a/tests/summarycode/data/todo/no_todo/base64-arraybuffer.expected.json +++ b/tests/summarycode/data/todo/no_todo/base64-arraybuffer.expected.json @@ -321,6 +321,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -356,6 +357,7 @@ "sha1": "de4a0dded8947ec9808a6d23aceddcb205f9f957", "md5": "e9c3fb3867fddd2f012f39ac11949339", "sha256": "3800ebe410db7921c40dd59bf083fd6d94d99fb7392f48ba9eb8146d5d81f706", + "sha1_git": "332ee5ada34196329589e15978980ac397021335", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -393,6 +395,7 @@ "sha1": "340c75c043b1010ee4cdedbbba0178bd2c5b8437", "md5": "7e6019c14540d23cd5ed7337b94782b0", "sha256": "f3eca6ff762533fa5a77caf954a143e48afa204668cf97dce758c45a9e006be3", + "sha1_git": "ed27b41b252ac2adbbbb3dfd6606a32c972948e9", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -464,6 +467,7 @@ "sha1": "440c548985b2f38e06657211d630afbfa4e567bf", "md5": "13686c8ce711f4d6266e80febf7a44ae", "sha256": "401541346e1b7e238a757e6707f9f6e02907e17b84af9f3337f392eba8b9107d", + "sha1_git": "50009e44f640a622c8db90bd394dea8c320572b8", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": null, @@ -535,6 +539,7 @@ "sha1": null, "md5": null, "sha256": null, + "sha1_git": null, "mime_type": null, "file_type": null, "programming_language": null, @@ -572,6 +577,7 @@ "sha1": "e93ee468a164b81c8b8d1de4866085966a67e136", "md5": "b1d19531a9b7fceff2e3215bff5722f9", "sha256": "756e9c9e4b63048c99e9bbfdbd1a76ce5ad3193cecf94a4232ced8fdf1732607", + "sha1_git": "362fbfaf4a68c826746fcdb3cab4dd0e777effa5", "mime_type": "text/plain", "file_type": "ASCII text", "programming_language": "JavaScript", @@ -643,6 +649,7 @@ "sha1": "1853ae06931a67b3eb8bb76c801ac258966ff74e", "md5": "27fb799cad01c2225da7881703735a6a", "sha256": "c137a784510ece7d3b9b1d4de59c55a0594b1ed51b30c9581e8279cb705b0286", + "sha1_git": "1b102e3e1ab4d0fc3531fc1dc24150857e502456", "mime_type": "application/json", "file_type": "JSON data", "programming_language": null,