{"id":49953512,"url":"https://github.com/pandasoft-zz/glut","last_synced_at":"2026-06-05T23:00:24.061Z","repository":{"id":357209162,"uuid":"1222858252","full_name":"pandasoft-zz/glut","owner":"pandasoft-zz","description":"Gitlab unit test","archived":false,"fork":false,"pushed_at":"2026-05-31T09:13:02.000Z","size":29271,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-31T11:19:31.084Z","etag":null,"topics":["gitlab","pipelines","testing","testing-tool","unit-testing"],"latest_commit_sha":null,"homepage":"https://pandasoft-zz.github.io/glut/","language":"Go","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/pandasoft-zz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-27T19:23:59.000Z","updated_at":"2026-05-31T09:12:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pandasoft-zz/glut","commit_stats":null,"previous_names":["pandasoft-zz/glut"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/pandasoft-zz/glut","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandasoft-zz%2Fglut","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandasoft-zz%2Fglut/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandasoft-zz%2Fglut/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandasoft-zz%2Fglut/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pandasoft-zz","download_url":"https://codeload.github.com/pandasoft-zz/glut/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandasoft-zz%2Fglut/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33962959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"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":["gitlab","pipelines","testing","testing-tool","unit-testing"],"created_at":"2026-05-17T21:11:35.120Z","updated_at":"2026-06-05T23:00:24.029Z","avatar_url":"https://github.com/pandasoft-zz.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"docs/assets/logo.png\" alt=\"GLUT\" width=\"180\"\u003e\n\u003c/p\u003e\n\n# GLUT\n\nGLUT is a CLI tool for testing GitLab CI components on your machine. It runs a\nGitLab CI pipeline with `gitlab-ci-local` and adds isolated git state, a mock\nGitLab API, mock binaries, and structured asserts.\n\nUse GLUT when a component changes git state, calls the GitLab API, or calls\ntools such as `release-cli`. It is useful for image build jobs, manifest update\njobs, and release jobs.\n\n## For Users\n\nThe full manual is on **[GitHub Pages](https://pandasoft-zz.github.io/glut/)**\nand covers everything you need to get started and use GLUT day to day:\n\n- [Installation](https://pandasoft-zz.github.io/glut/getting-started/installation/) — Docker image and native binary\n- [Getting Started](https://pandasoft-zz.github.io/glut/getting-started/) — quickstart and AI skill setup\n- [Test Format](https://pandasoft-zz.github.io/glut/reference/test-format/) — how to write test files\n- [Assert Syntax](https://pandasoft-zz.github.io/glut/reference/assert-syntax/) — all available assertions\n- [Mock API](https://pandasoft-zz.github.io/glut/reference/mock-api/) — mock GitLab API reference\n- [CLI Reference](https://pandasoft-zz.github.io/glut/reference/cli/) — all commands and flags\n- [Examples](https://pandasoft-zz.github.io/glut/examples/) — image build, manifest update, release\n\n## For Developers\n\n### Repository Overview\n\n| Path | Purpose |\n|---|---|\n| `cmd/glut/` | CLI entry point (Cobra, thin handlers) |\n| `internal/parser/` | YAML parsing and schema validation |\n| `internal/runner/` | Test orchestration |\n| `internal/asserter/` | Assert evaluation |\n| `internal/mockserver/` | Mock GitLab API |\n| `schema/` | JSON Schema for the `.glut:` document |\n| `docs/` | MkDocs source (published to GitHub Pages) |\n| `tests/` | GLUT test files |\n| `skill/` | AI skill definition |\n\nArchitecture and package boundary rules are in [docs/architecture.md](docs/architecture.md).\n\n### Dev Container\n\nAll development happens inside the dev container. Open the repository in VS\nCode and choose **Reopen in Container**. The container includes Go, Docker\naccess, and `gitlab-ci-local`.\n\nIf you prefer the CLI:\n\n```bash\ndevcontainer open .\n```\n\n### Common Commands\n\n```bash\nmake build          # build the glut binary\nmake test           # run all tests\nmake test-cover     # run tests with coverage report\nmake lint           # run golangci-lint\nmake docker         # build the Docker image locally\nmake release        # build a snapshot release with goreleaser\n```\n\nDocs are built with MkDocs:\n\n```bash\npip install mkdocs mkdocs-readthedocs\nmkdocs serve        # preview at http://localhost:8000\n```\n\n### Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for how to add mock API endpoints and\nwhere tests belong. Read [AGENTS.md](AGENTS.md) before any implementation work.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpandasoft-zz%2Fglut","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpandasoft-zz%2Fglut","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpandasoft-zz%2Fglut/lists"}