mirror of
				https://github.com/taigrr/yq
				synced 2025-01-18 04:53:17 -08:00 
			
		
		
		
	wip
This commit is contained in:
		
							parent
							
								
									1d5ecb244d
								
							
						
					
					
						commit
						c12764dba8
					
				| @ -6,88 +6,19 @@ import ( | ||||
| 
 | ||||
| var envOperatorScenarios = []expressionScenario{ | ||||
| 	{ | ||||
| 		document:   ``, | ||||
| 		expression: `1`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!int)::1\n", | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
| 		document:   ``, | ||||
| 		expression: `-1`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!int)::-1\n", | ||||
| 		}, | ||||
| 	}, { | ||||
| 		document:   ``, | ||||
| 		expression: `1.2`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!float)::1.2\n", | ||||
| 		}, | ||||
| 	}, { | ||||
| 		document:   ``, | ||||
| 		expression: `-5.2e11`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!float)::-5.2e11\n", | ||||
| 		}, | ||||
| 	}, { | ||||
| 		document:   ``, | ||||
| 		expression: `5e-10`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!float)::5e-10\n", | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
| 		document:   ``, | ||||
| 		expression: `"cat"`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!str)::cat\n", | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
| 		document:   ``, | ||||
| 		expression: `"frog jumps"`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!str)::frog jumps\n", | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
| 		document:   ``, | ||||
| 		expression: `"1.3"`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!str)::\"1.3\"\n", | ||||
| 		}, | ||||
| 	}, { | ||||
| 		document:   ``, | ||||
| 		expression: `"true"`, | ||||
| 		description:         "Read boolean environment variable as a string", | ||||
| 		environmentVariable: "true", | ||||
| 		expression:          `strenv(myenv)`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!str)::\"true\"\n", | ||||
| 		}, | ||||
| 	}, { | ||||
| 		document:   ``, | ||||
| 		expression: `true`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!bool)::true\n", | ||||
| 		}, | ||||
| 	}, { | ||||
| 		document:   ``, | ||||
| 		expression: `false`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!bool)::false\n", | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
| 		document:   ``, | ||||
| 		expression: `Null`, | ||||
| 		description:         "Read numeric environment variable as a string", | ||||
| 		environmentVariable: "12", | ||||
| 		expression:          `strenv(myenv)`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!null)::Null\n", | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
| 		document:   ``, | ||||
| 		expression: `~`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[], (!!null)::~\n", | ||||
| 			"D0, P[], (!!str)::\"12\"\n", | ||||
| 		}, | ||||
| 	}, | ||||
| } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user