114 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			V
		
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			V
		
	
	
| import toml
 | |
| import strconv
 | |
| 
 | |
| const (
 | |
| 	toml_text = '
 | |
| modules = [ "ui", "toml" ]
 | |
| errors = []
 | |
| 
 | |
| [[themes]]
 | |
| name = "Dracula"
 | |
| colors = [ "red", "black", "white" ]
 | |
| 
 | |
| [[themes]]
 | |
| name = "Lemon"
 | |
| colors = [
 | |
| 	"green",
 | |
| 	"yellow",
 | |
| 	[ "transparent" ]
 | |
| ]
 | |
| 
 | |
| [[tests]]
 | |
| id = 1
 | |
| 
 | |
| [[tests]]
 | |
| id = 2
 | |
| 
 | |
| [values]
 | |
| nan = nan
 | |
| inf = inf
 | |
| test = 2
 | |
| minus-inf = -inf
 | |
| 
 | |
| [[themes]]
 | |
| name = "Ice"
 | |
| colors = [
 | |
| 	"blue",
 | |
| 	"white"
 | |
| ]
 | |
| '
 | |
| 
 | |
| 	toml_text_2 = "
 | |
| [defaults]
 | |
|   run.flags = ['-f 1']
 | |
| 
 | |
|   [[defaults.env]]
 | |
|     'RUN_PATH' = '\$OUT_PATH'
 | |
|     'RUN_TIME' = 5
 | |
|     'TEST_PATH' = '/tmp/test'
 | |
| "
 | |
| )
 | |
| 
 | |
| fn test_value_query_in_array() {
 | |
| 	toml_doc := toml.parse_text(toml_text) or { panic(err) }
 | |
| 	mut value := toml_doc.value('themes[0].colors[1]').string()
 | |
| 	assert value == 'black'
 | |
| 	value = toml_doc.value('themes[1].colors[0]').string()
 | |
| 	assert value == 'green'
 | |
| 	value = toml_doc.value('themes[1].colors[2].[0]').string()
 | |
| 	assert value == 'transparent'
 | |
| 	value = toml_doc.value('modules[1]').string()
 | |
| 	assert value == 'toml'
 | |
| 	value = toml_doc.value('errors[11]').default_to('<none>').string()
 | |
| 	assert value == '<none>'
 | |
| 
 | |
| 	value = toml_doc.value('themes[2].colors[0]').string()
 | |
| 	assert value == 'blue'
 | |
| }
 | |
| 
 | |
| fn test_any_value_query() {
 | |
| 	toml_doc := toml.parse_text(toml_text) or { panic(err) }
 | |
| 	themes := toml_doc.value('themes')
 | |
| 	assert themes.value('[0].colors[0]').string() == 'red'
 | |
| 
 | |
| 	themes_arr := toml_doc.value('themes') as []toml.Any
 | |
| 	assert themes_arr[0].value('colors[0]').string() == 'red'
 | |
| 
 | |
| 	mut any := themes
 | |
| 	assert any.value('[1].name').string() == 'Lemon'
 | |
| 	any = any.value('[1]')
 | |
| 	assert any.value('name').string() == 'Lemon'
 | |
| 
 | |
| 	any = toml_doc.value('themes').value('[1].colors').value('[1]')
 | |
| 	assert any.string() == 'yellow'
 | |
| 
 | |
| 	any = toml_doc.value('themes[1]').value('colors[1]')
 | |
| 	assert any.string() == 'yellow'
 | |
| 
 | |
| 	any = toml_doc.value('themes[1].colors[0]')
 | |
| 	assert any.string() == 'green'
 | |
| 
 | |
| 	any = toml_doc.value('values')
 | |
| 	any = any.value('test')
 | |
| 	assert any.int() == 2
 | |
| }
 | |
| 
 | |
| fn test_inf_and_nan_query() {
 | |
| 	toml_doc := toml.parse_text(toml_text) or { panic(err) }
 | |
| 
 | |
| 	value := toml_doc.value('values.nan').string()
 | |
| 	assert value == 'nan'
 | |
| 
 | |
| 	mut value_u64 := toml_doc.value('values.inf').u64()
 | |
| 	assert value_u64 == strconv.double_plus_infinity
 | |
| 	value_u64 = toml_doc.value('values.minus-inf').u64()
 | |
| 	assert value_u64 == strconv.double_minus_infinity
 | |
| }
 | |
| 
 | |
| fn test_any_value_query_2() {
 | |
| 	toml_doc := toml.parse_text(toml_text_2) or { panic(err) }
 | |
| 	defaults := toml_doc.value('defaults')
 | |
| 	assert defaults.value('run.flags[0]').string() == '-f 1'
 | |
| 	assert defaults.value('env[0].RUN_TIME').int() == 5
 | |
| }
 |