vscode: add userTasks test

This commit is contained in:
natsukium 2022-10-29 10:47:06 +09:00 committed by Robert Helgesson
parent 39c1e6704a
commit 9333581075
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
2 changed files with 44 additions and 0 deletions

View File

@ -1,4 +1,5 @@
{
vscode-keybindings = ./keybindings.nix;
vscode-tasks = ./tasks.nix;
vscode-update-checks = ./update-checks.nix;
}

View File

@ -0,0 +1,43 @@
{ pkgs, config, ... }:
let
tasksFilePath = if pkgs.stdenv.hostPlatform.isDarwin then
"Library/Application Support/Code/User/tasks.json"
else
".config/Code/User/tasks.json";
tasks = {
version = "2.0.0";
tasks = [{
type = "shell";
label = "Hello task";
command = "hello";
}];
};
expectedTasks = pkgs.writeText "tasks-expected.json" ''
{
"tasks": [
{
"command": "hello",
"label": "Hello task",
"type": "shell"
}
],
"version": "2.0.0"
}
'';
in {
programs.vscode = {
enable = true;
package = pkgs.writeScriptBin "vscode" "" // { pname = "vscode"; };
userTasks = tasks;
};
nmt.script = ''
assertFileExists "home-files/${tasksFilePath}"
assertFileContent "home-files/${tasksFilePath}" "${expectedTasks}"
'';
}