summaryrefslogtreecommitdiff
path: root/tests/basic-functionality.Tests.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic-functionality.Tests.ps1')
-rw-r--r--tests/basic-functionality.Tests.ps144
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/basic-functionality.Tests.ps1 b/tests/basic-functionality.Tests.ps1
new file mode 100644
index 0000000..d62823b
--- /dev/null
+++ b/tests/basic-functionality.Tests.ps1
@@ -0,0 +1,44 @@
+BeforeAll {
+ . $PSScriptRoot/lib/lib.ps1
+}
+
+Describe "Basic Functionality" {
+ BeforeAll {
+ $distro = Install-Distro
+ }
+
+ It "is possible to run a command through the installer" {
+ $distro.Launch("nixos-version")
+ $LASTEXITCODE | Should -Be 0
+ }
+
+ It "is possible to run a second command" {
+ $distro.Launch("true")
+ $LASTEXITCODE | Should -Be 0
+ }
+
+ It "is possible to run a command after restarting the container" {
+ $distro.Shutdown()
+ $distro.Launch("true")
+ $LASTEXITCODE | Should -Be 0
+ }
+
+ It "is possible to use nixos-rebuild" {
+ $distro.Launch("sudo nixos-rebuild switch")
+ $LASTEXITCODE | Should -Be 0
+ }
+
+ It "is possible to run a command through nix-shell" {
+ $distro.Launch("nix-shell -p neofetch --command neofetch")
+ $LASTEXITCODE | Should -Be 0
+ }
+
+ It "is possible to run a command through nix run" {
+ $distro.Launch("nix run nixpkgs#neofetch")
+ $LASTEXITCODE | Should -Be 0
+ }
+
+ AfterAll {
+ $distro.Uninstall()
+ }
+}