{"id":37060829,"url":"https://github.com/thomasduft/smoky","last_synced_at":"2026-01-14T06:53:18.605Z","repository":{"id":159885080,"uuid":"584733956","full_name":"thomasduft/smoky","owner":"thomasduft","description":"A simple smoke test tool.","archived":false,"fork":false,"pushed_at":"2025-10-06T12:48:18.000Z","size":1849,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-15T12:36:08.568Z","etag":null,"topics":["integration-testing","smoke-tests"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thomasduft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-01-03T11:32:26.000Z","updated_at":"2025-10-06T12:48:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"ba0bd96f-704d-4c34-8b72-b14510b9a80b","html_url":"https://github.com/thomasduft/smoky","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/thomasduft/smoky","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasduft%2Fsmoky","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasduft%2Fsmoky/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasduft%2Fsmoky/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasduft%2Fsmoky/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thomasduft","download_url":"https://codeload.github.com/thomasduft/smoky/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasduft%2Fsmoky/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28412435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["integration-testing","smoke-tests"],"created_at":"2026-01-14T06:53:17.997Z","updated_at":"2026-01-14T06:53:18.598Z","avatar_url":"https://github.com/thomasduft.png","language":"C#","readme":"[![build](https://github.com/thomasduft/smoky/actions/workflows/build.yml/badge.svg)](https://github.com/thomasduft/smoky/actions/workflows/build.yml) [![NuGet](https://img.shields.io/nuget/vpre/tomware.Smoky.svg)](https://www.nuget.org/packages/tomware.Smoky)\n\n# Smoky\n\n`smoky` - a simple smoke test tool.\n\n## Idea\n\n`smoky` is a CLI-based tool capable of orchestrating simple smoke tests against a running web application.\n\nUsing a configuration file, you can easily configure acceptance smoke tests. The currently supported types are:\n\n- HealthCheck tests: These tests make it possible to check the health of a web application.\n- E2E tests: Leveraging [Playwright for .NET](https://playwright.dev/dotnet/) these tests allow simple E2E tests to be run using a headless browser.\n\n\u003e The basic intent of `smoky` is to perform some smoke tests on a web application during the integration deployment pipeline and get instant feedback on whether the deployment succeeded and the web application is up and running as expected.\n\n## Demo\n\n![Demo](demo.gif)\n\n## Usage\n\n```console\nA simple smoke test tool\n\nUsage: smoky [command] [options]\n\nOptions:\n  -?|-h|--help  Show help information.\n\nCommands:\n  init          Initializes and scaffolds an empty smoky config file (eg. init -n \u003csome-name\u003e).\n  ping          Executes a ping to a domain to test (eg. ping \"https://my-domain.com\").\n  test          Executes the configured test assertions in the config tool (eg. test config.json -d \"https://my-domain.com\").\n\nRun 'smoky [command] -?|-h|--help' for more information about a command.\n```\n\n## Configuration sample\n\n```json\n{\n  \"$schema\": \"smoky-schema.json\",\n  \"Domain\": \"https://localhost:5001\",\n  \"RecordVideoDir\": \"recordings/\",\n  \"Headless\": false,\n  \"Slow\": 200,\n  \"Timeout\": 5000,\n  \"BrowserType\": \"chrome\",\n  \"Tests\": {\n    \"HealthTests\": [\n      {\n        \"Name\": \"System is healthy\",\n        \"Expected\": \"Healthy\",\n        \"PropertyPath\": \"status\",\n        \"Route\": \"health\"\n      },\n      {\n        \"Name\": \"All users seeded\",\n        \"Expected\": \"Healthy\",\n        \"PropertyPath\": \"info[0].status\",\n        \"Route\": \"health\"\n      }\n    ],\n    \"E2ETests\": [\n      {\n        \"Name\": \"Should login\",\n        \"Route\": \"Login\",\n        \"Arrange\": [\n          {\n            \"Step\": \"Should enter username\",\n            \"LocatorType\": \"GetByLabel\",\n            \"Text\": \"Username\",\n            \"Action\": \"Fill\",\n            \"Value\": \"admin\"\n          },\n          {\n            \"Step\": \"Should enter password\",\n            \"LocatorType\": \"GetByLabel\",\n            \"Text\": \"Password\",\n            \"Action\": \"Fill\",\n            \"Value\": \"password\"\n          }\n        ],\n        \"Act\": {\n          \"Step\": \"Should click login\",\n          \"LocatorType\": \"GetByRole\",\n          \"AriaRole\": \"Button\",\n          \"Text\": \"Login\",\n          \"Action\": \"Click\"\n        },\n        \"Assert\": [\n          {\n            \"Step\": \"Should display Logout button\",\n            \"LocatorType\": \"GetByRole\",\n            \"AriaRole\": \"Button\",\n            \"Text\": \"Logout\",\n            \"Action\": \"IsVisible\"\n          }\n        ]\n      },\n      {\n        \"Name\": \"Should display home\",\n        \"Route\": \"\",\n        \"Act\": {\n          \"Step\": \"Should click admin navigation item\",\n          \"LocatorType\": \"GetByRole\",\n          \"AriaRole\": \"Link\",\n          \"Text\": \"Admin\",\n          \"Action\": \"Click\"\n        },\n        \"Assert\": [\n          {\n            \"Step\": \"Should display home page\",\n            \"LocatorType\": \"GetByRole\",\n            \"AriaRole\": \"Heading\",\n            \"Text\": \"Workflows\",\n            \"Action\": \"IsVisible\"\n          }\n        ]\n      },\n      {\n        \"Name\": \"Should display holidays page\",\n        \"Route\": \"\",\n        \"Act\": {\n          \"Step\": \"Should click holiday navigation item\",\n          \"LocatorType\": \"GetByRole\",\n          \"AriaRole\": \"Link\",\n          \"Text\": \"Holiday\",\n          \"Action\": \"Click\"\n        },\n        \"Assert\": [\n          {\n            \"Step\": \"Should display holidays page\",\n            \"LocatorType\": \"GetByRole\",\n            \"AriaRole\": \"Heading\",\n            \"Text\": \"Holidays\",\n            \"Action\": \"IsVisible\"\n          }\n        ]\n      },\n      {\n        \"Name\": \"Should display issues page\",\n        \"Route\": \"\",\n        \"Act\": {\n          \"Step\": \"Should click issue navigation item\",\n          \"LocatorType\": \"GetByRole\",\n          \"AriaRole\": \"Link\",\n          \"Text\": \"Issue\",\n          \"Action\": \"Click\"\n        },\n        \"Assert\": [\n          {\n            \"Step\": \"Should display issues page\",\n            \"LocatorType\": \"GetByRole\",\n            \"AriaRole\": \"Heading\",\n            \"Text\": \"Issues\",\n            \"Action\": \"IsVisible\"\n          }\n        ]\n      },\n      {\n        \"Name\": \"Should display workflows page\",\n        \"Route\": \"\",\n        \"Act\": {\n          \"Step\": \"Should click workflows navigation item\",\n          \"LocatorType\": \"GetByRole\",\n          \"AriaRole\": \"Link\",\n          \"Text\": \"Workflows\",\n          \"Action\": \"Click\"\n        },\n        \"Assert\": [\n          {\n            \"Step\": \"Should display instances page\",\n            \"LocatorType\": \"GetByRole\",\n            \"AriaRole\": \"Heading\",\n            \"Text\": \"Instances\",\n            \"Action\": \"IsVisible\"\n          }\n        ]\n      }\n    ]\n  }\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomasduft%2Fsmoky","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthomasduft%2Fsmoky","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomasduft%2Fsmoky/lists"}