{"id":19656205,"url":"https://github.com/daggerok/testcontainers-selenide-remote","last_synced_at":"2026-04-15T19:39:41.099Z","repository":{"id":151042155,"uuid":"394379229","full_name":"daggerok/testcontainers-selenide-remote","owner":"daggerok","description":"This project demonstrates how to test REST API microservices using spring-boot, feign client, spring-bot-test and rest-assured. Also this project demonstrates how to test web application UIs using TestContainers, selenide with Kotlin and maven","archived":false,"fork":false,"pushed_at":"2021-08-10T21:38:23.000Z","size":1090,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-27T02:19:37.171Z","etag":null,"topics":["fabric8-maven-plugin","feign","feign-client","kotlin","markdown-it","maven","maven-docker","maven-docker-compose-plugin","maven-docker-plugin","nginx-docker","nginx-proxy","nginx-reverse-proxy","selenide","selenium-webdriver","spring-boot","spring-mvc","spring-test","testcontainers","vuepress-code-snippet-enhanced","wiremock"],"latest_commit_sha":null,"homepage":"https://daggerok.github.io/testcontainers-selenide-remote/","language":"Kotlin","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/daggerok.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}},"created_at":"2021-08-09T17:19:29.000Z","updated_at":"2023-04-15T15:11:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"4f07f1b1-65fe-4f1f-99f7-81b22f7ad7c3","html_url":"https://github.com/daggerok/testcontainers-selenide-remote","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/daggerok/testcontainers-selenide-remote","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Ftestcontainers-selenide-remote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Ftestcontainers-selenide-remote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Ftestcontainers-selenide-remote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Ftestcontainers-selenide-remote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daggerok","download_url":"https://codeload.github.com/daggerok/testcontainers-selenide-remote/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Ftestcontainers-selenide-remote/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31857616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: 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":["fabric8-maven-plugin","feign","feign-client","kotlin","markdown-it","maven","maven-docker","maven-docker-compose-plugin","maven-docker-plugin","nginx-docker","nginx-proxy","nginx-reverse-proxy","selenide","selenium-webdriver","spring-boot","spring-mvc","spring-test","testcontainers","vuepress-code-snippet-enhanced","wiremock"],"created_at":"2024-11-11T15:27:01.830Z","updated_at":"2026-04-15T19:39:41.079Z","avatar_url":"https://github.com/daggerok.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Testing UI and microservices [![CI](https://github.com/daggerok/testcontainers-selenide-remote/actions/workflows/ci.yaml/badge.svg)](https://github.com/daggerok/testcontainers-selenide-remote/actions/workflows/ci.yaml)\n\nThis project demonstrates how to test REST API microservices using spring-boot, feign client, spring-bot-test, WireMock\nand rest-assured. Also current project demonstrates how to test web application UIs using TestContainers, selenide with\nKotlin and maven\n\n## Development\n\n### Testing / Documentation\n\n```bash\n./mvnw clean package\nopen greeting/greeting-service/target/docs/\n```\n\n### Integration testing using docker and docker-compose\n\n```bash\n./mvnw -DskipTests docker:remove clean package docker:build\n./mvnw -f infrastructure/docker-compose docker-compose:up\n```\n\nThen test _nginx-reverse-proxy_:\n\n```bash\nhttp :/\nhttp :/greet\nhttp :/greeting-service/api/v1/greetings/greet name=Maksim\n```\n\n_cleanup_:\n\n```bash\n./mvnw docker-compose:down\n./mvnw docker:remove\ndocker rm -f -v `docker ps -aq`\ndocker rmi -f `docker images -q -f dangling=true`\n```\n\n### End-to-end testing using testcontainers, kotlin, selenide and spring-boot-test\n\n```bash\nrm -rf ~/.m2/repository/example\n./mvnw clean install # run all non-e2e test and install required deps locally...\n./mvnw -f webapp test -P e2e # run e2e tests only...\n```\n\n_cleanup_:\n\n```bash\n./mvnw docker-compose:down\n./mvnw docker:remove\ndocker rm -f -v `docker ps -aq`\n./mvnw clean\ndocker rmi -f `docker images -q -f dangling=true`\nrm -rf ~/.m2/repository/example\n```\n\n## RTFM\n\n* https://github.com/selenide-examples/testcontainers/blob/master/src/test/java/org/selenide/examples/DownloadTestWithDockerAndProxy.java\n* https://www.testcontainers.org/features/networking/#exposing-host-ports-to-the-container\n* https://testcontainers.slack.com/archives/C1SUBPZK6/p1628065705024900\n* https://medium.com/javarevisited/configuration-properties-with-kotlin-10fe6176f4f1\n* https://auth0.com/blog/beating-json-performance-with-protobuf/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Ftestcontainers-selenide-remote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaggerok%2Ftestcontainers-selenide-remote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Ftestcontainers-selenide-remote/lists"}