about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorStig <stig@stig.io>2023-11-29 13:01:07 +0100
committerGitHub <noreply@github.com>2023-11-29 13:01:07 +0100
commit9f060c688e1dee8941349874489c96b10802b290 (patch)
tree06a61ea27b74ab0b20a6caec67dd4eb478bf6016 /nixos/tests
parentc67a44307a994ce6b8a91567c409765861b06134 (diff)
parenteac5dfd20ff4a618b0b62262bdafcd2245f2c7ea (diff)
downloadnixlib-9f060c688e1dee8941349874489c96b10802b290.tar
nixlib-9f060c688e1dee8941349874489c96b10802b290.tar.gz
nixlib-9f060c688e1dee8941349874489c96b10802b290.tar.bz2
nixlib-9f060c688e1dee8941349874489c96b10802b290.tar.lz
nixlib-9f060c688e1dee8941349874489c96b10802b290.tar.xz
nixlib-9f060c688e1dee8941349874489c96b10802b290.tar.zst
nixlib-9f060c688e1dee8941349874489c96b10802b290.zip
Merge pull request #265661 from TomaSajt/lanraragi
lanraragi: 0.8.90 -> 0.9.0
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/lanraragi.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/nixos/tests/lanraragi.nix b/nixos/tests/lanraragi.nix
index f513ac9d252b..7a4a1a489bdf 100644
--- a/nixos/tests/lanraragi.nix
+++ b/nixos/tests/lanraragi.nix
@@ -10,19 +10,17 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
       services.lanraragi = {
         enable = true;
         passwordFile = pkgs.writeText "lrr-test-pass" ''
-          ultra-secure-password
+          Ultra-secure-p@ssword-"with-spec1al\chars
         '';
         port = 4000;
         redis = {
           port = 4001;
           passwordFile = pkgs.writeText "redis-lrr-test-pass" ''
-            still-a-very-secure-password
+            123-redis-PASS
           '';
         };
       };
     };
-
-
   };
 
   testScript = ''
@@ -34,7 +32,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
 
     machine2.wait_for_unit("lanraragi.service")
     machine2.wait_until_succeeds("curl -f localhost:4000")
-    machine2.succeed("[ $(curl -o /dev/null -X post 'http://localhost:4000/login' --data-raw 'password=ultra-secure-password' -w '%{http_code}') -eq 302 ]")
+    machine2.succeed("[ $(curl -o /dev/null -X post 'http://localhost:4000/login' --data-raw 'password=Ultra-secure-p@ssword-\"with-spec1al\\chars' -w '%{http_code}') -eq 302 ]")
   '';
 })