Moved TestImportantURLs to the networking suite #4179

This commit is contained in:
Robert Rati
2015-02-06 10:44:20 -05:00
parent d75d36f3d3
commit 1be4ab2aaa
2 changed files with 20 additions and 56 deletions

View File

@@ -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)))
}
}
})
})