-
-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is (soon) to be used when installing package definitions from https://github.com/mason-org/mason-registry/. See for example: https://github.com/mason-org/mason-registry/blob/7df69dd2a73efc3a08520552ca64597d1db5f4fb/packages/go-debug-adapter/package.yaml#L16
- Loading branch information
1 parent
3ccd16b
commit 5c31f28
Showing
4 changed files
with
126 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
local _ = require "mason-core.functional" | ||
local string_funs = require "mason-core.functional.string" | ||
local Result = require "mason-core.result" | ||
|
||
local M = {} | ||
|
||
local parse_expr = _.compose( | ||
_.apply_spec { | ||
value_expr = _.head, | ||
filters = _.drop(1), | ||
}, | ||
_.filter(_.complement(_.equals "")), | ||
_.map(_.trim), | ||
_.split "|" | ||
) | ||
|
||
---@param str string | ||
---@param ctx table<string, any> | ||
function M.eval(str, ctx) | ||
return Result.pcall(function() | ||
return _.gsub("{{([^}]+)}}", function(expr) | ||
local components = parse_expr(expr) | ||
local value = | ||
assert(ctx[components.value_expr], ("Unable to interpolate value: %q."):format(components.value_expr)) | ||
return _.reduce( | ||
_.apply_to, | ||
value, | ||
_.map(function(filter_expr) | ||
local filter = setfenv( | ||
assert( | ||
loadstring("return " .. filter_expr), | ||
("Failed to parse filter: %q."):format(filter_expr) | ||
), | ||
string_funs | ||
)() | ||
assert(type(filter) == "function", ("Invalid filter expression: %q."):format(filter_expr)) | ||
return filter | ||
end, components.filters) | ||
) | ||
end, str) | ||
end) | ||
end | ||
|
||
return M |
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,57 @@ | ||
local match = require "luassert.match" | ||
local expr = require "mason-core.installer.registry.expr" | ||
local Result = require "mason-core.result" | ||
|
||
describe("registry expressions", function() | ||
it("should eval simple expressions", function() | ||
assert.same(Result.success "Hello, world!", expr.eval "Hello, world!") | ||
|
||
assert.same( | ||
Result.success "Hello, John Doe!", | ||
expr.eval("Hello, {{firstname}} {{ lastname }}!", { | ||
firstname = "John", | ||
lastname = "Doe", | ||
}) | ||
) | ||
end) | ||
|
||
it("should eval expressions with filters", function() | ||
assert.same( | ||
Result.success "Hello, MR. John!", | ||
expr.eval("Hello, {{prefix|to_upper}} {{ name | trim }}!", { | ||
prefix = "Mr.", | ||
name = " John ", | ||
}) | ||
) | ||
|
||
assert.same( | ||
Result.success "Hello, Sir MR. John!", | ||
expr.eval("Hello, {{prefix|to_upper | format 'Sir %s'}} {{ name | trim }}!", { | ||
prefix = "Mr.", | ||
name = " John ", | ||
}) | ||
) | ||
end) | ||
|
||
it("should reject invalid values", function() | ||
assert.is_true( | ||
match.matches [[^.*Unable to interpolate value: "non_existent"%.$]]( | ||
expr.eval("Hello, {{non_existent}}", {}):err_or_nil() | ||
) | ||
) | ||
end) | ||
|
||
it("should reject invalid filters", function() | ||
assert.is_true( | ||
match.matches [[^.*Invalid filter expression: "whut"%.$]]( | ||
expr.eval("Hello, {{ value | whut }}", { value = "value" }):err_or_nil() | ||
) | ||
) | ||
|
||
assert.is_true( | ||
match.matches [[^.*Failed to parse filter: "wh%-!uut"%.$]]( | ||
expr.eval("Hello, {{ value | wh-!uut }}", { value = "value" }):err_or_nil() | ||
) | ||
) | ||
end) | ||
end) |
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