2018-01-26 20:22:03 +03:00
package integration
import (
"net/http"
"os"
"time"
"github.com/go-check/check"
2018-08-29 12:58:03 +03:00
"github.com/gorilla/websocket"
2020-09-16 16:46:04 +03:00
"github.com/traefik/traefik/v2/integration/try"
2018-01-26 20:22:03 +03:00
checker "github.com/vdemeester/shakers"
)
type RetrySuite struct { BaseSuite }
func ( s * RetrySuite ) SetUpSuite ( c * check . C ) {
s . createComposeProject ( c , "retry" )
s . composeProject . Start ( c )
}
func ( s * RetrySuite ) TestRetry ( c * check . C ) {
whoamiEndpoint := s . composeProject . Container ( c , "whoami" ) . NetworkSettings . IPAddress
file := s . adaptFile ( c , "fixtures/retry/simple.toml" , struct {
WhoamiEndpoint string
} { whoamiEndpoint } )
defer os . Remove ( file )
cmd , display := s . traefikCmd ( withConfigFile ( file ) )
defer display ( c )
err := cmd . Start ( )
c . Assert ( err , checker . IsNil )
2020-10-09 10:32:03 +03:00
defer s . killCmd ( cmd )
2018-01-26 20:22:03 +03:00
2019-05-16 11:58:06 +03:00
err = try . GetRequest ( "http://127.0.0.1:8080/api/rawdata" , 60 * time . Second , try . BodyContains ( "PathPrefix(`/`)" ) )
2018-01-26 20:22:03 +03:00
c . Assert ( err , checker . IsNil )
2020-11-05 18:14:04 +03:00
start := time . Now ( )
2018-01-26 20:22:03 +03:00
// This simulates a DialTimeout when connecting to the backend server.
response , err := http . Get ( "http://127.0.0.1:8000/" )
2020-11-05 18:14:04 +03:00
duration , allowed := time . Since ( start ) , time . Millisecond * 250
2018-01-26 20:22:03 +03:00
c . Assert ( err , checker . IsNil )
c . Assert ( response . StatusCode , checker . Equals , http . StatusOK )
2020-11-05 18:14:04 +03:00
c . Assert ( int64 ( duration ) , checker . LessThan , int64 ( allowed ) )
}
func ( s * RetrySuite ) TestRetryBackoff ( c * check . C ) {
whoamiEndpoint := s . composeProject . Container ( c , "whoami" ) . NetworkSettings . IPAddress
file := s . adaptFile ( c , "fixtures/retry/backoff.toml" , struct {
WhoamiEndpoint string
} { whoamiEndpoint } )
defer os . Remove ( file )
cmd , display := s . traefikCmd ( withConfigFile ( file ) )
defer display ( c )
err := cmd . Start ( )
c . Assert ( err , checker . IsNil )
defer s . killCmd ( cmd )
err = try . GetRequest ( "http://127.0.0.1:8080/api/rawdata" , 60 * time . Second , try . BodyContains ( "PathPrefix(`/`)" ) )
c . Assert ( err , checker . IsNil )
start := time . Now ( )
// This simulates a DialTimeout when connecting to the backend server.
response , err := http . Get ( "http://127.0.0.1:8000/" )
duration := time . Since ( start )
// test case delays: 500 + 700 + 1000ms with randomization. It should be safely > 1500ms
minAllowed := time . Millisecond * 1500
c . Assert ( err , checker . IsNil )
c . Assert ( response . StatusCode , checker . Equals , http . StatusOK )
c . Assert ( int64 ( duration ) , checker . GreaterThan , int64 ( minAllowed ) )
2018-01-26 20:22:03 +03:00
}
2018-08-29 12:58:03 +03:00
func ( s * RetrySuite ) TestRetryWebsocket ( c * check . C ) {
whoamiEndpoint := s . composeProject . Container ( c , "whoami" ) . NetworkSettings . IPAddress
file := s . adaptFile ( c , "fixtures/retry/simple.toml" , struct {
WhoamiEndpoint string
} { whoamiEndpoint } )
defer os . Remove ( file )
cmd , display := s . traefikCmd ( withConfigFile ( file ) )
defer display ( c )
err := cmd . Start ( )
c . Assert ( err , checker . IsNil )
2020-10-09 10:32:03 +03:00
defer s . killCmd ( cmd )
2018-08-29 12:58:03 +03:00
2019-05-16 11:58:06 +03:00
err = try . GetRequest ( "http://127.0.0.1:8080/api/rawdata" , 60 * time . Second , try . BodyContains ( "PathPrefix(`/`)" ) )
2018-08-29 12:58:03 +03:00
c . Assert ( err , checker . IsNil )
// This simulates a DialTimeout when connecting to the backend server.
_ , response , err := websocket . DefaultDialer . Dial ( "ws://127.0.0.1:8000/echo" , nil )
c . Assert ( err , checker . IsNil )
c . Assert ( response . StatusCode , checker . Equals , http . StatusSwitchingProtocols )
_ , response , err = websocket . DefaultDialer . Dial ( "ws://127.0.0.1:8000/echo" , nil )
c . Assert ( err , checker . IsNil )
c . Assert ( response . StatusCode , checker . Equals , http . StatusSwitchingProtocols )
}