mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-05 23:47:50 +00:00
Moved TestImportantURLs to the networking suite #4179
This commit is contained in:
@@ -169,4 +169,24 @@ var _ = Describe("Networking", func() {
|
||||
}
|
||||
Expect(string(body)).To(Equal("pass"))
|
||||
})
|
||||
|
||||
It("should provide unchanging URLs", func() {
|
||||
tests := []struct {
|
||||
path string
|
||||
}{
|
||||
{path: "/validate"},
|
||||
{path: "/healthz"},
|
||||
// TODO: test proxy links here
|
||||
}
|
||||
for _, test := range tests {
|
||||
By(fmt.Sprintf("testing: %s", test.path))
|
||||
data, err := c.RESTClient.Get().
|
||||
AbsPath(test.path).
|
||||
Do().
|
||||
Raw()
|
||||
if err != nil {
|
||||
Fail(fmt.Sprintf("Failed: %v\nBody: %s", err, string(data)))
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user