-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Signed-off-by: Mason Malone <[email protected]>
- Loading branch information
Showing
4 changed files
with
142 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
import {parse, stringify} from './object-parser'; | ||
import {exampleWorkflowTemplate} from '../examples'; | ||
|
||
describe('parse', () => { | ||
it('handles a valid JSON string', () => { | ||
expect(parse('{}')).toEqual({}); | ||
expect(parse('{"a": 1}')).toEqual({a: 1}); | ||
}); | ||
|
||
it('handles a malformed JSON string', () => { | ||
expect(() => parse('{1}')).toThrow(); | ||
}); | ||
|
||
it('handles a valid YAML string', () => { | ||
expect(parse('')).toEqual(null); | ||
expect(parse('a: 1')).toEqual({a: 1}); | ||
}); | ||
|
||
it('handles a malformed YAML string', () => { | ||
expect(() => parse('!foo')).toThrow(); | ||
}); | ||
|
||
it('parses a YAML string as YAML 1.1, not YAML 1.2', () => { | ||
expect(parse('foo: 0755')).toEqual({foo: 493}); | ||
}); | ||
}); | ||
|
||
describe('stringify', () => { | ||
const testWorkflowTemplate = exampleWorkflowTemplate('test'); | ||
testWorkflowTemplate.metadata.name = 'test-workflowtemplate'; | ||
|
||
it('encodes to YAML', () => { | ||
// Can't use toMatchInlineSnapshot() until we upgrade to Jest 30: https://github.com/jestjs/jest/issues/14305 | ||
expect(stringify(testWorkflowTemplate, 'yaml')).toEqual(`\ | ||
metadata: | ||
name: test-workflowtemplate | ||
namespace: test | ||
labels: | ||
example: "true" | ||
spec: | ||
workflowMetadata: | ||
labels: | ||
example: "true" | ||
entrypoint: argosay | ||
arguments: | ||
parameters: | ||
- name: message | ||
value: hello argo | ||
templates: | ||
- name: argosay | ||
inputs: | ||
parameters: | ||
- name: message | ||
value: "{{workflow.parameters.message}}" | ||
container: | ||
name: main | ||
image: argoproj/argosay:v2 | ||
command: | ||
- /argosay | ||
args: | ||
- echo | ||
- "{{inputs.parameters.message}}" | ||
ttlStrategy: | ||
secondsAfterCompletion: 300 | ||
podGC: | ||
strategy: OnPodCompletion | ||
`); | ||
}); | ||
|
||
it('encodes to JSON', () => { | ||
expect(stringify(testWorkflowTemplate, 'json')).toEqual(`{ | ||
"metadata": { | ||
"name": "test-workflowtemplate", | ||
"namespace": "test", | ||
"labels": { | ||
"example": "true" | ||
} | ||
}, | ||
"spec": { | ||
"workflowMetadata": { | ||
"labels": { | ||
"example": "true" | ||
} | ||
}, | ||
"entrypoint": "argosay", | ||
"arguments": { | ||
"parameters": [ | ||
{ | ||
"name": "message", | ||
"value": "hello argo" | ||
} | ||
] | ||
}, | ||
"templates": [ | ||
{ | ||
"name": "argosay", | ||
"inputs": { | ||
"parameters": [ | ||
{ | ||
"name": "message", | ||
"value": "{{workflow.parameters.message}}" | ||
} | ||
] | ||
}, | ||
"container": { | ||
"name": "main", | ||
"image": "argoproj/argosay:v2", | ||
"command": [ | ||
"/argosay" | ||
], | ||
"args": [ | ||
"echo", | ||
"{{inputs.parameters.message}}" | ||
] | ||
} | ||
} | ||
], | ||
"ttlStrategy": { | ||
"secondsAfterCompletion": 300 | ||
}, | ||
"podGC": { | ||
"strategy": "OnPodCompletion" | ||
} | ||
} | ||
}`); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
import jsyaml from 'js-yaml'; | ||
import YAML from 'yaml'; | ||
|
||
export function parse<T>(value: string): T { | ||
if (value.startsWith('{')) { | ||
return JSON.parse(value); | ||
} | ||
return jsyaml.load(value) as T; | ||
return YAML.parse(value, { | ||
// Default is YAML 1.2, but Kubernetes uses YAML 1.1, which leads to subtle bugs. | ||
// See https://github.com/argoproj/argo-workflows/issues/12205#issuecomment-2111572189 | ||
version: '1.1', | ||
strict: false | ||
}) as T; | ||
} | ||
|
||
export function stringify<T>(value: T, type: string) { | ||
return type === 'yaml' ? jsyaml.dump(value, {noRefs: true}) : JSON.stringify(value, null, ' '); | ||
return type === 'yaml' ? YAML.stringify(value, {aliasDuplicateObjects: false}) : JSON.stringify(value, null, ' '); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2080,11 +2080,6 @@ | |
jest-diff "^26.0.0" | ||
pretty-format "^26.0.0" | ||
|
||
"@types/js-yaml@^4.0.9": | ||
version "4.0.9" | ||
resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.9.tgz#cd82382c4f902fed9691a2ed79ec68c5898af4c2" | ||
integrity sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg== | ||
|
||
"@types/json-schema@^7.0.12", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": | ||
version "7.0.15" | ||
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" | ||
|
@@ -10355,6 +10350,11 @@ yallist@^4.0.0: | |
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" | ||
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== | ||
|
||
yaml@^2.5.1: | ||
version "2.5.1" | ||
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.1.tgz#c9772aacf62cb7494a95b0c4f1fb065b563db130" | ||
integrity sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q== | ||
|
||
[email protected]: | ||
version "20.2.9" | ||
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" | ||
|