1{ ejson2env, runCommand }:
2runCommand "check-ejson2env.sh"
3 {
4 nativeBuildInputs = [ ejson2env ];
5 }
6 ''
7 cat > $TMP/abc.ejson <<EOF
8 {
9 "_public_key": "349a0e027725db0693cf0505344c5104807d38fb398cd4597029dccc8d0d8711",
10 "environment": {
11 "foo": "EJ[1:7oqIDkyXLro12rcrg7/psjK5Qcfuw5FRquvfBaRUBic=:OTtncVl0wT4U6UWdxoaCGBRnM2WzGnV3:1FiIgHYT5U6MjFN8IUU83T1fzQ==]"
12 }
13 }
14 EOF
15 response="$(echo "ff34961809e9d7a0ae20b9d09e5d8630c8d4924cef19cdb5385916b9be019954" | ejson2env --key-from-stdin $TMP/abc.ejson)"
16 if [[ "$response" != "export foo=bar" ]]; then
17 echo "test file not decrypted correctly"
18 exit 1
19 fi
20 touch $out
21 ''