{"id":28505278,"url":"https://github.com/sporniket/shellestial","last_synced_at":"2026-05-02T05:04:19.687Z","repository":{"id":91394834,"uuid":"104166721","full_name":"sporniket/shellestial","owner":"sporniket","description":"Shellestial Test Runner is a collection of bash shell scripts that help write test suites using bash.","archived":false,"fork":false,"pushed_at":"2017-09-21T04:19:13.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-22T15:47:12.988Z","etag":null,"topics":["bash","framework","test-framework","test-runner","testing-framework","unit-testing"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sporniket.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2017-09-20T04:44:55.000Z","updated_at":"2019-02-27T02:53:49.000Z","dependencies_parsed_at":"2023-03-05T18:45:31.966Z","dependency_job_id":null,"html_url":"https://github.com/sporniket/shellestial","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sporniket/shellestial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporniket%2Fshellestial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporniket%2Fshellestial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporniket%2Fshellestial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporniket%2Fshellestial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sporniket","download_url":"https://codeload.github.com/sporniket/shellestial/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporniket%2Fshellestial/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32523428,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bash","framework","test-framework","test-runner","testing-framework","unit-testing"],"created_at":"2025-06-08T19:07:03.381Z","updated_at":"2026-05-02T05:04:19.682Z","avatar_url":"https://github.com/sporniket.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Shellestial Test Runner\n\n\u003e [WARNING] Please read carefully this note before using this project. It contains important information.\n\nContent\n\n1. What is **Shellestial Test Runner**, and when to use it ?\n2. What should you know before using **Shellestial Test Runner** ?\n3. How to use **Shellestial Test Runner** ?\n4. Known issues\n5. Miscellanous\n\n## 1. What is **Shellestial Test Runner**, and when to use it ?\n**Shellestial Test Runner** is a collection of bash shell scripts that help write test suites using bash.\n\n### Shellestial Test Runner in action\n\n![Shellestial Test Runner started by ant](https://github.com/sporniket/shellestial/wiki/shellestial-demo-1-running.png)\n\n![Shellestial Test Runner summary report](https://github.com/sporniket/shellestial/wiki/shellestial-demo-2-summary-report.png)\n\n### What's in v1.0.0\n\n* The test runner scripts.\n\n### Roadmap\n\nThe following features are planned :\n\n* an installable set of commands (shell scripts) to bootstrap a test suite collection and run it.\n* a build procedure to get a debian package to install **Shellestial Test Runner** on any debian system.\n\n### Licence\n **Shellestial Test Runner** is free software: you can redistribute it and/or modify it under the terms of the\n GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n\n **Shellestial Test Runner** is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for\n more details.\n\n You should have received a copy of the GNU Lesser General Public License along with **Shellestial Test Runner**.\n If not, see http://www.gnu.org/licenses/ .\n\n\n## 2. What should you know before using **Shellestial Test Runner** ?\n**Shellestial Test Runner** has been writen on a Ubuntu 16.04 LTS system, and thus may unknowingly rely on specificities.\n\n\u003e Do not use **Shellestial Test Runner** if this project is not suitable for your project.\n\n## 3. How to use **Shellestial Test Runner** ?\n\n### Manually bootstrap a standalone test suite collection in your project\nTo get the latest available code, one must clone the git repository, build and install the command.\n\n\tgit clone https://github.com/sporniket/shellestial.git\n\tcd shellestial\n\nIn your project folder, create a ```test/suiteXxx/data``` folder, with ```Xxx``` the name of your first test suite.\n\n  mkdir -p test/suiteXxx/data\n\nThen copy from shellestial folder :\n* ```standalone/run``` into ```test```\n* ```standalone/describe``` into ```test/suiteXxx```\n\nIn the ```suiteXxx``` folder, each test are writen in a bash script with a filename starting with ```test```, e.g. ```testParameterIdIsMandatory```.\n\nAdd new test suites by creating a folder with a name starting with ```suite```, e.g. ```suiteAuthentication```\n\n### Run a test suite of a standalone test\nInvoke the run script. It is not required to be in the test folder to invoke the script.\n\n## 4. Known issues\nSee the [project issues](https://github.com/sporniket/shellestial/issues) page.\n\n## 5. Miscellanous\n### Report issues\nUse the [project issues](https://github.com/sporniket/shellestial/issues) page\n\nPlease report the step to reproduce an issue, the linux distribution and the bash version, at least.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsporniket%2Fshellestial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsporniket%2Fshellestial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsporniket%2Fshellestial/lists"}