mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
2b13611eae
Also fix tests for Firefox module derivatives.
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
modulePath:
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = getAttrFromPath modulePath config;
|
|
|
|
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
|
|
|
in {
|
|
imports = [ firefoxMockOverlay ];
|
|
|
|
config = mkIf config.test.enableBig ({
|
|
home.stateVersion = "23.05";
|
|
} // setAttrByPath modulePath {
|
|
enable = true;
|
|
policies = { BlockAboutConfig = true; };
|
|
package = pkgs.${cfg.wrappedPackageName}.override {
|
|
extraPolicies = { DownloadDirectory = "/foo"; };
|
|
};
|
|
} // {
|
|
nmt.script = ''
|
|
jq=${lib.getExe pkgs.jq}
|
|
config_file="${cfg.finalPackage}/lib/${cfg.wrappedPackageName}/distribution/policies.json"
|
|
|
|
assertFileExists "$config_file"
|
|
|
|
blockAboutConfig_actual_value="$($jq ".policies.BlockAboutConfig" $config_file)"
|
|
|
|
if [[ $blockAboutConfig_actual_value != "true" ]]; then
|
|
fail "Expected '$config_file' to set 'policies.BlockAboutConfig' to true"
|
|
fi
|
|
|
|
downloadDirectory_actual_value="$($jq ".policies.DownloadDirectory" $config_file)"
|
|
|
|
if [[ $downloadDirectory_actual_value != "\"/foo\"" ]]; then
|
|
fail "Expected '$config_file' to set 'policies.DownloadDirectory' to \"/foo\""
|
|
fi
|
|
'';
|
|
});
|
|
}
|