hs-test: add http client connect test

Type: test

Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: If705d311065e128b4b6df7d8d80910e4be72d3e6
diff --git a/extras/hs-test/actions.go b/extras/hs-test/actions.go
index 7525085..1f35ee7 100755
--- a/extras/hs-test/actions.go
+++ b/extras/hs-test/actions.go
@@ -31,6 +31,8 @@
 	reg("2veths", Configure2Veths)
 	reg("vcl-test-server", RunVclEchoServer)
 	reg("vcl-test-client", RunVclEchoClient)
+	reg("http-cli-srv", RunHttpCliSrv)
+	reg("http-cli-cln", RunHttpCliCln)
 }
 
 func configureProxyTcp(ifName0, ipAddr0, ifName1, ipAddr1 string) ConfFn {
@@ -51,6 +53,17 @@
 	}
 }
 
+func RunHttpCliSrv(args []string) *ActionResult {
+	cmd := fmt.Sprintf("http cli server")
+	return ApiCliInband("/tmp/2veths", cmd)
+}
+
+func RunHttpCliCln(args []string) *ActionResult {
+	cmd := fmt.Sprintf("http cli client uri http://10.10.10.1/80 query %s", getArgs())
+	fmt.Println(cmd)
+	return ApiCliInband("/tmp/2veths", cmd)
+}
+
 func ConfigureVppProxy(args []string) *ActionResult {
 	ctx, cancel := newVppContext()
 	defer cancel()