-
Notifications
You must be signed in to change notification settings - Fork 627
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hs-test: add http client connect test
Type: test Signed-off-by: Filip Tehlar <[email protected]> Change-Id: If705d311065e128b4b6df7d8d80910e4be72d3e6
- Loading branch information
1 parent
ee4172e
commit b15a000
Showing
5 changed files
with
111 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -823,6 +823,13 @@ M: Fan Zhang <[email protected]> | |
M: Gabriel Oginski <[email protected]> | ||
F: extras/strongswan/vpp_sswan | ||
|
||
Host stack test framework | ||
I: hs-test | ||
M: Florin Coras <[email protected]> | ||
M: Filip Tehlar <[email protected]> | ||
M: Maros Ondrejicka <[email protected]> | ||
F: extras/hs-test | ||
|
||
THE REST | ||
I: misc | ||
M: vpp-dev Mailing List <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package main | ||
|
||
import ( | ||
"strings" | ||
|
||
"github.com/edwarnicke/exechelper" | ||
) | ||
|
||
func (s *NsSuite) TestHttpTps() { | ||
t := s.T() | ||
finished := make(chan error, 1) | ||
server_ip := "10.0.0.2" | ||
port := "8080" | ||
dockerInstance := "http-tps" | ||
|
||
t.Log("starting vpp..") | ||
|
||
err := dockerRun(dockerInstance, "") | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
defer func() { exechelper.Run("docker stop " + dockerInstance) }() | ||
|
||
// start & configure vpp in the container | ||
_, err = hstExec(dockerInstance, dockerInstance) | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
|
||
go startWget(finished, server_ip, port, "client") | ||
// wait for client | ||
err = <-finished | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
} | ||
} | ||
|
||
func (s *Veths2Suite) TestHttpCli() { | ||
t := s.T() | ||
|
||
srvInstance := "http-cli-srv" | ||
clnInstance := "http-cli-cln" | ||
err := dockerRun(srvInstance, "") | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
defer func() { exechelper.Run("docker stop " + srvInstance) }() | ||
|
||
err = dockerRun(clnInstance, "") | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
defer func() { exechelper.Run("docker stop " + clnInstance) }() | ||
|
||
_, err = hstExec("2veths srv", srvInstance) | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
|
||
_, err = hstExec("2veths cln", clnInstance) | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
|
||
t.Log("configured IPs...") | ||
|
||
_, err = hstExec("http-cli-srv", srvInstance) | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
|
||
t.Log("configured http server") | ||
|
||
o, err := hstExec("http-cli-cln /show/version", clnInstance) | ||
if err != nil { | ||
t.Errorf("%v", err) | ||
return | ||
} | ||
|
||
if strings.Index(o, "<html>") < 0 { | ||
t.Error("<html> not found in the result!") | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters