|
|
@ -89,5 +89,27 @@ function test.df_expr_to_ref()
|
|
|
|
-- primitive field
|
|
|
|
-- primitive field
|
|
|
|
expect.eq(utils.df_expr_to_ref('unit.profession'), fake_unit:_field('profession'))
|
|
|
|
expect.eq(utils.df_expr_to_ref('unit.profession'), fake_unit:_field('profession'))
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- vector items
|
|
|
|
|
|
|
|
dfhack.with_temp_object(df.new('ptr-vector'), function(vec)
|
|
|
|
|
|
|
|
fake_unit = vec
|
|
|
|
|
|
|
|
vec:insert('#', df.global.world)
|
|
|
|
|
|
|
|
vec:insert('#', df.global.ui)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
expect.eq(utils.df_expr_to_ref('unit'), vec)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
expect.eq(utils.df_expr_to_ref('unit[0]'), utils.df_expr_to_ref('unit.0'))
|
|
|
|
|
|
|
|
expect.eq(df.reinterpret_cast(df.world, utils.df_expr_to_ref('unit[0]').value), df.global.world)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
expect.eq(utils.df_expr_to_ref('unit[1]'), utils.df_expr_to_ref('unit.1'))
|
|
|
|
|
|
|
|
expect.eq(df.reinterpret_cast(df.ui, utils.df_expr_to_ref('unit[1]').value), df.global.ui)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
expect.error_match('index out of bounds', function() utils.df_expr_to_ref('unit.2') end)
|
|
|
|
|
|
|
|
expect.error_match('index out of bounds', function() utils.df_expr_to_ref('unit[2]') end)
|
|
|
|
|
|
|
|
expect.error_match('index out of bounds', function() utils.df_expr_to_ref('unit.-1') end)
|
|
|
|
|
|
|
|
expect.error_match('index out of bounds', function() utils.df_expr_to_ref('unit[-1]') end)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
expect.error_match('not found', function() utils.df_expr_to_ref('unit.a') end)
|
|
|
|
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|
|
|
|