Skip to content

Commit

Permalink
More test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany committed Jan 5, 2024
1 parent 9e14b6d commit 3fd3bd6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ jobs:

- name: check flake (runs tests)
run: NIXPKGS_ALLOW_UNFREE=1 nix flake check --impure --log-format internal-json

- name: list
run: |
ls -al $(realpath ./result)
ls -al /nix/store/*-vm-test-run-kolide-launcher
ls -al /nix/store/*-kolide-launcher*
- name: upload test screenshot
uses: actions/upload-artifact@v4
with:
path: ./result/test.png
retention-days: 1

- name: show flake output attributes
run: nix flake show
Expand Down
11 changes: 9 additions & 2 deletions tests/kolide-launcher.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,18 @@ pkgs.nixosTest {
testScript = { nodes, ... }: ''
machine.start()
with subtest("launcher starts"):
machine.wait_for_file("/var/lib/kolide-k2/k2device.kolide.com/debug.json")
# TODO: currently launcher will shut itself down if its secret file doesn't exist,
# so we don't get all the way through setup and launcher doesn't stay running.
# In the future, we'll want to validate setup and that the service is running.
with subtest("kolide-launcher service starts"):
machine.wait_for_unit("kolide-launcher.service")
machine.systemctl("status kolide-launcher.service")
machine.screenshot("test.png")
with subtest("launcher set up correctly"):
machine.wait_for_file("/var/lib/kolide-k2/k2device.kolide.com/debug.json")
machine.shutdown()
'';
Expand Down

0 comments on commit 3fd3bd6

Please sign in to comment.