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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
package file
import (
"bytes"
"fmt"
"io"
"os"
"sync"
"testing"
"github.com/kong/deck/state"
"github.com/kong/go-kong/kong"
"github.com/stretchr/testify/assert"
)
func captureOutput(f func()) string {
reader, writer, err := os.Pipe()
if err != nil {
panic(err)
}
stdout := os.Stdout
stderr := os.Stderr
defer func() {
os.Stdout = stdout
os.Stderr = stderr
}()
os.Stdout = writer
os.Stderr = writer
out := make(chan string)
wg := new(sync.WaitGroup)
wg.Add(1)
go func() {
var buf bytes.Buffer
wg.Done()
io.Copy(&buf, reader)
out <- buf.String()
}()
wg.Wait()
f()
writer.Close()
return <-out
}
func TestWriteKongStateToStdoutEmptyState(t *testing.T) {
var ks, _ = state.NewKongState()
var filename = "-"
assert := assert.New(t)
assert.Equal("-", filename)
assert.NotEmpty(t, ks)
// YAML
output := captureOutput(func() {
KongStateToFile(ks, WriteConfig{
Workspace: "foo",
Filename: filename,
FileFormat: YAML,
})
})
assert.Equal("_format_version: \"1.1\"\n_workspace: foo\n", output)
// JSON
output = captureOutput(func() {
KongStateToFile(ks, WriteConfig{
Workspace: "foo",
Filename: filename,
FileFormat: JSON,
})
})
expected := `{
"_format_version": "1.1",
"_workspace": "foo"
}`
assert.Equal(expected, output)
}
func TestWriteKongStateToStdoutStateWithOneService(t *testing.T) {
var ks, _ = state.NewKongState()
var filename = "-"
assert := assert.New(t)
var service state.Service
service.ID = kong.String("first")
service.Host = kong.String("example.com")
service.Name = kong.String("my-service")
ks.Services.Add(service)
// YAML
output := captureOutput(func() {
KongStateToFile(ks, WriteConfig{
Filename: filename,
FileFormat: YAML,
})
})
expected := fmt.Sprintf("_format_version: \"1.1\"\nservices:\n- host: %s\n name: %s\n", *service.Host, *service.Name)
assert.Equal(expected, output)
// JSON
output = captureOutput(func() {
KongStateToFile(ks, WriteConfig{
Workspace: "foo",
Filename: filename,
FileFormat: JSON,
})
})
expected = `{
"_format_version": "1.1",
"_workspace": "foo",
"services": [
{
"host": "example.com",
"name": "my-service"
}
]
}`
assert.Equal(expected, output)
}
func TestWriteKongStateToStdoutStateWithOneServiceOneRoute(t *testing.T) {
var ks, _ = state.NewKongState()
var filename = "-"
assert := assert.New(t)
var service state.Service
service.ID = kong.String("first")
service.Host = kong.String("example.com")
service.Name = kong.String("my-service")
ks.Services.Add(service)
var route state.Route
route.Name = kong.String("my-route")
route.ID = kong.String("first")
route.Hosts = kong.StringSlice("example.com", "demo.example.com")
route.Service = &kong.Service{
ID: kong.String(*service.ID),
Name: kong.String(*service.Name),
}
ks.Routes.Add(route)
// YAML
output := captureOutput(func() {
KongStateToFile(ks, WriteConfig{
Filename: filename,
FileFormat: YAML,
})
})
expected := fmt.Sprintf(`_format_version: "1.1"
services:
- host: %s
name: %s
routes:
- hosts:
- %s
- %s
name: %s
`, *service.Host, *service.Name, *route.Hosts[0], *route.Hosts[1], *route.Name)
assert.Equal(expected, output)
// JSON
output = captureOutput(func() {
KongStateToFile(ks, WriteConfig{
Workspace: "foo",
Filename: filename,
FileFormat: JSON,
})
})
expected = `{
"_format_version": "1.1",
"_workspace": "foo",
"services": [
{
"host": "example.com",
"name": "my-service",
"routes": [
{
"hosts": [
"example.com",
"demo.example.com"
],
"name": "my-route"
}
]
}
]
}`
assert.Equal(expected, output)
}
func Test_addExtToFilename(t *testing.T) {
type args struct {
filename string
format string
}
tests := []struct {
name string
args args
want string
}{
{
args: args{
filename: "foo",
format: "yolo",
},
want: "foo.yolo",
},
{
args: args{
filename: "foo.json",
format: "yolo",
},
want: "foo.json",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := addExtToFilename(tt.args.filename, tt.args.format); got != tt.want {
t.Errorf("addExtToFilename() = %v, want %v", got, tt.want)
}
})
}
}
|