{"id":27103192,"url":"https://github.com/rafaelrabelodasilva/automacao_catfact_api_robot_framework","last_synced_at":"2026-01-20T05:01:47.565Z","repository":{"id":250967456,"uuid":"835979570","full_name":"rafaelrabelodasilva/automacao_catfact_api_robot_framework","owner":"rafaelrabelodasilva","description":"This project is designed to perform GET method tests on the endpoint https://catfact.ninja/breeds","archived":false,"fork":false,"pushed_at":"2024-07-31T01:10:55.000Z","size":294,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T16:51:01.403Z","etag":null,"topics":["automation","python","robotframework"],"latest_commit_sha":null,"homepage":"https://catfact.ninja/breeds","language":"HTML","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/rafaelrabelodasilva.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":"2024-07-30T23:18:07.000Z","updated_at":"2025-03-16T13:44:55.000Z","dependencies_parsed_at":"2024-07-31T03:59:41.046Z","dependency_job_id":null,"html_url":"https://github.com/rafaelrabelodasilva/automacao_catfact_api_robot_framework","commit_stats":null,"previous_names":["rafaelrabelodasilva/catfact_api","rafaelrabelodasilva/automacao_catfact_api_robot_framework"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rafaelrabelodasilva/automacao_catfact_api_robot_framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rafaelrabelodasilva","download_url":"https://codeload.github.com/rafaelrabelodasilva/automacao_catfact_api_robot_framework/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28596087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":["automation","python","robotframework"],"created_at":"2025-04-06T16:50:00.284Z","updated_at":"2026-01-20T05:01:47.559Z","avatar_url":"https://github.com/rafaelrabelodasilva.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e🧙‍♂️ Cat Facts API Automation with Robot Framework\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e \n    \u003cimg src=\"./public/catfacts_terminal.png\" alt=\"Terminal output\"/\u003e\n    \u003cimg src=\"./public/catfacts_report.png\" alt=\"Test report\"/\u003e\n\u003c/p\u003e\n\n\n## ✨ Technologies\n\nThis project was developed using the following technologies:\n\n- [Robot Framework 6.1.1](https://robotframework.org/)\n- [Python 3.7.4](https://www.python.org/)\n\n\n## 💻 Project\n\nThis project is designed to perform GET method tests on the endpoint `https://catfact.ninja/breeds`. The following test cases have been automated:\n\n- **CT01**: Valid request to GET `/breeds` returns status code 200 and a list of breeds.\n- **CT02**: Request with invalid limit parameter returns status code 400 and an error message.\n- **CT03**: Validate that specifying the limit parameter `1` returns only the first object in the list.\n\n### 📚 Libs\n\n- RequestsLibrary:\n    - What it does: Imports the RequestsLibrary, enabling HTTP requests (such as GET, POST, etc.) and handling responses within Robot Framework tests.\n    - Why it's important: Without this library, it wasn't be able to make HTTP requests to test APIs.\n\n- Collections:\n    - What it does: Imports the Collections library, providing useful functions for manipulating lists and dictionaries within Robot Framework.\n    - Why it's important: It helps manipulate and verify structured data like lists and dictionaries, which are commonly used when testing APIs.\n\n\n## 🚀 How to run\n\n1. Clone this repository.\n\n2. Install [Python 3.7.4](https://www.python.org/downloads/release/python-374/).\n\n3. Install Robot Framework by running the following command in your terminal:\n\n    `pip install robotframework==6.1.1`\n\n4. Install the lib RequestsLibrary: \nThis library is used in the tests. You can install it via pip by running the following command in your terminal:\n\n    `pip install robotframework-requests`\n\n    *Tip*: Collections Library: This is a standard library in Robot Framework, so no additional installation is required.\n\n5. Navigate to the project directory and then to the /tests folder. Run the tests using the following command in your terminal:\n\n    `robot --outputdir test_results get_breeds.robot`\n\n    *Tip*: The `--outputdir test_results` option will place the generated files by Robot Framework into the tests/test_results directory.\n\n\n## 📄 Test results\n\nAfter running the tests, you will find the following files in the test_results directory:\n\n- log.html: Detailed log of the test execution.\n- report.html: Summary report of the test results.\n- output.xml: Machine-readable test results.\n\n\nFeel free to review these files to analyze the test outcomes.\n\n## 📱 Contact\n\nFor more information, please contact me via my [LinkedIn](https://www.linkedin.com/in/rafaelrabelodasilva/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafaelrabelodasilva%2Fautomacao_catfact_api_robot_framework/lists"}