summaryrefslogtreecommitdiff
path: root/tests/plugins/http/parse_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/http/parse_test.go')
-rw-r--r--tests/plugins/http/parse_test.go54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/plugins/http/parse_test.go b/tests/plugins/http/parse_test.go
deleted file mode 100644
index d75620f3..00000000
--- a/tests/plugins/http/parse_test.go
+++ /dev/null
@@ -1,54 +0,0 @@
-package http
-
-import (
- "testing"
-
- handler "github.com/spiral/roadrunner/v2/pkg/worker_handler"
-)
-
-var samples = []struct {
- in string
- out []string
-}{
- {"key", []string{"key"}},
- {"key[subkey]", []string{"key", "subkey"}},
- {"key[subkey]value", []string{"key", "subkey", "value"}},
- {"key[subkey][value]", []string{"key", "subkey", "value"}},
- {"key[subkey][value][]", []string{"key", "subkey", "value", ""}},
- {"key[subkey] [value][]", []string{"key", "subkey", "value", ""}},
- {"key [ subkey ] [ value ] [ ]", []string{"key", "subkey", "value", ""}},
-}
-
-func Test_FetchIndexes(t *testing.T) {
- for i := 0; i < len(samples); i++ {
- r := handler.FetchIndexes(samples[i].in)
- if !same(r, samples[i].out) {
- t.Errorf("got %q, want %q", r, samples[i].out)
- }
- }
-}
-
-func BenchmarkConfig_FetchIndexes(b *testing.B) {
- for _, tt := range samples {
- for n := 0; n < b.N; n++ {
- r := handler.FetchIndexes(tt.in)
- if !same(r, tt.out) {
- b.Fail()
- }
- }
- }
-}
-
-func same(in, out []string) bool {
- if len(in) != len(out) {
- return false
- }
-
- for i, v := range in {
- if v != out[i] {
- return false
- }
- }
-
- return true
-}