1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
package file
import (
"bytes"
"io/ioutil"
"os"
"reflect"
"testing"
"github.com/kong/go-kong/kong"
"github.com/stretchr/testify/assert"
)
func Test_ensureJSON(t *testing.T) {
type args struct {
m map[string]interface{}
}
tests := []struct {
name string
args args
want map[string]interface{}
}{
{
"empty array is kept as is",
args{map[string]interface{}{
"foo": []interface{}{},
}},
map[string]interface{}{
"foo": []interface{}{},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ensureJSON(tt.args.m); !reflect.DeepEqual(got, tt.want) {
t.Errorf("ensureJSON() = %v, want %v", got, tt.want)
}
})
}
}
func TestReadKongStateFromStdinFailsToParseText(t *testing.T) {
var filenames = []string{"-"}
assert := assert.New(t)
assert.Equal("-", filenames[0])
var content bytes.Buffer
content.Write([]byte("hunter2\n"))
tmpfile, err := ioutil.TempFile("", "example")
if err != nil {
panic(err)
}
defer os.Remove(tmpfile.Name())
if _, err := tmpfile.Write(content.Bytes()); err != nil {
panic(err)
}
if _, err := tmpfile.Seek(0, 0); err != nil {
panic(err)
}
oldStdin := os.Stdin
defer func() { os.Stdin = oldStdin }() // Restore original Stdin
os.Stdin = tmpfile
c, err := GetContentFromFiles(filenames)
assert.NotNil(err)
assert.Nil(c)
}
func TestReadKongStateFromStdin(t *testing.T) {
var filenames = []string{"-"}
assert := assert.New(t)
assert.Equal("-", filenames[0])
var content bytes.Buffer
content.Write([]byte("services:\n- host: test.com\n name: test service\n"))
tmpfile, err := ioutil.TempFile("", "example")
if err != nil {
panic(err)
}
defer os.Remove(tmpfile.Name())
if _, err := tmpfile.Write(content.Bytes()); err != nil {
panic(err)
}
if _, err := tmpfile.Seek(0, 0); err != nil {
panic(err)
}
oldStdin := os.Stdin
defer func() { os.Stdin = oldStdin }() // Restore original Stdin
os.Stdin = tmpfile
c, err := GetContentFromFiles(filenames)
assert.NotNil(c)
assert.Nil(err)
assert.Equal(kong.Service{
Name: kong.String("test service"),
Host: kong.String("test.com"),
},
c.Services[0].Service)
}
|