pyradio: add module
This commit is contained in:
parent
fdafcac367
commit
2a08ab21ab
8 changed files with 193 additions and 0 deletions
11
tests/modules/programs/pyradio/basic-configuration.nix
Normal file
11
tests/modules/programs/pyradio/basic-configuration.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
programs.pyradio = {
|
||||
enable = true;
|
||||
settings.enable_clock = true;
|
||||
};
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists "home-files/.config/pyradio/config"
|
||||
assertFileContent "home-files/.config/pyradio/config" ${./expected-config}
|
||||
'';
|
||||
}
|
||||
28
tests/modules/programs/pyradio/custom-stations.nix
Normal file
28
tests/modules/programs/pyradio/custom-stations.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
programs.pyradio = {
|
||||
enable = true;
|
||||
stations = [
|
||||
{
|
||||
name = "DEF CON Radio (SomaFM)";
|
||||
url = "https://somafm.com/defcon256.pls";
|
||||
}
|
||||
# The stations below test the csv escaping functionality.
|
||||
{
|
||||
name = "DEF CON Radio, SomaFM";
|
||||
url = "https://somafm.com/defcon256.pls";
|
||||
}
|
||||
{
|
||||
name = "DEF CON Radio on \"SomaFM\"";
|
||||
url = "https://somafm.com/defcon256.pls";
|
||||
}
|
||||
{
|
||||
name = ''DEF CON Radio on "SomaFM"'';
|
||||
url = "https://somafm.com/defcon256.pls";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
nmt.script = ''
|
||||
assertFileContent "home-files/.config/pyradio/stations.csv" ${./expected-stations.csv}
|
||||
'';
|
||||
}
|
||||
5
tests/modules/programs/pyradio/default.nix
Normal file
5
tests/modules/programs/pyradio/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
pyradio-basic-configuration = ./basic-configuration.nix;
|
||||
pyradio-custom-stations = ./custom-stations.nix;
|
||||
pyradio-empty-settings = ./empty-settings.nix;
|
||||
}
|
||||
11
tests/modules/programs/pyradio/empty-settings.nix
Normal file
11
tests/modules/programs/pyradio/empty-settings.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
programs.pyradio = {
|
||||
enable = true;
|
||||
settings = { };
|
||||
};
|
||||
|
||||
nmt.script = ''
|
||||
assertPathNotExists "home-files/.config/pyradio/config"
|
||||
assertPathNotExists "home-files/.config/pyradio/stations.csv"
|
||||
'';
|
||||
}
|
||||
3
tests/modules/programs/pyradio/expected-config
Normal file
3
tests/modules/programs/pyradio/expected-config
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Generated by Home Manager.
|
||||
|
||||
enable_clock=true
|
||||
4
tests/modules/programs/pyradio/expected-stations.csv
Normal file
4
tests/modules/programs/pyradio/expected-stations.csv
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
DEF CON Radio (SomaFM),https://somafm.com/defcon256.pls
|
||||
"DEF CON Radio, SomaFM",https://somafm.com/defcon256.pls
|
||||
"DEF CON Radio on ""SomaFM""",https://somafm.com/defcon256.pls
|
||||
"DEF CON Radio on ""SomaFM""",https://somafm.com/defcon256.pls
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue