summaryrefslogtreecommitdiffstats
path: root/nixos/tests/freshrss-none-auth.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/freshrss-none-auth.nix')
-rw-r--r--nixos/tests/freshrss-none-auth.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/nixos/tests/freshrss-none-auth.nix b/nixos/tests/freshrss-none-auth.nix
new file mode 100644
index 000000000000..fd63470386a0
--- /dev/null
+++ b/nixos/tests/freshrss-none-auth.nix
@@ -0,0 +1,19 @@
+import ./make-test-python.nix ({ lib, pkgs, ... }: {
+ name = "freshrss";
+ meta.maintainers = with lib.maintainers; [ mattchrist ];
+
+ nodes.machine = { pkgs, ... }: {
+ services.freshrss = {
+ enable = true;
+ baseUrl = "http://localhost";
+ authType = "none";
+ };
+ };
+
+ testScript = ''
+ machine.wait_for_unit("multi-user.target")
+ machine.wait_for_open_port(80)
+ response = machine.succeed("curl -vvv -s http://127.0.0.1:80/i/")
+ assert '<title>Main stream ยท FreshRSS</title>' in response, "FreshRSS stream page didn't load successfully"
+ '';
+})