-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathyandex_test.go
99 lines (93 loc) · 2.53 KB
/
yandex_test.go
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package netemx
import (
"net/http"
"net/http/httptest"
"net/url"
"testing"
)
func TestYandexHandler(t *testing.T) {
t.Run("we're redirected if the host is xn--d1acpjx3f.xn--p1ai", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "xn--d1acpjx3f.xn--p1ai",
}
rr := httptest.NewRecorder()
handler := YandexHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusPermanentRedirect {
t.Fatal("unexpected status code", result.StatusCode)
}
if loc := result.Header.Get("Location"); loc != "https://yandex.com/" {
t.Fatal("unexpected location", loc)
}
})
t.Run("we're redirected if the host is yandex.com", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "yandex.com",
}
rr := httptest.NewRecorder()
handler := YandexHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusPermanentRedirect {
t.Fatal("unexpected status code", result.StatusCode)
}
if loc := result.Header.Get("Location"); loc != "https://ya.ru/" {
t.Fatal("unexpected location", loc)
}
})
t.Run("we correctly handle the presence of a port", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "yandex.com:80",
}
rr := httptest.NewRecorder()
handler := YandexHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusPermanentRedirect {
t.Fatal("unexpected status code", result.StatusCode)
}
if loc := result.Header.Get("Location"); loc != "https://ya.ru/" {
t.Fatal("unexpected location", loc)
}
})
t.Run("we get 200 for ya.ru", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "ya.ru",
}
rr := httptest.NewRecorder()
handler := YandexHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusOK {
t.Fatal("unexpected status code", result.StatusCode)
}
})
t.Run("we get a 400 for an unknown host", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "antani.xyz",
}
rr := httptest.NewRecorder()
handler := YandexHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusBadRequest {
t.Fatal("unexpected status code", result.StatusCode)
}
})
}