tests: extract deadlock checking test helper
This commit is contained in:
parent
9cd88810f4
commit
7a464b1156
|
@ -9,7 +9,6 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestContext2Plan(t *testing.T) {
|
func TestContext2Plan(t *testing.T) {
|
||||||
|
@ -176,16 +175,11 @@ func TestContext2Plan_moduleCycle(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestContext2Plan_moduleDeadlock(t *testing.T) {
|
func TestContext2Plan_moduleDeadlock(t *testing.T) {
|
||||||
m := testModule(t, "plan-module-deadlock")
|
testCheckDeadlock(t, func() {
|
||||||
p := testProvider("aws")
|
m := testModule(t, "plan-module-deadlock")
|
||||||
p.DiffFn = testDiffFn
|
p := testProvider("aws")
|
||||||
timeout := make(chan bool, 1)
|
p.DiffFn = testDiffFn
|
||||||
done := make(chan bool, 1)
|
|
||||||
go func() {
|
|
||||||
time.Sleep(3 * time.Second)
|
|
||||||
timeout <- true
|
|
||||||
}()
|
|
||||||
go func() {
|
|
||||||
ctx := testContext2(t, &ContextOpts{
|
ctx := testContext2(t, &ContextOpts{
|
||||||
Module: m,
|
Module: m,
|
||||||
Providers: map[string]ResourceProviderFactory{
|
Providers: map[string]ResourceProviderFactory{
|
||||||
|
@ -194,7 +188,6 @@ func TestContext2Plan_moduleDeadlock(t *testing.T) {
|
||||||
})
|
})
|
||||||
|
|
||||||
plan, err := ctx.Plan()
|
plan, err := ctx.Plan()
|
||||||
done <- true
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("err: %s", err)
|
t.Fatalf("err: %s", err)
|
||||||
}
|
}
|
||||||
|
@ -215,14 +208,7 @@ STATE:
|
||||||
if actual != expected {
|
if actual != expected {
|
||||||
t.Fatalf("expected:\n%sgot:\n%s", expected, actual)
|
t.Fatalf("expected:\n%sgot:\n%s", expected, actual)
|
||||||
}
|
}
|
||||||
}()
|
})
|
||||||
|
|
||||||
select {
|
|
||||||
case <-timeout:
|
|
||||||
t.Fatalf("timed out! probably deadlock")
|
|
||||||
case <-done:
|
|
||||||
// ok
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestContext2Plan_moduleInput(t *testing.T) {
|
func TestContext2Plan_moduleInput(t *testing.T) {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
func testContext2(t *testing.T, opts *ContextOpts) *Context {
|
func testContext2(t *testing.T, opts *ContextOpts) *Context {
|
||||||
|
@ -170,6 +171,27 @@ func resourceState(resourceType, resourceID string) *ResourceState {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Test helper that gives a function 3 seconds to finish, assumes deadlock and
|
||||||
|
// fails test if it does not.
|
||||||
|
func testCheckDeadlock(t *testing.T, f func()) {
|
||||||
|
timeout := make(chan bool, 1)
|
||||||
|
done := make(chan bool, 1)
|
||||||
|
go func() {
|
||||||
|
time.Sleep(3 * time.Second)
|
||||||
|
timeout <- true
|
||||||
|
}()
|
||||||
|
go func(f func(), done chan bool) {
|
||||||
|
defer func() { done <- true }()
|
||||||
|
f()
|
||||||
|
}(f, done)
|
||||||
|
select {
|
||||||
|
case <-timeout:
|
||||||
|
t.Fatalf("timed out! probably deadlock")
|
||||||
|
case <-done:
|
||||||
|
// ok
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const testContextGraph = `
|
const testContextGraph = `
|
||||||
root: root
|
root: root
|
||||||
aws_instance.bar
|
aws_instance.bar
|
||||||
|
|
Loading…
Reference in New Issue