Skip to content

Commit 66416c1

Browse files
authored
feat: allow elixir scripts for data extension (#25)
1 parent 736da42 commit 66416c1

File tree

4 files changed

+25
-172
lines changed

4 files changed

+25
-172
lines changed

lib/tableau/data.ex

-165
This file was deleted.

lib/tableau/extensions/data_extension.ex

+16-6
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,23 @@ defmodule Tableau.DataExtension do
2222

2323
def run(token) do
2424
data =
25-
for file <- Path.wildcard(Path.join(token.data.dir, "**/*.{yml,yaml}")), into: %{} do
26-
key =
27-
file
28-
|> Path.basename(".yaml")
29-
|> Path.basename(".yml")
25+
for file <- Path.wildcard(Path.join(token.data.dir, "**/*.{yml,yaml,exs}")), into: %{} do
26+
case Path.extname(file) do
27+
".exs" ->
28+
key = file |> Path.basename(".exs")
3029

31-
{key, YamlElixir.read_from_file!(file)}
30+
{result, _binding} = Code.eval_file(file)
31+
32+
{key, result}
33+
34+
yaml when yaml in ~w[.yml .yaml] ->
35+
key =
36+
file
37+
|> Path.basename(".yaml")
38+
|> Path.basename(".yml")
39+
40+
{key, YamlElixir.read_from_file!(file)}
41+
end
3242
end
3343

3444
{:ok, Map.put(token, :data, data)}

test/support/fixtures/foobar.exs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
%{
2+
foo: [
3+
"bar"
4+
]
5+
}

test/tableau/extensions/data_extension_test.exs

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ defmodule Tableau.DataExtensionTest do
33

44
alias Tableau.DataExtension
55

6-
test "reads files from disk" do
6+
test "reads/evals files from disk" do
77
token = %{data: %{dir: "test/support/fixtures"}}
88

99
assert {:ok, actual} = DataExtension.run(token)
1010

1111
assert actual == %{
1212
data: %{
13+
"foobar" => %{
14+
foo: ["bar"]
15+
},
1316
"books" => %{
1417
"books" => [
1518
%{"author" => "Michael Crichton", "name" => "Jurassic Park"},

0 commit comments

Comments
 (0)