mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 18:54:30 +02:00
tests: remove special treatment of module
Since we no longer need to extract `tests.dontRun` from an attrset, we no longer need the "special" `module` attr.
This commit is contained in:
parent
7b2a6cd9e6
commit
123a55ed6f
14 changed files with 266 additions and 285 deletions
|
@ -25,7 +25,7 @@ let
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
name = "main";
|
name = "main";
|
||||||
case = builtins.removeAttrs config.programs.nixvim [
|
module = builtins.removeAttrs config.programs.nixvim [
|
||||||
# This is not available to standalone modules, only HM & NixOS Modules
|
# This is not available to standalone modules, only HM & NixOS Modules
|
||||||
"enable"
|
"enable"
|
||||||
# This is purely an example, it does not reflect a real usage
|
# This is purely an example, it does not reflect a real usage
|
||||||
|
@ -41,17 +41,12 @@ lib.pipe (testFiles ++ [ exampleFiles ]) [
|
||||||
(builtins.map (
|
(builtins.map (
|
||||||
file:
|
file:
|
||||||
let
|
let
|
||||||
# The test case can either be the actual definition,
|
|
||||||
# or a child attr named `module`.
|
|
||||||
prepareModule = case: if lib.isFunction case then case else case.module or case;
|
|
||||||
|
|
||||||
mkTest =
|
mkTest =
|
||||||
{ name, case }:
|
{ name, module }:
|
||||||
{
|
{
|
||||||
inherit name;
|
inherit name;
|
||||||
path = mkTestDerivationFromNixvimModule {
|
path = mkTestDerivationFromNixvimModule {
|
||||||
inherit name;
|
inherit name module;
|
||||||
module = prepareModule case;
|
|
||||||
pkgs = pkgsUnfree;
|
pkgs = pkgsUnfree;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -64,7 +64,7 @@ let
|
||||||
{ namespace, cases }:
|
{ namespace, cases }:
|
||||||
{
|
{
|
||||||
name = lib.strings.concatStringsSep "-" namespace;
|
name = lib.strings.concatStringsSep "-" namespace;
|
||||||
cases = lib.mapAttrsToList (name: case: { inherit case name; }) cases;
|
cases = lib.mapAttrsToList (name: module: { inherit module name; }) cases;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
# A list of the form [ { name = "..."; modules = [ /* test cases */ ]; } ]
|
# A list of the form [ { name = "..."; modules = [ /* test cases */ ]; } ]
|
||||||
|
|
|
@ -15,9 +15,7 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
top-level = {
|
top-level = module;
|
||||||
inherit module;
|
|
||||||
};
|
|
||||||
|
|
||||||
files-module = {
|
files-module = {
|
||||||
files."libtest.lua" = module;
|
files."libtest.lua" = module;
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
default-empty.module =
|
default-empty =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
files.test = { };
|
files.test = { };
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
# Test that nothing is configured by default
|
# Test that nothing is configured by default
|
||||||
default.module =
|
default =
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
files."files_test.lua" = { };
|
files."files_test.lua" = { };
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test Lua loader enabled
|
# Test Lua loader enabled
|
||||||
enabled.module =
|
enabled =
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
luaLoader.enable = true;
|
luaLoader.enable = true;
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test Lua loader disabled
|
# Test Lua loader disabled
|
||||||
disabled.module =
|
disabled =
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
luaLoader.enable = false;
|
luaLoader.enable = false;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that all extraConfigs are present in output
|
# Test that all extraConfigs are present in output
|
||||||
all-configs.module =
|
all-configs =
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
++ mkConfigAssertions "test.vim" config.files."test.vim".content;
|
++ mkConfigAssertions "test.vim" config.files."test.vim".content;
|
||||||
};
|
};
|
||||||
|
|
||||||
files-default-empty.module =
|
files-default-empty =
|
||||||
{ config, helpers, ... }:
|
{ config, helpers, ... }:
|
||||||
{
|
{
|
||||||
files = {
|
files = {
|
||||||
|
|
|
@ -24,7 +24,7 @@ let
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
default.module =
|
default =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.byteCompileLua.enable = true;
|
performance.byteCompileLua.enable = true;
|
||||||
|
@ -107,7 +107,7 @@ in
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
disabled.module =
|
disabled =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.byteCompileLua.enable = false;
|
performance.byteCompileLua.enable = false;
|
||||||
|
|
|
@ -9,7 +9,7 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
# Test basic functionality
|
# Test basic functionality
|
||||||
default.module =
|
default =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins.enable = true;
|
performance.combinePlugins.enable = true;
|
||||||
|
@ -40,7 +40,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test disabled option
|
# Test disabled option
|
||||||
disabled.module =
|
disabled =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins.enable = false;
|
performance.combinePlugins.enable = false;
|
||||||
|
@ -57,7 +57,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that plugin dependencies are handled
|
# Test that plugin dependencies are handled
|
||||||
dependencies.module =
|
dependencies =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins.enable = true;
|
performance.combinePlugins.enable = true;
|
||||||
|
@ -84,7 +84,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that pathsToLink option works
|
# Test that pathsToLink option works
|
||||||
paths-to-link.module =
|
paths-to-link =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins = {
|
performance.combinePlugins = {
|
||||||
|
@ -112,7 +112,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that plugin python3 dependencies are handled
|
# Test that plugin python3 dependencies are handled
|
||||||
python-dependencies.module =
|
python-dependencies =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins.enable = true;
|
performance.combinePlugins.enable = true;
|
||||||
|
@ -139,7 +139,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that optional plugins are handled
|
# Test that optional plugins are handled
|
||||||
optional-plugins.module =
|
optional-plugins =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins.enable = true;
|
performance.combinePlugins.enable = true;
|
||||||
|
@ -197,7 +197,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that plugin configs are handled
|
# Test that plugin configs are handled
|
||||||
configs.module =
|
configs =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins.enable = true;
|
performance.combinePlugins.enable = true;
|
||||||
|
@ -240,7 +240,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that config.filesPlugin is not combined
|
# Test that config.filesPlugin is not combined
|
||||||
files-plugin.module =
|
files-plugin =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins.enable = true;
|
performance.combinePlugins.enable = true;
|
||||||
|
@ -310,7 +310,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Test that standalonePlugins option works
|
# Test that standalonePlugins option works
|
||||||
standalone-plugins.module =
|
standalone-plugins =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
performance.combinePlugins = {
|
performance.combinePlugins = {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
all-sources = {
|
all-sources =
|
||||||
module =
|
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
plugins = {
|
plugins = {
|
||||||
|
@ -37,5 +36,4 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
plugins.coq-nvim.enable = true;
|
plugins.coq-nvim.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nixvim-defaults = {
|
nixvim-defaults =
|
||||||
module =
|
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
plugins.coq-nvim = {
|
plugins.coq-nvim = {
|
||||||
|
@ -19,7 +18,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
artifacts = {
|
artifacts = {
|
||||||
plugins.coq-nvim = {
|
plugins.coq-nvim = {
|
||||||
|
|
|
@ -98,8 +98,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
with-sources = {
|
with-sources =
|
||||||
module =
|
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
options,
|
options,
|
||||||
|
@ -164,5 +163,4 @@
|
||||||
) options.plugins.none-ls.sources;
|
) options.plugins.none-ls.sources;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,8 +26,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# single-plugin and priority of plugins.lz-n.settings to globals.lz-n
|
# single-plugin and priority of plugins.lz-n.settings to globals.lz-n
|
||||||
example-single-plugin = {
|
example-single-plugin =
|
||||||
module =
|
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
extraPlugins = optionalPlugins [ pkgs.vimPlugins.neo-tree-nvim ];
|
extraPlugins = optionalPlugins [ pkgs.vimPlugins.neo-tree-nvim ];
|
||||||
|
@ -63,10 +62,8 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
example-multiple-plugin = {
|
example-multiple-plugin =
|
||||||
module =
|
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
extraPlugins =
|
extraPlugins =
|
||||||
|
@ -166,5 +163,4 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,9 +18,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
combine-plugins.module =
|
combine-plugins = {
|
||||||
{ config, ... }:
|
|
||||||
{
|
|
||||||
plugins.telescope.enable = true;
|
plugins.telescope.enable = true;
|
||||||
|
|
||||||
performance.combinePlugins.enable = true;
|
performance.combinePlugins.enable = true;
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
check-alias.module =
|
check-alias =
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
assertions = [
|
assertions = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue