Welcome to the Fern Project, an innovative open-source solution designed to enhance Ginkgo test reports. This project is focused on capturing, storing, and analyzing test data to provide insights into test performance and trends. The Fern Project is ideal for teams using Ginkgo, a popular BDD-style Go testing framework, offering a comprehensive overview of test executions and performance metrics.
Key Features:
- Historical Test Data Tracking: Stores detailed records of tests run against various projects, providing a historical view of testing efforts.
- Latency and Performance Metrics: Captures the time taken for each "It" block in Ginkgo tests, aiding in identifying performance bottlenecks.
- Data-Driven Analytics (To be implemented): Future feature to leverage data for analytics, including identification of frequently failing tests.
- Coverage and Test Evolution Analysis (To be implemented): Planned feature to offer insights into test coverage and the evolution of tests over time.
- Authorized Access to Test Reports (To be implemented): Upcoming feature to ensure secure access to test reports.
To start developing locally first run the below docker compose command:
docker-compose up -d
Then install necessary modules:
go mod tidy
Now run the server with:
go run main.go
GraphiQL should be available at http://localhost:8080.
Fern is a Golang Gin-based API that connects to a PostgreSQL database. It is designed to store metadata about Ginkgo test suites and has two main components:
- API Server: A central server that stores test metadata. It needs to be deployed independently.
- Client Library: Integrated into Ginkgo test suites to send test data to the API server.
- Golang environment.
- Docker for running the PostgreSQL database.
- Install gox for building the binary
go install github.com/mitchellh/gox@latest
- Clone the Fern Repository: Clone the repository to your local machine.
git clone [email protected]:Guidewire/fern-reporter.git
- Start the API Server: Navigate to the project directory and start the server.
cd fern-reporter make docker-run-local
- Refer the client repository to integrate the client to Ginkgo Test Suites: https://github.com/Guidewire/fern-ginkgo-client
- After adding the client, run your Ginkgo tests normally.
- View reports at
http://[your-api-url]/reports/testruns/
. - If using
make docker-run-local
, reports are available athttp://localhost:8080/reports/testruns/
.
To view the test reports using the React-based Fern-UI frontend, follow these steps:
-
Follow the instructions in the Fern-UI repository to set up and run the frontend application.
-
Once the Fern-UI is running, access the dashboard at
http://[frontend-api-url]/testruns
to view the test reports. -
View reports at
http://[your-api-url]/reports/testruns
. -
If using
make docker-run-local
, reports are available athttp://localhost:8080/reports/testruns
.
Reports are also available as JSON at http://[host-url]/api/reports/testruns
.
Thanks to everyone, that is supporting this project. We are thankful, for evey contribution, no matter its size!