Created
January 28, 2021 11:13
-
-
Save domenkozar/71135bf7aa6d50d6911fb74f4dcb4bad to your computer and use it in GitHub Desktop.
Automated testing for 404/500 errors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Spec where | |
import Quickstrom | |
import Data.Foldable (any) | |
import Data.Maybe (maybe) | |
import Data.Tuple (Tuple(..)) | |
import Data.String.CodeUnits (contains) | |
import Data.String.Pattern (Pattern(..)) | |
readyWhen = "body" | |
actions = [ | |
Tuple 1 (Single $ Click "a[href^='/']") | |
] | |
patterns = [ "404", "500" ] | |
hasErrorCode = any (\x -> contains (Pattern x) pageText) patterns | |
pageText :: String | |
pageText = maybe "" _.textContent (queryOne "body" { textContent }) | |
proposition = always (not hasErrorCode) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test landing page for errors" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: cachix/install-nix-action@v12 | |
- uses: cachix/cachix-action@v8 | |
with: | |
name: quickstrom | |
- run: nix-env -iA quickstrom -f https://github.com/quickstrom/quickstrom/tarball/main | |
- run: nix-env -i geckodriver -f https://github.com/NixOS/nixpkgs/tarball/nixos-20.09 | |
- run: geckodriver& | |
- run: quickstrom check cachix.org.spec.purs https://cachix.org |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment