summaryrefslogtreecommitdiff
path: root/plugins/http/tests/plugin_middleware.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/http/tests/plugin_middleware.go')
-rw-r--r--plugins/http/tests/plugin_middleware.go61
1 files changed, 0 insertions, 61 deletions
diff --git a/plugins/http/tests/plugin_middleware.go b/plugins/http/tests/plugin_middleware.go
deleted file mode 100644
index 9003c0ad..00000000
--- a/plugins/http/tests/plugin_middleware.go
+++ /dev/null
@@ -1,61 +0,0 @@
-package tests
-
-import (
- "net/http"
-
- "github.com/spiral/roadrunner/v2/interfaces/config"
-)
-
-type PluginMiddleware struct {
- config config.Configurer
-}
-
-func (p *PluginMiddleware) Init(cfg config.Configurer) error {
- p.config = cfg
- return nil
-}
-
-func (p *PluginMiddleware) Middleware(next http.Handler) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- if r.URL.Path == "/halt" {
- w.WriteHeader(500)
- _, err := w.Write([]byte("halted"))
- if err != nil {
- panic("error writing the data to the http reply")
- }
- } else {
- next.ServeHTTP(w, r)
- }
- }
-}
-
-func (p *PluginMiddleware) Name() string {
- return "pluginMiddleware"
-}
-
-type PluginMiddleware2 struct {
- config config.Configurer
-}
-
-func (p *PluginMiddleware2) Init(cfg config.Configurer) error {
- p.config = cfg
- return nil
-}
-
-func (p *PluginMiddleware2) Middleware(next http.Handler) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- if r.URL.Path == "/boom" {
- w.WriteHeader(555)
- _, err := w.Write([]byte("boom"))
- if err != nil {
- panic("error writing the data to the http reply")
- }
- } else {
- next.ServeHTTP(w, r)
- }
- }
-}
-
-func (p *PluginMiddleware2) Name() string {
- return "pluginMiddleware2"
-}