mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-07 01:07:00 +00:00
firefox: remove old unused test file (#6403)
This commit is contained in:
parent
30ea6fed4e
commit
15bd673658
1 changed files with 0 additions and 241 deletions
|
@ -1,241 +0,0 @@
|
||||||
modulePath:
|
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
cfg = getAttrFromPath modulePath config;
|
|
||||||
|
|
||||||
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
|
||||||
|
|
||||||
withName = path:
|
|
||||||
pkgs.substituteAll {
|
|
||||||
src = path;
|
|
||||||
name = cfg.wrappedPackageName;
|
|
||||||
};
|
|
||||||
|
|
||||||
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 = let
|
|
||||||
|
|
||||||
noHashQuery = ''
|
|
||||||
'def walk(f):
|
|
||||||
. as $in
|
|
||||||
| if type == "object" then
|
|
||||||
reduce keys[] as $key
|
|
||||||
( {}; . + { ($key): ($in[$key] | walk(f)) } | f )
|
|
||||||
elif type == "array" then
|
|
||||||
map( walk(f) )
|
|
||||||
else
|
|
||||||
f
|
|
||||||
end;
|
|
||||||
walk(if type == "object" then
|
|
||||||
if has("hash") then .hash = null else . end |
|
|
||||||
if has("privateHash") then .privateHash = null else . end
|
|
||||||
else
|
|
||||||
.
|
|
||||||
end)' '';
|
|
||||||
|
|
||||||
in ''
|
|
||||||
assertFileRegex \
|
|
||||||
home-path/bin/${cfg.wrappedPackageName} \
|
|
||||||
MOZ_APP_LAUNCHER
|
|
||||||
|
|
||||||
assertDirectoryExists home-files/${cfg.configPath}/basic
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
home-files/${cfg.configPath}/test/user.js \
|
|
||||||
${withName ./profile-settings-expected-user.js}
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
home-files/${cfg.configPath}/containers/containers.json \
|
|
||||||
${withName ./profile-settings-expected-containers.json}
|
|
||||||
|
|
||||||
bookmarksUserJs=$(normalizeStorePaths \
|
|
||||||
home-files/${cfg.configPath}/bookmarks/user.js)
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
$bookmarksUserJs \
|
|
||||||
${withName ./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 \
|
|
||||||
${withName ./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 ${noHashQuery} > "$decompressedSearch")
|
|
||||||
|
|
||||||
assertFileContent \
|
|
||||||
$decompressedSearch \
|
|
||||||
"$2"
|
|
||||||
}
|
|
||||||
|
|
||||||
assertFirefoxSearchContent \
|
|
||||||
home-files/${cfg.configPath}/search/search.json.mozlz4 \
|
|
||||||
${withName ./profile-settings-expected-search.json}
|
|
||||||
|
|
||||||
assertFirefoxSearchContent \
|
|
||||||
home-files/${cfg.configPath}/searchWithoutDefault/search.json.mozlz4 \
|
|
||||||
${withName ./profile-settings-expected-search-without-default.json}
|
|
||||||
'';
|
|
||||||
});
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue