-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remotes: add gpg-import option. (#91)
* remotes: add gpg-import option. Adds an option to declare imports of a GPG key from file. Refactor remotes helper functions in modules/remotes.nix.
- Loading branch information
Showing
6 changed files
with
77 additions
and
27 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
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
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,33 @@ | ||
{ pkgs }: | ||
|
||
let | ||
flatpakAddRemotesCmd = installation: { name, location, gpg-import ? null, args ? null, ... }: | ||
let | ||
gpg-import-flag = ''${if gpg-import == null then "" else "--gpg-import=${gpg-import}" }''; | ||
args-flag = ''${if args == null then "" else args}''; | ||
in | ||
'' | ||
${pkgs.flatpak}/bin/flatpak remote-add --${installation} --if-not-exists ${args-flag} ${gpg-import-flag} ${name} ${location} | ||
''; | ||
|
||
flatpakAddRemote = installation: remotes: map (flatpakAddRemotesCmd installation) remotes; | ||
|
||
flatpakDeleteRemotesCmd = installation: uninstallUnmanaged: {}: '' | ||
# Delete all remotes that are present in the old state but not the new one | ||
# $OLD_STATE and $NEW_STATE are globals, declared in the output of pkgs.writeShellScript. | ||
# If uninstallUnmanagedState is true, then the remotes will be deleted forcefully. | ||
${pkgs.jq}/bin/jq -r -n \ | ||
--argjson old "$OLD_STATE" \ | ||
--argjson new "$NEW_STATE" \ | ||
'(($old.remotes // []) - ($new.remotes // []))[]' \ | ||
| while read -r REMOTE_NAME; do | ||
${pkgs.flatpak}/bin/flatpak remote-delete ${if uninstallUnmanaged then " --force " else " " } --${installation} $REMOTE_NAME | ||
done | ||
''; | ||
|
||
mkFlatpakAddRemotesCmd = installation: remotes: builtins.foldl' (x: y: x + y) '''' (flatpakAddRemote installation remotes); | ||
in | ||
{ | ||
inherit mkFlatpakAddRemotesCmd flatpakDeleteRemotesCmd; | ||
} |
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,15 @@ | ||
cd tests/ | ||
|
||
test_count=0 | ||
for test_file in *-test.nix; do | ||
echo "Collecting results for... ${test_file}" | ||
result=$(nix eval --show-trace --impure --expr "import ./${test_file} {}") | ||
|
||
if [ "$result" != "[ ]" ]; then | ||
echo "Test failed: Expected [], but got $result in $test_file" | ||
exit 1 | ||
fi | ||
((test_count++)) | ||
done | ||
|
||
echo "All tests in ${test_count} suites passed." |
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,19 @@ | ||
{ pkgs ? import <nixpkgs> { } }: | ||
|
||
let | ||
inherit (pkgs) lib; | ||
inherit (lib) runTests; | ||
installation = "system"; | ||
installer = import ../modules/remotes.nix { inherit pkgs; }; | ||
in | ||
runTests { | ||
testMkFlatpakAddRemotesCmd = { | ||
expr = installer.mkFlatpakAddRemotesCmd installation [{ name = "flathub"; location = "http://flathub"; }]; | ||
expected = "${pkgs.flatpak}/bin/flatpak remote-add --system --if-not-exists flathub http://flathub\n"; | ||
}; | ||
|
||
testMkFlatpakAddRemotesCmdCmdWithTrustedKeys = { | ||
expr = installer.mkFlatpakAddRemotesCmd installation [{ name = "flathub"; location = "http://flathub"; gpg-import = "trustedkeys.gpg"; }]; | ||
expected = "${pkgs.flatpak}/bin/flatpak remote-add --system --if-not-exists --gpg-import=trustedkeys.gpg flathub http://flathub\n"; | ||
}; | ||
} |