mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-29 10:21:01 -06:00
36d0a50427
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
92 lines
1.5 KiB
Go
92 lines
1.5 KiB
Go
package terraform
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestSemaphore(t *testing.T) {
|
|
s := NewSemaphore(2)
|
|
timer := time.AfterFunc(time.Second, func() {
|
|
panic("deadlock")
|
|
})
|
|
defer timer.Stop()
|
|
|
|
s.Acquire()
|
|
if !s.TryAcquire() {
|
|
t.Fatalf("should acquire")
|
|
}
|
|
if s.TryAcquire() {
|
|
t.Fatalf("should not acquire")
|
|
}
|
|
s.Release()
|
|
s.Release()
|
|
|
|
// This release should panic
|
|
defer func() {
|
|
r := recover()
|
|
if r == nil {
|
|
t.Fatalf("should panic")
|
|
}
|
|
}()
|
|
s.Release()
|
|
}
|
|
|
|
func TestStrSliceContains(t *testing.T) {
|
|
if strSliceContains(nil, "foo") {
|
|
t.Fatalf("Bad")
|
|
}
|
|
if strSliceContains([]string{}, "foo") {
|
|
t.Fatalf("Bad")
|
|
}
|
|
if strSliceContains([]string{"bar"}, "foo") {
|
|
t.Fatalf("Bad")
|
|
}
|
|
if !strSliceContains([]string{"bar", "foo"}, "foo") {
|
|
t.Fatalf("Bad")
|
|
}
|
|
}
|
|
|
|
func TestUniqueStrings(t *testing.T) {
|
|
cases := []struct {
|
|
Input []string
|
|
Expected []string
|
|
}{
|
|
{
|
|
[]string{},
|
|
[]string{},
|
|
},
|
|
{
|
|
[]string{"x"},
|
|
[]string{"x"},
|
|
},
|
|
{
|
|
[]string{"a", "b", "c"},
|
|
[]string{"a", "b", "c"},
|
|
},
|
|
{
|
|
[]string{"a", "a", "a"},
|
|
[]string{"a"},
|
|
},
|
|
{
|
|
[]string{"a", "b", "a", "b", "a", "a"},
|
|
[]string{"a", "b"},
|
|
},
|
|
{
|
|
[]string{"c", "b", "a", "c", "b"},
|
|
[]string{"a", "b", "c"},
|
|
},
|
|
}
|
|
|
|
for i, tc := range cases {
|
|
t.Run(fmt.Sprintf("unique-%d", i), func(t *testing.T) {
|
|
actual := uniqueStrings(tc.Input)
|
|
if !reflect.DeepEqual(tc.Expected, actual) {
|
|
t.Fatalf("Expected: %q\nGot: %q", tc.Expected, actual)
|
|
}
|
|
})
|
|
}
|
|
}
|