firefox: organize tests by submodule
This commit is contained in:
parent
6e090576c4
commit
6cd92b99da
|
@ -189,7 +189,7 @@ in import nmtSrc {
|
||||||
./modules/programs/bemenu
|
./modules/programs/bemenu
|
||||||
./modules/programs/borgmatic
|
./modules/programs/borgmatic
|
||||||
./modules/programs/boxxy
|
./modules/programs/boxxy
|
||||||
./modules/programs/firefox/firefox.nix
|
./modules/programs/firefox
|
||||||
./modules/programs/foot
|
./modules/programs/foot
|
||||||
./modules/programs/freetube
|
./modules/programs/freetube
|
||||||
./modules/programs/fuzzel
|
./modules/programs/fuzzel
|
||||||
|
|
16
tests/modules/programs/firefox/default.nix
Normal file
16
tests/modules/programs/firefox/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
let name = "firefox";
|
||||||
|
|
||||||
|
in builtins.mapAttrs (test: module: import module [ "programs" name ]) {
|
||||||
|
"${name}-deprecated-native-messenger" = ./deprecated-native-messenger.nix;
|
||||||
|
"${name}-policies" = ./policies.nix;
|
||||||
|
"${name}-profile-bookmarks" = ./profiles/bookmarks;
|
||||||
|
"${name}-profile-containers" = ./profiles/containers;
|
||||||
|
"${name}-profile-containers-duplicate-ids" =
|
||||||
|
./profiles/containers/duplicate-ids.nix;
|
||||||
|
"${name}-profile-containers-id-out-of-range" =
|
||||||
|
./profiles/containers/id-out-of-range.nix;
|
||||||
|
"${name}-profile-duplicate-ids" = ./profiles/duplicate-ids.nix;
|
||||||
|
"${name}-profile-search" = ./profiles/search;
|
||||||
|
"${name}-profile-settings" = ./profiles/settings;
|
||||||
|
"${name}-state-version-19_09" = ./state-version-19_09.nix;
|
||||||
|
}
|
|
@ -1,11 +0,0 @@
|
||||||
let name = "firefox";
|
|
||||||
|
|
||||||
in builtins.mapAttrs (test: module: import module [ "programs" name ]) {
|
|
||||||
"${name}-profile-settings" = ./profile-settings.nix;
|
|
||||||
"${name}-state-version-19_09" = ./state-version-19_09.nix;
|
|
||||||
"${name}-deprecated-native-messenger" = ./deprecated-native-messenger.nix;
|
|
||||||
"${name}-duplicate-profile-ids" = ./duplicate-profile-ids.nix;
|
|
||||||
"${name}-duplicate-container-ids" = ./duplicate-container-ids.nix;
|
|
||||||
"${name}-container-id-out-of-range" = ./container-id-out-of-range.nix;
|
|
||||||
"${name}-policies" = ./policies.nix;
|
|
||||||
}
|
|
|
@ -1,215 +0,0 @@
|
||||||
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 (setAttrByPath modulePath {
|
|
||||||
enable = true;
|
|
||||||
profiles.basic.isDefault = true;
|
|
||||||
|
|
||||||
profiles.test = {
|
|
||||||
id = 1;
|
|
||||||
settings = {
|
|
||||||
"general.smoothScroll" = false;
|
|
||||||
"browser.newtabpage.pinned" = [{
|
|
||||||
title = "NixOS";
|
|
||||||
url = "https://nixos.org";
|
|
||||||
}];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
profiles.bookmarks = {
|
|
||||||
id = 2;
|
|
||||||
settings = { "general.smoothScroll" = false; };
|
|
||||||
bookmarks = [
|
|
||||||
{
|
|
||||||
toolbar = true;
|
|
||||||
bookmarks = [{
|
|
||||||
name = "Home Manager";
|
|
||||||
url = "https://wiki.nixos.org/wiki/Home_Manager";
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "wikipedia";
|
|
||||||
tags = [ "wiki" ];
|
|
||||||
keyword = "wiki";
|
|
||||||
url = "https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "kernel.org";
|
|
||||||
url = "https://www.kernel.org";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "Nix sites";
|
|
||||||
bookmarks = [
|
|
||||||
{
|
|
||||||
name = "homepage";
|
|
||||||
url = "https://nixos.org/";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "wiki";
|
|
||||||
tags = [ "wiki" "nix" ];
|
|
||||||
url = "https://wiki.nixos.org/";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "Nix sites";
|
|
||||||
bookmarks = [
|
|
||||||
{
|
|
||||||
name = "homepage";
|
|
||||||
url = "https://nixos.org/";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "wiki";
|
|
||||||
url = "https://wiki.nixos.org/";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
profiles.search = {
|
|
||||||
id = 3;
|
|
||||||
search = {
|
|
||||||
force = true;
|
|
||||||
default = "Google";
|
|
||||||
privateDefault = "DuckDuckGo";
|
|
||||||
order = [ "Nix Packages" "NixOS Wiki" ];
|
|
||||||
engines = {
|
|
||||||
"Nix Packages" = {
|
|
||||||
urls = [{
|
|
||||||
template = "https://search.nixos.org/packages";
|
|
||||||
params = [
|
|
||||||
{
|
|
||||||
name = "type";
|
|
||||||
value = "packages";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "query";
|
|
||||||
value = "{searchTerms}";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}];
|
|
||||||
|
|
||||||
icon =
|
|
||||||
"/run/current-system/sw/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
|
||||||
|
|
||||||
definedAliases = [ "@np" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
"NixOS Wiki" = {
|
|
||||||
urls = [{
|
|
||||||
template =
|
|
||||||
"https://wiki.nixos.org/index.php?search={searchTerms}";
|
|
||||||
}];
|
|
||||||
iconUpdateURL = "https://wiki.nixos.org/favicon.png";
|
|
||||||
updateInterval = 24 * 60 * 60 * 1000;
|
|
||||||
definedAliases = [ "@nw" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
"Bing".metaData.hidden = true;
|
|
||||||
"Google".metaData.alias = "@g";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
profiles.searchWithoutDefault = {
|
|
||||||
id = 4;
|
|
||||||
search = {
|
|
||||||
force = true;
|
|
||||||
order = [ "Google" "Nix Packages" ];
|
|
||||||
engines = {
|
|
||||||
"Nix Packages" = {
|
|
||||||
urls = [{
|
|
||||||
template = "https://search.nixos.org/packages";
|
|
||||||
params = [
|
|
||||||
{
|
|
||||||
name = "type";
|
|
||||||
value = "packages";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "query";
|
|
||||||
value = "{searchTerms}";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}];
|
|
||||||
|
|
||||||
definedAliases = [ "@np" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
profiles.containers = {
|
|
||||||
id = 5;
|
|
||||||
containers = {
|
|
||||||
"shopping" = {
|
|
||||||
id = 6;
|
|
||||||
icon = "circle";
|
|
||||||
color = "yellow";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
} // {
|
|
||||||
|
|
||||||
nmt.script = ''
|
|
||||||
assertFileRegex \
|
|
||||||
home-path/bin/${cfg.wrappedPackageName} \
|
|
||||||
MOZ_APP_LAUNCHER
|
|
||||||
|
|
||||||
assertDirectoryExists home-files/${cfg.configPath}/basic
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
home-files/${cfg.configPath}/test/user.js \
|
|
||||||
${./profile-settings-expected-user.js}
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
home-files/${cfg.configPath}/containers/containers.json \
|
|
||||||
${./profile-settings-expected-containers.json}
|
|
||||||
|
|
||||||
bookmarksUserJs=$(normalizeStorePaths \
|
|
||||||
home-files/${cfg.configPath}/bookmarks/user.js)
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
$bookmarksUserJs \
|
|
||||||
${./profile-settings-expected-bookmarks-user.js}
|
|
||||||
|
|
||||||
bookmarksFile="$(sed -n \
|
|
||||||
'/browser.bookmarks.file/ {s|^.*\(/nix/store[^"]*\).*|\1|;p}' \
|
|
||||||
$TESTED/home-files/${cfg.configPath}/bookmarks/user.js)"
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
$bookmarksFile \
|
|
||||||
${./profile-settings-expected-bookmarks.html}
|
|
||||||
|
|
||||||
function assertFirefoxSearchContent() {
|
|
||||||
compressedSearch=$(normalizeStorePaths "$1")
|
|
||||||
|
|
||||||
decompressedSearch=$(dirname $compressedSearch)/search.json
|
|
||||||
${pkgs.mozlz4a}/bin/mozlz4a -d "$compressedSearch" >(${pkgs.jq}/bin/jq . > "$decompressedSearch")
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
$decompressedSearch \
|
|
||||||
"$2"
|
|
||||||
}
|
|
||||||
|
|
||||||
assertFirefoxSearchContent \
|
|
||||||
home-files/${cfg.configPath}/search/search.json.mozlz4 \
|
|
||||||
${./profile-settings-expected-search.json}
|
|
||||||
|
|
||||||
assertFirefoxSearchContent \
|
|
||||||
home-files/${cfg.configPath}/searchWithoutDefault/search.json.mozlz4 \
|
|
||||||
${./profile-settings-expected-search-without-default.json}
|
|
||||||
'';
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
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 (setAttrByPath modulePath {
|
||||||
|
enable = true;
|
||||||
|
profiles.bookmarks = {
|
||||||
|
settings = { "general.smoothScroll" = false; };
|
||||||
|
bookmarks = [
|
||||||
|
{
|
||||||
|
toolbar = true;
|
||||||
|
bookmarks = [{
|
||||||
|
name = "Home Manager";
|
||||||
|
url = "https://wiki.nixos.org/wiki/Home_Manager";
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "wikipedia";
|
||||||
|
tags = [ "wiki" ];
|
||||||
|
keyword = "wiki";
|
||||||
|
url = "https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "kernel.org";
|
||||||
|
url = "https://www.kernel.org";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "Nix sites";
|
||||||
|
bookmarks = [
|
||||||
|
{
|
||||||
|
name = "homepage";
|
||||||
|
url = "https://nixos.org/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "wiki";
|
||||||
|
tags = [ "wiki" "nix" ];
|
||||||
|
url = "https://wiki.nixos.org/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "Nix sites";
|
||||||
|
bookmarks = [
|
||||||
|
{
|
||||||
|
name = "homepage";
|
||||||
|
url = "https://nixos.org/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "wiki";
|
||||||
|
url = "https://wiki.nixos.org/";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
} // {
|
||||||
|
nmt.script = ''
|
||||||
|
bookmarksUserJs=$(normalizeStorePaths \
|
||||||
|
home-files/${cfg.configPath}/bookmarks/user.js)
|
||||||
|
|
||||||
|
assertFileContent \
|
||||||
|
$bookmarksUserJs \
|
||||||
|
${./expected-bookmarks-user.js}
|
||||||
|
|
||||||
|
bookmarksFile="$(sed -n \
|
||||||
|
'/browser.bookmarks.file/ {s|^.*\(/nix/store[^"]*\).*|\1|;p}' \
|
||||||
|
$TESTED/home-files/${cfg.configPath}/bookmarks/user.js)"
|
||||||
|
|
||||||
|
assertFileContent \
|
||||||
|
$bookmarksFile \
|
||||||
|
${./expected-bookmarks.html}
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
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 (setAttrByPath modulePath {
|
||||||
|
enable = true;
|
||||||
|
profiles.containers = {
|
||||||
|
containers = {
|
||||||
|
"shopping" = {
|
||||||
|
icon = "circle";
|
||||||
|
color = "yellow";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
} // {
|
||||||
|
nmt.script = ''
|
||||||
|
assertFileContent \
|
||||||
|
home-files/${cfg.configPath}/containers/containers.json \
|
||||||
|
${./expected-containers.json}
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
}
|
|
@ -7,7 +7,7 @@ let
|
||||||
|
|
||||||
cfg = getAttrFromPath modulePath config;
|
cfg = getAttrFromPath modulePath config;
|
||||||
|
|
||||||
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
firefoxMockOverlay = import ../../setup-firefox-mock-overlay.nix modulePath;
|
||||||
|
|
||||||
in {
|
in {
|
||||||
imports = [ firefoxMockOverlay ];
|
imports = [ firefoxMockOverlay ];
|
|
@ -1 +1 @@
|
||||||
{"identities":[{"color":"yellow","icon":"circle","name":"shopping","public":true,"userContextId":6},{"accessKey":"","color":"","icon":"","name":"userContextIdInternal.thumbnail","public":false,"userContextId":4294967294},{"accessKey":"","color":"","icon":"","name":"userContextIdInternal.webextStorageLocal","public":false,"userContextId":4294967295}],"lastUserContextId":6,"version":4}
|
{"identities":[{"color":"yellow","icon":"circle","name":"shopping","public":true,"userContextId":0},{"accessKey":"","color":"","icon":"","name":"userContextIdInternal.thumbnail","public":false,"userContextId":4294967294},{"accessKey":"","color":"","icon":"","name":"userContextIdInternal.webextStorageLocal","public":false,"userContextId":4294967295}],"lastUserContextId":0,"version":4}
|
|
@ -5,7 +5,7 @@ with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
firefoxMockOverlay = import ../../setup-firefox-mock-overlay.nix modulePath;
|
||||||
|
|
||||||
in {
|
in {
|
||||||
imports = [ firefoxMockOverlay ];
|
imports = [ firefoxMockOverlay ];
|
|
@ -7,7 +7,7 @@ let
|
||||||
|
|
||||||
cfg = getAttrFromPath modulePath config;
|
cfg = getAttrFromPath modulePath config;
|
||||||
|
|
||||||
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
firefoxMockOverlay = import ../setup-firefox-mock-overlay.nix modulePath;
|
||||||
|
|
||||||
in {
|
in {
|
||||||
imports = [ firefoxMockOverlay ];
|
imports = [ firefoxMockOverlay ];
|
112
tests/modules/programs/firefox/profiles/search/default.nix
Normal file
112
tests/modules/programs/firefox/profiles/search/default.nix
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
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 (setAttrByPath modulePath {
|
||||||
|
enable = true;
|
||||||
|
profiles = {
|
||||||
|
search = {
|
||||||
|
id = 0;
|
||||||
|
search = {
|
||||||
|
force = true;
|
||||||
|
default = "Google";
|
||||||
|
privateDefault = "DuckDuckGo";
|
||||||
|
order = [ "Nix Packages" "NixOS Wiki" ];
|
||||||
|
engines = {
|
||||||
|
"Nix Packages" = {
|
||||||
|
urls = [{
|
||||||
|
template = "https://search.nixos.org/packages";
|
||||||
|
params = [
|
||||||
|
{
|
||||||
|
name = "type";
|
||||||
|
value = "packages";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "query";
|
||||||
|
value = "{searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
|
||||||
|
icon =
|
||||||
|
"/run/current-system/sw/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||||
|
|
||||||
|
definedAliases = [ "@np" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
"NixOS Wiki" = {
|
||||||
|
urls = [{
|
||||||
|
template =
|
||||||
|
"https://wiki.nixos.org/index.php?search={searchTerms}";
|
||||||
|
}];
|
||||||
|
iconUpdateURL = "https://wiki.nixos.org/favicon.png";
|
||||||
|
updateInterval = 24 * 60 * 60 * 1000;
|
||||||
|
definedAliases = [ "@nw" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
"Bing".metaData.hidden = true;
|
||||||
|
"Google".metaData.alias = "@g";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
searchWithoutDefault = {
|
||||||
|
id = 1;
|
||||||
|
search = {
|
||||||
|
force = true;
|
||||||
|
order = [ "Google" "Nix Packages" ];
|
||||||
|
engines = {
|
||||||
|
"Nix Packages" = {
|
||||||
|
urls = [{
|
||||||
|
template = "https://search.nixos.org/packages";
|
||||||
|
params = [
|
||||||
|
{
|
||||||
|
name = "type";
|
||||||
|
value = "packages";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "query";
|
||||||
|
value = "{searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
|
||||||
|
definedAliases = [ "@np" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
} // {
|
||||||
|
nmt.script = ''
|
||||||
|
function assertFirefoxSearchContent() {
|
||||||
|
compressedSearch=$(normalizeStorePaths "$1")
|
||||||
|
|
||||||
|
decompressedSearch=$(dirname $compressedSearch)/search.json
|
||||||
|
${pkgs.mozlz4a}/bin/mozlz4a -d "$compressedSearch" >(${pkgs.jq}/bin/jq . > "$decompressedSearch")
|
||||||
|
|
||||||
|
assertFileContent \
|
||||||
|
$decompressedSearch \
|
||||||
|
"$2"
|
||||||
|
}
|
||||||
|
|
||||||
|
assertFirefoxSearchContent \
|
||||||
|
home-files/${cfg.configPath}/search/search.json.mozlz4 \
|
||||||
|
${./expected-search.json}
|
||||||
|
|
||||||
|
assertFirefoxSearchContent \
|
||||||
|
home-files/${cfg.configPath}/searchWithoutDefault/search.json.mozlz4 \
|
||||||
|
${./expected-search-without-default.json}
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
}
|
43
tests/modules/programs/firefox/profiles/settings/default.nix
Normal file
43
tests/modules/programs/firefox/profiles/settings/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
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 (setAttrByPath modulePath {
|
||||||
|
enable = true;
|
||||||
|
profiles = {
|
||||||
|
basic.isDefault = true;
|
||||||
|
test = {
|
||||||
|
id = 1;
|
||||||
|
settings = {
|
||||||
|
"general.smoothScroll" = false;
|
||||||
|
"browser.newtabpage.pinned" = [{
|
||||||
|
title = "NixOS";
|
||||||
|
url = "https://nixos.org";
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
} // {
|
||||||
|
nmt.script = ''
|
||||||
|
assertFileRegex \
|
||||||
|
home-path/bin/${cfg.wrappedPackageName} \
|
||||||
|
MOZ_APP_LAUNCHER
|
||||||
|
|
||||||
|
assertDirectoryExists home-files/${cfg.configPath}/basic
|
||||||
|
|
||||||
|
assertFileContent \
|
||||||
|
home-files/${cfg.configPath}/test/user.js \
|
||||||
|
${./expected-user.js}
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in a new issue