url-parser/command/fragment_test.go

38 lines
810 B
Go
Raw Normal View History

2020-09-21 18:24:51 +00:00
package command
2020-02-03 14:00:54 +00:00
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/thegeeklab/url-parser/config"
2020-02-03 14:00:54 +00:00
"github.com/urfave/cli/v2"
"github.com/zenizh/go-capturer"
2020-02-03 14:00:54 +00:00
)
func TestFragment(t *testing.T) {
urlString := "postgres://user:pass@host.com:5432/path/to?key=value&other=other%20value#some-fragment"
tests := []struct {
name string
config *config.Config
expected string
}{
2020-02-03 14:00:54 +00:00
{
name: "get fragment",
config: &config.Config{URL: urlString},
expected: "some-fragment",
2020-02-03 14:00:54 +00:00
},
}
for _, tt := range tests {
2020-02-03 14:00:54 +00:00
app := cli.NewApp()
ctx := cli.NewContext(app, nil, nil)
2020-02-03 14:00:54 +00:00
t.Run(tt.name, func(t *testing.T) {
result := strings.TrimSpace(capturer.CaptureStdout(func() { _ = Fragment(tt.config)(ctx) }))
assert.Equal(t, tt.expected, result)
})
2020-02-03 14:00:54 +00:00
}
}