Skip to content

Commit

Permalink
Fix table entry context edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed May 21, 2024
1 parent 9e234ea commit 42013d6
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 62 deletions.
145 changes: 85 additions & 60 deletions internal/internal_integration/interrupt_and_timeout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package internal_integration_test

import (
"context"
"strconv"
"sync"
"time"

Expand Down Expand Up @@ -1013,71 +1014,95 @@ var _ = Describe("Interrupts and Timeouts", func() {
})

Describe("passing contexts to TableEntries", func() {
var times *TimeMap
BeforeEach(func() {
times = NewTimeMap()
Describe("the happy path", func() {
var times *TimeMap
BeforeEach(func() {
times = NewTimeMap()

success, _ := RunFixture(CurrentSpecReport().LeafNodeText, func() {
Context("container", func() {
DescribeTable("timeout table",
func(c SpecContext, d context.Context, key string) {
key = d.Value("key").(string) + key
rt.Run(CurrentSpecReport().LeafNodeText)
t := time.Now()
<-c.Done()
times.Set(key, time.Since(t))
},
func(d context.Context, key string) string {
key = d.Value("key").(string) + key
return key
},
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "1", NodeTimeout(time.Millisecond)*100),
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "2", SpecTimeout(time.Millisecond)*150),
)

DescribeTable("timeout table",
func(c context.Context, key string) {
rt.Run(CurrentSpecReport().LeafNodeText)
t := time.Now()
<-c.Done()
times.Set(key, time.Since(t))
},
func(key string) string {
return key
},
Entry(nil, "entry-3", NodeTimeout(time.Millisecond)*100),
Entry(nil, "entry-4", SpecTimeout(time.Millisecond)*150),
)

DescribeTable("timeout table",
func(c context.Context, key string) {
key = c.Value("key").(string) + key
rt.Run(CurrentSpecReport().LeafNodeText + "-" + key)
},
func(d context.Context, key string) string {
key = d.Value("key").(string) + key
return key
},
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "5"),
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "6"),
)
success, _ := RunFixture(CurrentSpecReport().LeafNodeText, func() {
Context("container", func() {
DescribeTable("timeout table",
func(c SpecContext, d context.Context, key string) {
key = d.Value("key").(string) + key
rt.Run(CurrentSpecReport().LeafNodeText)
t := time.Now()
<-c.Done()
times.Set(key, time.Since(t))
},
func(d context.Context, key string) string {
key = d.Value("key").(string) + key
return key
},
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "1", NodeTimeout(time.Millisecond)*100),
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "2", SpecTimeout(time.Millisecond)*150),
)

DescribeTable("timeout table",
func(c context.Context, key string) {
rt.Run(CurrentSpecReport().LeafNodeText)
t := time.Now()
<-c.Done()
times.Set(key, time.Since(t))
},
func(key string) string {
return key
},
Entry(nil, "entry-3", NodeTimeout(time.Millisecond)*100),
Entry(nil, "entry-4", SpecTimeout(time.Millisecond)*150),
)

DescribeTable("timeout table",
func(c context.Context, key string) {
key = c.Value("key").(string) + key
rt.Run(CurrentSpecReport().LeafNodeText + "-" + key)
},
func(d context.Context, key string) string {
key = d.Value("key").(string) + key
return key
},
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "5"),
Entry(nil, context.WithValue(context.Background(), "key", "entry-"), "6"),
)
})
})
Ω(success).Should(Equal(false))
})

It("should work", func() {
Ω(rt).Should(HaveTracked("entry-1", "entry-2", "entry-3", "entry-4", "entry-5-entry-5", "entry-6-entry-6"))
Ω(reporter.Did.Find("entry-1")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-2")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-3")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-4")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-1").Failure.ProgressReport.CurrentNodeType).Should(Equal(types.NodeTypeIt))

Ω(times.Get("entry-1")).Should(BeNumerically("~", 100*time.Millisecond, 50*time.Millisecond))
Ω(times.Get("entry-2")).Should(BeNumerically("~", 150*time.Millisecond, 50*time.Millisecond))
Ω(times.Get("entry-3")).Should(BeNumerically("~", 100*time.Millisecond, 50*time.Millisecond))
Ω(times.Get("entry-4")).Should(BeNumerically("~", 150*time.Millisecond, 50*time.Millisecond))
})
Ω(success).Should(Equal(false))
})

It("should work", func() {
Ω(rt).Should(HaveTracked("entry-1", "entry-2", "entry-3", "entry-4", "entry-5-entry-5", "entry-6-entry-6"))
Ω(reporter.Did.Find("entry-1")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-2")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-3")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-4")).Should(HaveTimedOut())
Ω(reporter.Did.Find("entry-1").Failure.ProgressReport.CurrentNodeType).Should(Equal(types.NodeTypeIt))

Ω(times.Get("entry-1")).Should(BeNumerically("~", 100*time.Millisecond, 50*time.Millisecond))
Ω(times.Get("entry-2")).Should(BeNumerically("~", 150*time.Millisecond, 50*time.Millisecond))
Ω(times.Get("entry-3")).Should(BeNumerically("~", 100*time.Millisecond, 50*time.Millisecond))
Ω(times.Get("entry-4")).Should(BeNumerically("~", 150*time.Millisecond, 50*time.Millisecond))
Describe("the edge case in #1415", func() {
var four = 4
var nSix = -6
DescribeTable("it supports receiving a SpecContext and works with nil parameters", func(ctx context.Context, num *int, s string, cVal string) {
Ω(ctx).ShouldNot(BeNil())
if num == nil {
Ω(s).Should(Equal("nil"))
} else {
Ω(s).Should(Equal(strconv.Itoa(*num)))
}
if cVal != "" {
Ω(ctx.Value("key")).Should(Equal(cVal))
}
},
Entry("4", &four, "4", ""),
Entry("-6", &nSix, "-6", ""),
Entry("nil", nil, "nil", ""),
Entry("4 with context value", context.WithValue(context.Background(), "key", "val"), &four, "4", "val"),
Entry("nil with context value", context.WithValue(context.Background(), "key", "val"), nil, "nil", "val"),
)
})
})
})
1 change: 1 addition & 0 deletions internal/internal_integration/table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ var _ = Describe("Table driven tests", func() {
Ω(b).Should(Equal(c[1]))
Ω(c[2]).Should(BeNil())
}, Entry("variadic arguments", 1, "one", 1, "one", nil))

})

Describe("when table entries are marked pending", func() {
Expand Down
8 changes: 6 additions & 2 deletions