spiegel_podman/vendor/github.com/onsi/ginkgo/v2
Paul Holzinger a269f098cd
update github.com/onsi/{ginkgo,gomega}
Update to gomega v1.34.2 and ginkgo v2.20.2, now that we use go 1.22 we
can update them.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2024-09-03 18:26:18 +02:00
..
config update to ginkgo v2 2023-05-02 11:27:35 +02:00
formatter update to ginkgo v2 2023-05-02 11:27:35 +02:00
ginkgo fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.1 2024-07-26 19:48:09 +00:00
internal fix(deps): update module github.com/onsi/ginkgo/v2 to v2.18.0 2024-05-22 02:14:25 +00:00
reporters fix(deps): update module github.com/onsi/ginkgo/v2 to v2.18.0 2024-05-22 02:14:25 +00:00
types update github.com/onsi/{ginkgo,gomega} 2024-09-03 18:26:18 +02:00
.gitignore fix(deps): update module github.com/onsi/ginkgo/v2 to v2.9.4 2023-05-03 22:33:15 +00:00
CHANGELOG.md update github.com/onsi/{ginkgo,gomega} 2024-09-03 18:26:18 +02:00
CONTRIBUTING.md fix(deps): update module github.com/onsi/ginkgo/v2 to v2.18.0 2024-05-22 02:14:25 +00:00
core_dsl.go fix(deps): update github.com/containers/common digest to bc5f97c 2024-03-21 00:25:22 +00:00
decorator_dsl.go update to ginkgo v2 2023-05-02 11:27:35 +02:00
deprecated_dsl.go update to ginkgo v2 2023-05-02 11:27:35 +02:00
ginkgo_cli_dependencies.go update to ginkgo v2 2023-05-02 11:27:35 +02:00
ginkgo_t_dsl.go Update module github.com/onsi/gomega to v1.31.1 2024-01-20 12:39:16 +00:00
LICENSE update to ginkgo v2 2023-05-02 11:27:35 +02:00
Makefile Update module github.com/onsi/ginkgo/v2 to v2.20.0 2024-08-08 12:10:24 +00:00
README.md Update module github.com/onsi/ginkgo/v2 to v2.12.0 2023-08-23 23:41:24 +00:00
RELEASING.md update to ginkgo v2 2023-05-02 11:27:35 +02:00
reporting_dsl.go fix(deps): update github.com/containers/libhvee digest to 7cee23c 2024-03-06 01:34:54 +00:00
table_dsl.go fix(deps): update module github.com/onsi/ginkgo/v2 to v2.18.0 2024-05-22 02:14:25 +00:00

Ginkgo

test | Ginkgo Docs


Ginkgo

Ginkgo is a mature testing framework for Go designed to help you write expressive specs. Ginkgo builds on top of Go's testing foundation and is complemented by the Gomega matcher library. Together, Ginkgo and Gomega let you express the intent behind your specs clearly:

import (
    . "github.com/onsi/ginkgo/v2"
    . "github.com/onsi/gomega"
    ...
)

var _ = Describe("Checking books out of the library", Label("library"), func() {
    var library *libraries.Library
    var book *books.Book
    var valjean *users.User
    BeforeEach(func() {
        library = libraries.NewClient()
        book = &books.Book{
            Title: "Les Miserables",
            Author: "Victor Hugo",
        }
        valjean = users.NewUser("Jean Valjean")
    })

    When("the library has the book in question", func() {
        BeforeEach(func(ctx SpecContext) {
            Expect(library.Store(ctx, book)).To(Succeed())
        })

        Context("and the book is available", func() {
            It("lends it to the reader", func(ctx SpecContext) {
                Expect(valjean.Checkout(ctx, library, "Les Miserables")).To(Succeed())
                Expect(valjean.Books()).To(ContainElement(book))
                Expect(library.UserWithBook(ctx, book)).To(Equal(valjean))
            }, SpecTimeout(time.Second * 5))
        })

        Context("but the book has already been checked out", func() {
            var javert *users.User
            BeforeEach(func(ctx SpecContext) {
                javert = users.NewUser("Javert")
                Expect(javert.Checkout(ctx, library, "Les Miserables")).To(Succeed())
            })

            It("tells the user", func(ctx SpecContext) {
                err := valjean.Checkout(ctx, library, "Les Miserables")
                Expect(err).To(MatchError("Les Miserables is currently checked out"))
            }, SpecTimeout(time.Second * 5))

            It("lets the user place a hold and get notified later", func(ctx SpecContext) {
                Expect(valjean.Hold(ctx, library, "Les Miserables")).To(Succeed())
                Expect(valjean.Holds(ctx)).To(ContainElement(book))

                By("when Javert returns the book")
                Expect(javert.Return(ctx, library, book)).To(Succeed())

                By("it eventually informs Valjean")
                notification := "Les Miserables is ready for pick up"
                Eventually(ctx, valjean.Notifications).Should(ContainElement(notification))

                Expect(valjean.Checkout(ctx, library, "Les Miserables")).To(Succeed())
                Expect(valjean.Books(ctx)).To(ContainElement(book))
                Expect(valjean.Holds(ctx)).To(BeEmpty())
            }, SpecTimeout(time.Second * 10))
        })  
    })

    When("the library does not have the book in question", func() {
        It("tells the reader the book is unavailable", func(ctx SpecContext) {
            err := valjean.Checkout(ctx, library, "Les Miserables")
            Expect(err).To(MatchError("Les Miserables is not in the library catalog"))
        }, SpecTimeout(time.Second * 5))
    })
})

Jump to the docs to learn more. It's easy to bootstrap and start writing your first specs.

If you have a question, comment, bug report, feature request, etc. please open a GitHub issue, or visit the Ginkgo Slack channel.

Capabilities

Whether writing basic unit specs, complex integration specs, or even performance specs - Ginkgo gives you an expressive Domain-Specific Language (DSL) that will be familiar to users coming from frameworks such as Quick, RSpec, Jasmine, and Busted. This style of testing is sometimes referred to as "Behavior-Driven Development" (BDD) though Ginkgo's utility extends beyond acceptance-level testing.

With Ginkgo's DSL you can use nestable Describe, Context and When container nodes to help you organize your specs. BeforeEach and AfterEach setup nodes for setup and cleanup. It and Specify subject nodes that hold your assertions. BeforeSuite and AfterSuite nodes to prep for and cleanup after a suite... and much more!.

At runtime, Ginkgo can run your specs in reproducibly random order and has sophisticated support for spec parallelization. In fact, running specs in parallel is as easy as

ginkgo -p

By following established patterns for writing parallel specs you can build even large, complex integration suites that parallelize cleanly and run performantly. And you don't have to worry about your spec suite hanging or leaving a mess behind - Ginkgo provides a per-node context.Context and the capability to interrupt the spec after a set period of time - and then clean up.

As your suites grow Ginkgo helps you keep your specs organized with labels and lets you easily run subsets of specs, either programmatically or on the command line. And Ginkgo's reporting infrastructure generates machine-readable output in a variety of formats and allows you to build your own custom reporting infrastructure.

Ginkgo ships with ginkgo, a command line tool with support for generating, running, filtering, and profiling Ginkgo suites. You can even have Ginkgo automatically run your specs when it detects a change with ginkgo watch, enabling rapid feedback loops during test-driven development.

And that's just Ginkgo! Gomega brings a rich, mature, family of assertions and matchers to your suites. With Gomega you can easily mix synchronous and asynchronous assertions in your specs. You can even build your own set of expressive domain-specific matchers quickly and easily by composing Gomega's existing building blocks.

Happy Testing!

License

Ginkgo is MIT-Licensed

Contributing

See CONTRIBUTING.md