about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-08-19 12:37:46 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-08-19 12:37:46 +0200
commit3a0f741b9bfcd436bd4157162cd5e48cd3101f79 (patch)
tree03e435de515487053e027c996253d985fd8f13ce /tests
parenta1992768d3935bc4b2f0254a42b70a717886f160 (diff)
Rename all occurences of gpg2 to gpg
This is in reaction to upstream commit
NixOS/nixpkgs@e34ce9d1c551fb43742aada6bb43ccb1a52e64a1.

One of the changes in GnuPG 2.1.23 is that the main binary is now called
gpg instead of gpg2. See the full release announcement here:

https://lists.gnupg.org/pipermail/gnupg-announce/2017q3/000412.html

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/programs/gnupg/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/programs/gnupg/default.nix b/tests/programs/gnupg/default.nix
index 7d0059b6..24756a3e 100644
--- a/tests/programs/gnupg/default.nix
+++ b/tests/programs/gnupg/default.nix
@@ -63,7 +63,7 @@ in {
 
     $machine->nest("import snakeoil key", sub {
       $machine->succeed(ssh "${cliTestWithPassphrase ''
-        gpg2 --import ${./snakeoil.asc}
+        gpg --import ${./snakeoil.asc}
       ''}");
       $machine->succeed(ssh "${mkExpect ''
         expect gpg>
@@ -74,7 +74,7 @@ in {
         send y\r
         expect gpg>
         send save\r
-      '' "gpg2 --edit-key ECC15FE1"}");
+      '' "gpg --edit-key ECC15FE1"}");
     });
 
     subtest "test SSH agent support", sub {
@@ -112,25 +112,25 @@ in {
       $machine->execute(ssh "systemctl --user reload gpg-agent");
       $machine->succeed(ssh "${cliTestWithPassphrase ''
         echo encrypt me > to_encrypt
-        gpg2 -sea -r ECC15FE1 to_encrypt
+        gpg -sea -r ECC15FE1 to_encrypt
         rm to_encrypt
       ''}");
       $machine->succeed(ssh "${cliTest ''
-        [ "$(gpg2 -d to_encrypt.asc)" = "encrypt me" ]
+        [ "$(gpg -d to_encrypt.asc)" = "encrypt me" ]
       ''}");
     };
 
     subtest "test from X", sub {
       $machine->execute(ssh "systemctl --user reload gpg-agent");
       my $pid = $machine->succeed(xsu
-        'echo encrypt me | gpg2 -sea -r ECC15FE1 > encrypted_x.asc & echo $!'
+        'echo encrypt me | gpg -sea -r ECC15FE1 > encrypted_x.asc & echo $!'
       );
       chomp $pid;
       $machine->waitForText(qr/Passphrase/);
       $machine->screenshot("passphrase_dialog");
       $machine->sendChars("supersecret\n");
       $machine->waitUntilFails("kill -0 $pid");
-      $machine->succeed(xsu '[ "$(gpg2 -d encrypted_x.asc)" = "encrypt me" ]');
+      $machine->succeed(xsu '[ "$(gpg -d encrypted_x.asc)" = "encrypt me" ]');
     };
   '';
 }