summaryrefslogtreecommitdiff
path: root/tests/plugins/http/plugin_middleware.go
blob: 9f04d6db356c12a6678e72de0574c85b5f59f324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package http

import (
	"net/http"

	"github.com/spiral/roadrunner/v2/plugins/config"
)

// PluginMiddleware test
type PluginMiddleware struct {
	config config.Configurer
}

// Init test
func (p *PluginMiddleware) Init(cfg config.Configurer) error {
	p.config = cfg
	return nil
}

// Middleware test
func (p *PluginMiddleware) Middleware(next http.Handler) http.Handler {
	return http.HandlerFunc(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)
		}
	})
}

// Name test
func (p *PluginMiddleware) Name() string {
	return "pluginMiddleware"
}

// PluginMiddleware2 test
type PluginMiddleware2 struct {
	config config.Configurer
}

// Init test
func (p *PluginMiddleware2) Init(cfg config.Configurer) error {
	p.config = cfg
	return nil
}

// Middleware test
func (p *PluginMiddleware2) Middleware(next http.Handler) http.Handler {
	return http.HandlerFunc(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)
		}
	})
}

// Name test
func (p *PluginMiddleware2) Name() string {
	return "pluginMiddleware2"
}