whatismyip/router/setup_test.go

58 lines
1.4 KiB
Go
Raw Normal View History

2021-11-10 19:06:12 +00:00
package router
import (
2025-01-02 19:13:41 +00:00
"context"
2021-11-10 19:06:12 +00:00
"os"
"testing"
2025-01-02 19:13:41 +00:00
"github.com/dcarrillo/whatismyip/service"
2021-11-10 19:06:12 +00:00
"github.com/gin-gonic/gin"
)
type testIPs struct {
ipv4 string
ipv4ASN string
ipv6 string
ipv6ASN string
}
type contentTypes struct {
html string
2021-11-10 19:06:12 +00:00
text string
json string
}
var (
app *gin.Engine
testIP = testIPs{
ipv4: "81.2.69.192",
ipv4ASN: "82.99.17.64",
ipv6: "2a02:9000::1",
ipv6ASN: "2a02:a800::1",
}
contentType = contentTypes{
html: "content-type: text/html; charset=utf-8",
2021-11-10 19:06:12 +00:00
text: "text/plain; charset=utf-8",
json: "application/json; charset=utf-8",
}
2025-01-02 19:13:41 +00:00
jsonIPv4 = `{"client_port":"1001","ip":"81.2.69.192","ip_version":4,"country":"United Kingdom","country_code":"GB","city":"London","latitude":51.5142,"longitude":-0.0931,"time_zone":"Europe/London","host":"test", "headers": {}}`
jsonIPv6 = `{"asn":3352,"asn_organization":"TELEFONICA DE ESPANA","client_port":"1001","host":"test","ip":"2a02:9000::1","ip_version":6,"headers": {}}`
jsonDNSIPv4 = `{"dns":{"ip":"81.2.69.192","country":"United Kingdom"}}`
2024-04-12 17:26:48 +00:00
plainDNSIPv4 = "81.2.69.192 (United Kingdom / )\n"
2021-11-10 19:06:12 +00:00
)
2024-04-12 17:26:48 +00:00
const (
trustedHeader = "X-Real-IP"
trustedPortHeader = "X-Real-Port"
domain = "dns.example.com"
)
2021-11-10 19:06:12 +00:00
func TestMain(m *testing.M) {
app = gin.Default()
app.TrustedPlatform = trustedHeader
2025-01-02 19:13:41 +00:00
svc, _ := service.NewGeo(context.Background(), "../test/GeoIP2-City-Test.mmdb", "../test/GeoLite2-ASN-Test.mmdb")
Setup(app, svc)
2021-11-10 19:06:12 +00:00
os.Exit(m.Run())
}