forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurl_test.go
39 lines (33 loc) · 1.21 KB
/
url_test.go
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
package util_test
import (
. "code.cloudfoundry.org/cli/util"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
)
var _ = Describe("util", func() {
DescribeTable("URL's",
func(path string, isHTTPScheme bool) {
Expect(IsHTTPScheme(path)).To(Equal(isHTTPScheme))
},
Entry("proper HTTP URL", "http://example.com", true),
Entry("proper HTTPS URL", "https://example.com", true),
Entry("not proper HTTP URL", "http//example.com", false),
Entry("proper FTP URL", "ftp://example.com", false),
Entry("local file name", "some-path", false),
Entry("UNIX path", "/some/path", false),
Entry("Windows path", `C:\some\path`, false),
)
DescribeTable("IsUnsupportedScheme",
func(path string, isUnsupportedScheme bool) {
Expect(IsUnsupportedURLScheme(path)).To(Equal(isUnsupportedScheme))
},
Entry("proper HTTP URL", "http://example.com", false),
Entry("proper HTTPS URL", "https://example.com", false),
Entry("not proper HTTP URL", "http//example.com", false),
Entry("proper FTP URL", "ftp://example.com", true),
Entry("local file name", "some-path", false),
Entry("UNIX path", "/some/path", false),
Entry("Windows path", `C:\some\path`, false),
)
})