mirror of https://github.com/jlelse/GoBlog
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.2 KiB
Go
98 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Test_proxyTiles(t *testing.T) {
|
|
app := &goBlog{
|
|
cfg: &config{},
|
|
}
|
|
|
|
hc := newFakeHttpClient()
|
|
hc.setHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
_, _ = w.Write([]byte("Hello, World!"))
|
|
}))
|
|
app.httpClient = hc.Client
|
|
|
|
// Default tile source
|
|
|
|
m := chi.NewMux()
|
|
m.Get("/-/tiles/{s}/{z}/{x}/{y}.png", app.proxyTiles())
|
|
|
|
req, err := http.NewRequestWithContext(context.Background(), http.MethodGet, "https://example.org/-/tiles/c/8/134/84.png", nil)
|
|
require.NoError(t, err)
|
|
resp, err := doHandlerRequest(req, m)
|
|
require.NoError(t, err)
|
|
_ = resp.Body.Close()
|
|
|
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
|
assert.Equal(t, "https://c.tile.openstreetmap.org/8/134/84.png", hc.req.URL.String())
|
|
|
|
// Custom tile source
|
|
|
|
app.cfg.MapTiles = &configMapTiles{
|
|
Source: "https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png",
|
|
}
|
|
|
|
m = chi.NewMux()
|
|
m.Get("/-/tiles/{s}/{z}/{x}/{y}.png", app.proxyTiles())
|
|
|
|
req, err = http.NewRequestWithContext(context.Background(), http.MethodGet, "https://example.org/-/tiles/c/8/134/84.png", nil)
|
|
require.NoError(t, err)
|
|
resp, err = doHandlerRequest(req, m)
|
|
require.NoError(t, err)
|
|
_ = resp.Body.Close()
|
|
|
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
|
assert.Equal(t, "https://c.tile.opentopomap.org/8/134/84.png", hc.req.URL.String())
|
|
}
|
|
|
|
func Test_getMinZoom(t *testing.T) {
|
|
app := &goBlog{
|
|
cfg: &config{},
|
|
}
|
|
|
|
assert.Equal(t, 0, app.getMinZoom())
|
|
|
|
app.cfg.MapTiles = &configMapTiles{
|
|
MinZoom: 1,
|
|
}
|
|
|
|
assert.Equal(t, 1, app.getMinZoom())
|
|
}
|
|
|
|
func Test_getMaxZoom(t *testing.T) {
|
|
app := &goBlog{
|
|
cfg: &config{},
|
|
}
|
|
|
|
assert.Equal(t, 20, app.getMaxZoom())
|
|
|
|
app.cfg.MapTiles = &configMapTiles{
|
|
MaxZoom: 10,
|
|
}
|
|
|
|
assert.Equal(t, 10, app.getMaxZoom())
|
|
}
|
|
|
|
func Test_getMapAttribution(t *testing.T) {
|
|
app := &goBlog{
|
|
cfg: &config{},
|
|
}
|
|
|
|
assert.Equal(t, `© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors`, app.getMapAttribution())
|
|
|
|
app.cfg.MapTiles = &configMapTiles{
|
|
Attribution: "attribution",
|
|
}
|
|
|
|
assert.Equal(t, "attribution", app.getMapAttribution())
|
|
}
|