mirror of
https://github.com/nix-community/home-manager
synced 2024-11-30 06:59:45 +01:00
git-sync: minor test cleanup
This commit is contained in:
parent
66cc5c7ef9
commit
960c009ce0
1 changed files with 38 additions and 40 deletions
|
@ -1,45 +1,43 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config = {
|
services.git-sync = {
|
||||||
services.git-sync = {
|
enable = true;
|
||||||
enable = true;
|
package = config.lib.test.mkStubPackage { outPath = "@git-sync@"; };
|
||||||
package = config.lib.test.mkStubPackage { outPath = "@git-sync@"; };
|
repositories.test = {
|
||||||
repositories.test = {
|
path = "/a/path";
|
||||||
path = "/a/path";
|
uri = "git+ssh://user@example.com:/~user/path/to/repo.git";
|
||||||
uri = "git+ssh://user@example.com:/~user/path/to/repo.git";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
test.stubs = {
|
|
||||||
git = { name = "git"; };
|
|
||||||
openssh = { name = "openssh"; };
|
|
||||||
};
|
|
||||||
|
|
||||||
nmt.script = ''
|
|
||||||
serviceFile=home-files/.config/systemd/user/git-sync-test.service
|
|
||||||
|
|
||||||
assertFileExists $serviceFile
|
|
||||||
|
|
||||||
serviceFile=$(normalizeStorePaths $serviceFile)
|
|
||||||
assertFileContent $serviceFile ${
|
|
||||||
builtins.toFile "expected" ''
|
|
||||||
[Install]
|
|
||||||
WantedBy=default.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Environment=PATH=/nix/store/00000000000000000000000000000000-openssh/bin:/nix/store/00000000000000000000000000000000-git/bin
|
|
||||||
Environment=GIT_SYNC_DIRECTORY=/a/path
|
|
||||||
Environment=GIT_SYNC_COMMAND=@git-sync@/bin/git-sync
|
|
||||||
Environment=GIT_SYNC_REPOSITORY=git+ssh://user@example.com:/~user/path/to/repo.git
|
|
||||||
Environment=GIT_SYNC_INTERVAL=500
|
|
||||||
ExecStart=@git-sync@/bin/git-sync-on-inotify
|
|
||||||
Restart=on-abort
|
|
||||||
|
|
||||||
[Unit]
|
|
||||||
Description=Git Sync test
|
|
||||||
''
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
test.stubs = {
|
||||||
|
git = { name = "git"; };
|
||||||
|
openssh = { name = "openssh"; };
|
||||||
|
};
|
||||||
|
|
||||||
|
nmt.script = ''
|
||||||
|
serviceFile=home-files/.config/systemd/user/git-sync-test.service
|
||||||
|
|
||||||
|
assertFileExists $serviceFile
|
||||||
|
|
||||||
|
serviceFile=$(normalizeStorePaths $serviceFile)
|
||||||
|
assertFileContent $serviceFile ${
|
||||||
|
builtins.toFile "expected" ''
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Environment=PATH=/nix/store/00000000000000000000000000000000-openssh/bin:/nix/store/00000000000000000000000000000000-git/bin
|
||||||
|
Environment=GIT_SYNC_DIRECTORY=/a/path
|
||||||
|
Environment=GIT_SYNC_COMMAND=@git-sync@/bin/git-sync
|
||||||
|
Environment=GIT_SYNC_REPOSITORY=git+ssh://user@example.com:/~user/path/to/repo.git
|
||||||
|
Environment=GIT_SYNC_INTERVAL=500
|
||||||
|
ExecStart=@git-sync@/bin/git-sync-on-inotify
|
||||||
|
Restart=on-abort
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Git Sync test
|
||||||
|
''
|
||||||
|
}
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue