blob: e576e4a832d9fd365db68bec5df2f721a4bf9406 [file] [log] [blame]
Filip Tehlarb15a0002022-11-10 12:34:17 +01001package main
2
Filip Tehlarc204c872022-12-21 08:59:16 +01003import (
Filip Tehlar8df3de42023-01-27 13:14:34 +01004 "fmt"
Filip Tehlarc204c872022-12-21 08:59:16 +01005 "os"
Filip Tehlar58113562023-04-15 20:41:18 +02006 "strings"
Filip Tehlarc204c872022-12-21 08:59:16 +01007)
8
Filip Tehlarb15a0002022-11-10 12:34:17 +01009func (s *NsSuite) TestHttpTps() {
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010010 iface := s.netInterfaces[clientInterface]
Maros Ondrejickae7625d02023-02-28 16:55:01 +010011 client_ip := iface.ip4AddressString()
Filip Tehlarb15a0002022-11-10 12:34:17 +010012 port := "8080"
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010013 finished := make(chan error, 1)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010014
15 container := s.getContainerByName("vpp")
Filip Tehlarb15a0002022-11-10 12:34:17 +010016
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010017 // configure vpp in the container
18 container.vppInstance.vppctl("http tps uri tcp://0.0.0.0/8080")
Filip Tehlarb15a0002022-11-10 12:34:17 +010019
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010020 go startWget(finished, client_ip, port, "test_file_10M", "client")
Filip Tehlarb15a0002022-11-10 12:34:17 +010021 // wait for client
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010022 err := <-finished
Maros Ondrejicka98a91e82022-12-06 15:38:05 +010023 s.assertNil(err)
Filip Tehlarb15a0002022-11-10 12:34:17 +010024}
25
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010026func (s *VethsSuite) TestHttpCli() {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010027 serverContainer := s.getContainerByName("server-vpp")
28 clientContainer := s.getContainerByName("client-vpp")
Filip Tehlarb15a0002022-11-10 12:34:17 +010029
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010030 serverVeth := s.netInterfaces[serverInterfaceName]
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010031
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010032 serverContainer.vppInstance.vppctl("http cli server")
Filip Tehlarb15a0002022-11-10 12:34:17 +010033
Maros Ondrejickae7625d02023-02-28 16:55:01 +010034 uri := "http://" + serverVeth.ip4AddressString() + "/80"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010035
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010036 o := clientContainer.vppInstance.vppctl("http cli client" +
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010037 " uri " + uri + " query /show/version")
Filip Tehlarb15a0002022-11-10 12:34:17 +010038
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010039 s.log(o)
Maros Ondrejicka98a91e82022-12-06 15:38:05 +010040 s.assertContains(o, "<html>", "<html> not found in the result!")
Filip Tehlarb15a0002022-11-10 12:34:17 +010041}
Filip Tehlarc204c872022-12-21 08:59:16 +010042
Maros Ondrejickaad406072023-02-24 14:16:25 +010043func (s *NoTopoSuite) TestNginxAsServer() {
Filip Tehlarc204c872022-12-21 08:59:16 +010044 query := "return_ok"
45 finished := make(chan error, 1)
Filip Tehlarc204c872022-12-21 08:59:16 +010046
47 nginxCont := s.getContainerByName("nginx")
48 s.assertNil(nginxCont.run())
49
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010050 vpp := s.getContainerByName("vpp").vppInstance
Florin Corase2415f72023-02-28 14:51:03 -080051 vpp.waitForApp("nginx-", 5)
Filip Tehlarc204c872022-12-21 08:59:16 +010052
Maros Ondrejickae7625d02023-02-28 16:55:01 +010053 serverAddress := s.netInterfaces[tapInterfaceName].peer.ip4AddressString()
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010054
Filip Tehlarc204c872022-12-21 08:59:16 +010055 defer func() { os.Remove(query) }()
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010056 go startWget(finished, serverAddress, "80", query, "")
Filip Tehlarc204c872022-12-21 08:59:16 +010057 s.assertNil(<-finished)
58}
Filip Tehlar8df3de42023-01-27 13:14:34 +010059
Filip Tehlar58113562023-04-15 20:41:18 +020060func parseString(s, pattern string) string {
61 temp := strings.Split(s, "\n")
62 for _, item := range temp {
63 if strings.Contains(item, pattern) {
64 return item
65 }
66 }
67 return ""
68}
69
Filip Tehlar8df3de42023-01-27 13:14:34 +010070func runNginxPerf(s *NoTopoSuite, mode, ab_or_wrk string) error {
71 nRequests := 1000000
Filip Tehlardda1f682023-04-24 17:52:50 +020072 nClients := 1000
Filip Tehlar8df3de42023-01-27 13:14:34 +010073
Maros Ondrejickae7625d02023-02-28 16:55:01 +010074 serverAddress := s.netInterfaces[tapInterfaceName].peer.ip4AddressString()
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010075
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010076 vpp := s.getContainerByName("vpp").vppInstance
Filip Tehlar8df3de42023-01-27 13:14:34 +010077
78 nginxCont := s.getContainerByName("nginx")
79 s.assertNil(nginxCont.run())
Florin Corase2415f72023-02-28 14:51:03 -080080 vpp.waitForApp("nginx-", 5)
Filip Tehlar8df3de42023-01-27 13:14:34 +010081
Filip Tehlarb41b0af2023-03-20 12:39:20 +010082 if ab_or_wrk == "ab" {
83 abCont := s.getContainerByName("ab")
84 args := fmt.Sprintf("-n %d -c %d", nRequests, nClients)
85 if mode == "rps" {
86 args += " -k"
87 } else if mode != "cps" {
88 return fmt.Errorf("invalid mode %s; expected cps/rps", mode)
89 }
Filip Tehlardda1f682023-04-24 17:52:50 +020090 // don't exit on socket receive errors
91 args += " -r"
Filip Tehlarb41b0af2023-03-20 12:39:20 +010092 args += " http://" + serverAddress + ":80/64B.json"
93 abCont.extraRunningArgs = args
94 o, err := abCont.combinedOutput()
Filip Tehlar58113562023-04-15 20:41:18 +020095 rps := parseString(o, "Requests per second:")
96 s.log(rps, err)
Filip Tehlarb41b0af2023-03-20 12:39:20 +010097 s.assertNil(err)
98 } else {
99 wrkCont := s.getContainerByName("wrk")
100 args := fmt.Sprintf("-c %d -t 2 -d 30 http://%s:80/64B.json", nClients,
101 serverAddress)
102 wrkCont.extraRunningArgs = args
103 o, err := wrkCont.combinedOutput()
Filip Tehlar58113562023-04-15 20:41:18 +0200104 rps := parseString(o, "requests")
105 s.log(rps, err)
Filip Tehlarb41b0af2023-03-20 12:39:20 +0100106 s.assertNil(err)
107 }
Filip Tehlar8df3de42023-01-27 13:14:34 +0100108 return nil
109}
110
111func (s *NoTopoSuite) TestNginxPerfCps() {
112 s.assertNil(runNginxPerf(s, "cps", "ab"))
113}
114
115func (s *NoTopoSuite) TestNginxPerfRps() {
116 s.assertNil(runNginxPerf(s, "rps", "ab"))
117}
118
119func (s *NoTopoSuite) TestNginxPerfWrk() {
120 s.assertNil(runNginxPerf(s, "", "wrk"))
121}