2023-07-02 01:00:28 +00:00
|
|
|
import * as dependencyGraph from '../../src/dependency-graph'
|
|
|
|
|
|
|
|
describe('dependency-graph', () => {
|
|
|
|
describe('constructs job correlator', () => {
|
|
|
|
it('removes commas from workflow name', () => {
|
|
|
|
const id = dependencyGraph.constructJobCorrelator('Workflow, with,commas', 'jobid', '{}')
|
2023-07-07 17:38:30 +00:00
|
|
|
expect(id).toBe('workflow_withcommas-jobid')
|
2023-07-02 01:00:28 +00:00
|
|
|
})
|
|
|
|
it('removes non word characters', () => {
|
|
|
|
const id = dependencyGraph.constructJobCorrelator('Workflow!_with()characters', 'job-*id', '{"foo": "bar!@#$%^&*("}')
|
|
|
|
expect(id).toBe('workflow_withcharacters-job-id-bar')
|
|
|
|
})
|
2023-07-07 17:38:30 +00:00
|
|
|
it('replaces spaces', () => {
|
|
|
|
const id = dependencyGraph.constructJobCorrelator('Workflow !_ with () characters, and spaces', 'job-*id', '{"foo": "bar!@#$%^&*("}')
|
|
|
|
expect(id).toBe('workflow___with_characters_and_spaces-job-id-bar')
|
|
|
|
})
|
2023-07-02 01:00:28 +00:00
|
|
|
it('without matrix', () => {
|
|
|
|
const id = dependencyGraph.constructJobCorrelator('workflow', 'jobid', 'null')
|
|
|
|
expect(id).toBe('workflow-jobid')
|
|
|
|
})
|
|
|
|
it('with dashes in values', () => {
|
|
|
|
const id = dependencyGraph.constructJobCorrelator('workflow-name', 'job-id', '{"os": "ubuntu-latest"}')
|
|
|
|
expect(id).toBe('workflow-name-job-id-ubuntu-latest')
|
|
|
|
})
|
|
|
|
it('with single matrix value', () => {
|
|
|
|
const id = dependencyGraph.constructJobCorrelator('workflow', 'jobid', '{"os": "windows"}')
|
|
|
|
expect(id).toBe('workflow-jobid-windows')
|
|
|
|
})
|
|
|
|
it('with composite matrix value', () => {
|
|
|
|
const id = dependencyGraph.constructJobCorrelator('workflow', 'jobid', '{"os": "windows", "java-version": "21.1", "other": "Value, with COMMA"}')
|
2023-07-07 17:38:30 +00:00
|
|
|
expect(id).toBe('workflow-jobid-windows-211-value_with_comma')
|
2023-07-02 01:00:28 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|