{"id":19725644,"url":"https://github.com/xdev-software/tci-base","last_synced_at":"2025-04-30T00:31:29.415Z","repository":{"id":237231906,"uuid":"794011164","full_name":"xdev-software/tci-base","owner":"xdev-software","description":"XDEV's TestContainers Infrastructure (TCI) Framework Basis","archived":false,"fork":false,"pushed_at":"2025-04-28T04:16:34.000Z","size":1772,"stargazers_count":5,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-04-28T04:25:40.616Z","etag":null,"topics":["tci","testcontainers","xdev"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xdev-software.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-04-30T09:36:53.000Z","updated_at":"2025-04-28T03:19:27.000Z","dependencies_parsed_at":"2024-05-12T03:24:02.291Z","dependency_job_id":"99fedc16-c09f-46ee-b2ae-be78b7f9e668","html_url":"https://github.com/xdev-software/tci-base","commit_stats":null,"previous_names":["xdev-software/tci-base"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Ftci-base","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Ftci-base/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Ftci-base/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Ftci-base/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xdev-software","download_url":"https://codeload.github.com/xdev-software/tci-base/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251607745,"owners_count":21616832,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["tci","testcontainers","xdev"],"created_at":"2024-11-11T23:32:06.205Z","updated_at":"2025-04-30T00:31:29.407Z","avatar_url":"https://github.com/xdev-software.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Latest version](https://img.shields.io/maven-central/v/software.xdev/tci-base?logo=apache%20maven)](https://mvnrepository.com/artifact/software.xdev/tci-base)\n[![Build](https://img.shields.io/github/actions/workflow/status/xdev-software/tci-base/check-build.yml?branch=develop)](https://github.com/xdev-software/tci-base/actions/workflows/check-build.yml?query=branch%3Adevelop)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=xdev-software_tci-base\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=xdev-software_tci-base)\n[![javadoc](https://javadoc.io/badge2/software.xdev/tci-base/javadoc.svg)](https://javadoc.io/doc/software.xdev/tci-base) \n\n# \u003cimg src=\"./assets/logo.svg\" height=28 \u003e Testcontainers Infrastructure (TCI) Framework Base\n\nBasis Module for XDEV's Testcontainer Infrastructure Framework\n\n## Features\n| Feature | Why? | Demo |\n| --- | --- | --- |\n| Easily create infrastructure using TCI\u003csup\u003e[JD](https://javadoc.io/doc/software.xdev/tci-base/latest/software/xdev/tci/TCI.html)\u003c/sup\u003e (TestContainer Infrastructure) templating + Factories for that | Makes writing and designing tests easier | [here](./tci-base-demo/src/test/java/software/xdev/tci/dummyinfra/) |\n| [PreStarting mechanism](./tci-base/src/main/java/software/xdev/tci/factory/prestart/)\u003csup\u003e[JD](https://javadoc.io/doc/software.xdev/tci-base/latest/software/xdev/tci/factory/prestart/PreStartableTCIFactory.html)\u003c/sup\u003e for [additional performance](./PERFORMANCE.md) | Tries to run tests as fast as possible - with a few trade-offs | [here](./tci-base-demo/src/test/java/software/xdev/tci/factory/prestart/) |\n| All started containers have a unique human-readable name | Easier identification when tracing or debugging | [here](./tci-base-demo/src/test/java/software/xdev/tci/safestart/) |\n| An optimized [implementation of Network](./tci-base/src/main/java/software/xdev/tci/network/)\u003csup\u003e[JD](https://javadoc.io/doc/software.xdev/tci-base/latest/software/xdev/tci/network/LazyNetwork.html)\u003c/sup\u003e | Addresses various problems of the original implementation to speed up tests | [here](./tci-base-demo/src/test/java/software/xdev/tci/network/) |\n| [Safe starting of named containers](./tci-base/src/main/java/software/xdev/tci/safestart/)\u003csup\u003e[JD](https://javadoc.io/doc/software.xdev/tci-base/latest/software/xdev/tci/safestart/SafeNamedContainerStarter.html)\u003c/sup\u003e | Ensures that a container doesn't enter a crash loop during retried startups | [here](./tci-base-demo/src/test/java/software/xdev/tci/safestart/) |\n| [Container Leak detection](./tci-base/src/main/java/software/xdev/tci/leakdetection/)¹ | Prevents you from running out of resources | [here](./tci-base-demo/src/test/java/software/xdev/tci/leak/) |\n| [Tracing](./tci-base/src/main/java/software/xdev/tci/tracing/)¹ | Makes finding bottlenecks and similar problems easier | |\n\n¹ = Active by default due to service loading\n\n## Usage\nTake a look at the [minimalistic demo](./tci-base-demo/) that showcases the components individually.\n\nYou may also checkout the [advanced demo](./tci-advanced-demo/) - a reference implementation of all features in a realistic project - to get a better feeling how this can be done.\n\n\u003e [!TIP]\n\u003e More detailed documentation is usually available in the corresponding [JavaDocs](https://javadoc.io/doc/software.xdev/tci-base).\n\n## Installation\n[Installation guide for the latest release](https://github.com/xdev-software/tci-base/releases/latest#Installation)\n\n## Support\nIf you need support as soon as possible and you can't wait for any pull request, feel free to use [our support](https://xdev.software/en/services/support).\n\n## Contributing\nSee the [contributing guide](./CONTRIBUTING.md) for detailed instructions on how to get started with our project.\n\n## Dependencies and Licenses\nView the [license of the current project](LICENSE) or the [summary including all dependencies](https://xdev-software.github.io/tci-base/dependencies)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdev-software%2Ftci-base","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxdev-software%2Ftci-base","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdev-software%2Ftci-base/lists"}