|
| 1 | +'use strict' |
| 2 | +/*! |
| 3 | +This file is part of CycloneDX JavaScript Library. |
| 4 | +
|
| 5 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +you may not use this file except in compliance with the License. |
| 7 | +You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | +Unless required by applicable law or agreed to in writing, software |
| 12 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +See the License for the specific language governing permissions and |
| 15 | +limitations under the License. |
| 16 | +
|
| 17 | +SPDX-License-Identifier: Apache-2.0 |
| 18 | +Copyright (c) OWASP Foundation. All Rights Reserved. |
| 19 | +*/ |
| 20 | + |
| 21 | +const assert = require('assert') |
| 22 | +const { suite, test } = require('mocha') |
| 23 | + |
| 24 | +const { PackageURL } = require('packageurl-js') |
| 25 | + |
| 26 | +const { |
| 27 | + Enums, |
| 28 | + Models, |
| 29 | + Factories: { PackageUrlFactory } |
| 30 | +} = require('../../') |
| 31 | + |
| 32 | +suite('Factories.PackageUrlFactory', () => { |
| 33 | + const salt = Math.random() |
| 34 | + |
| 35 | + const sut = new PackageUrlFactory('testing') |
| 36 | + |
| 37 | + suite('makeFromComponent', () => { |
| 38 | + test('no-name-no-purl', () => { |
| 39 | + const component = new Models.Component( |
| 40 | + Enums.ComponentType.Library, |
| 41 | + '' |
| 42 | + ) |
| 43 | + const expected = undefined |
| 44 | + const actual = sut.makeFromComponent(component) |
| 45 | + assert.strictEqual(actual, expected) |
| 46 | + }) |
| 47 | + |
| 48 | + test('name-group-version', () => { |
| 49 | + const component = new Models.Component( |
| 50 | + Enums.ComponentType.Library, |
| 51 | + `name-${salt}`, |
| 52 | + { |
| 53 | + group: `@group-${salt}`, |
| 54 | + version: `v1+${salt}`, |
| 55 | + externalReferences: new Models.ExternalReferenceRepository([ |
| 56 | + new Models.ExternalReference('https://foo.bar', Enums.ExternalReferenceType.Website) |
| 57 | + ]) |
| 58 | + } |
| 59 | + ) |
| 60 | + const expected = new PackageURL('testing', `@group-${salt}`, `name-${salt}`, `v1+${salt}`, {}, undefined) |
| 61 | + const actual = sut.makeFromComponent(component) |
| 62 | + assert.deepStrictEqual(actual, expected) |
| 63 | + }) |
| 64 | + |
| 65 | + test('vcs-url without subpath', () => { |
| 66 | + const component = new Models.Component( |
| 67 | + Enums.ComponentType.Library, |
| 68 | + `name-${salt}`, |
| 69 | + { |
| 70 | + externalReferences: new Models.ExternalReferenceRepository([ |
| 71 | + new Models.ExternalReference('git://foo.bar', Enums.ExternalReferenceType.VCS) |
| 72 | + ]) |
| 73 | + } |
| 74 | + ) |
| 75 | + const expected = new PackageURL('testing', undefined, `name-${salt}`, undefined, { vcs_url: 'git://foo.bar' }, undefined) |
| 76 | + const actual = sut.makeFromComponent(component) |
| 77 | + assert.deepStrictEqual(actual, expected) |
| 78 | + }) |
| 79 | + |
| 80 | + test('vcs-url with subpath', () => { |
| 81 | + const component = new Models.Component( |
| 82 | + Enums.ComponentType.Library, |
| 83 | + `name-${salt}`, |
| 84 | + { |
| 85 | + externalReferences: new Models.ExternalReferenceRepository([ |
| 86 | + new Models.ExternalReference('git://foo.bar#sub/path', Enums.ExternalReferenceType.VCS) |
| 87 | + ]) |
| 88 | + } |
| 89 | + ) |
| 90 | + const expected = new PackageURL('testing', undefined, `name-${salt}`, undefined, { vcs_url: 'git://foo.bar' }, 'sub/path') |
| 91 | + const actual = sut.makeFromComponent(component) |
| 92 | + assert.deepStrictEqual(actual, expected) |
| 93 | + }) |
| 94 | + }) |
| 95 | +}) |
0 commit comments