nixpkgs/nixos/tests/incus/ui.nix

85 lines
2.6 KiB
Nix
Raw Normal View History

2024-11-30 00:04:27 -05:00
import ../make-test-python.nix (
{
pkgs,
lib,
lts ? true,
2024-11-30 00:04:27 -05:00
...
}:
{
name = "incus-ui";
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
meta = {
maintainers = lib.teams.lxc.members;
2024-02-16 14:21:27 +01:00
};
2024-11-30 00:04:27 -05:00
nodes.machine =
{ lib, ... }:
{
virtualisation.incus = {
enable = true;
package = if lts then pkgs.incus-lts else pkgs.incus;
preseed.config."core.https_address" = ":8443";
ui.enable = true;
2024-11-30 00:04:27 -05:00
};
2024-11-30 00:04:27 -05:00
networking.nftables.enable = true;
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
environment.systemPackages =
let
seleniumScript =
pkgs.writers.writePython3Bin "selenium-script"
{
libraries = with pkgs.python3Packages; [ selenium ];
}
''
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.firefox.options import Options
from selenium.webdriver.support.ui import WebDriverWait
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
options = Options()
options.add_argument("--headless")
service = webdriver.FirefoxService(executable_path="${lib.getExe pkgs.geckodriver}") # noqa: E501
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
driver = webdriver.Firefox(options=options, service=service)
driver.implicitly_wait(10)
driver.get("https://localhost:8443/ui")
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
wait = WebDriverWait(driver, 60)
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
assert len(driver.find_elements(By.CLASS_NAME, "l-application")) > 0
assert len(driver.find_elements(By.CLASS_NAME, "l-navigation__drawer")) > 0
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
driver.close()
'';
in
with pkgs;
[
curl
firefox-unwrapped
geckodriver
seleniumScript
];
};
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
testScript = ''
machine.wait_for_unit("incus.service")
2025-04-01 18:25:56 +00:00
machine.wait_for_unit("incus-preseed.service")
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
# Check that the INCUS_UI environment variable is populated in the systemd unit
machine.succeed("systemctl cat incus.service | grep 'INCUS_UI'")
2024-02-16 14:21:27 +01:00
2024-11-30 00:04:27 -05:00
# Ensure the endpoint returns an HTML page with 'Incus UI' in the title
machine.succeed("curl -kLs https://localhost:8443/ui | grep '<title>Incus UI</title>'")
2024-02-16 14:21:27 +01:00
2025-04-01 18:25:56 +00:00
# Ensure the documentation is rendering correctly
machine.succeed("curl -kLs https://localhost:8443/documentation/ | grep '<title>Incus documentation</title>'")
2024-11-30 00:04:27 -05:00
# Ensure the application is actually rendered by the Javascript
machine.succeed("PYTHONUNBUFFERED=1 selenium-script")
'';
}
)