| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package client
- import (
- "errors"
- "io"
- "net"
- "net/http"
- "net/http/httptest"
- "testing"
- "time"
- "miniflux.app/v2/internal/config"
- "miniflux.app/v2/internal/version"
- )
- func TestNewClientWithoutBlockingPrivateNetworks(t *testing.T) {
- server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusOK)
- }))
- defer server.Close()
- client := NewClientWithOptions(Options{Timeout: 5 * time.Second})
- resp, err := client.Get(server.URL)
- if err != nil {
- t.Fatalf("Expected no error, got %v", err)
- }
- defer resp.Body.Close()
- if resp.StatusCode != http.StatusOK {
- t.Fatalf("Expected status 200, got %d", resp.StatusCode)
- }
- }
- func TestBlockPrivateNetworksBlocksLoopback(t *testing.T) {
- server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusOK)
- }))
- defer server.Close()
- client := NewClientWithOptions(Options{Timeout: 5 * time.Second, BlockPrivateNetworks: true})
- _, err := client.Get(server.URL)
- if err == nil {
- t.Fatal("Expected an error when connecting to loopback address, got nil")
- }
- if !errors.Is(err, ErrPrivateNetwork) {
- t.Fatalf("Expected ErrPrivateNetwork, got %v", err)
- }
- }
- func TestBlockPrivateNetworksAllowsPublicIPs(t *testing.T) {
- client := NewClientWithOptions(Options{Timeout: 5 * time.Second, BlockPrivateNetworks: true})
- if client == nil {
- t.Fatal("Expected non-nil client")
- }
- transport, ok := client.Transport.(*http.Transport)
- if !ok {
- t.Fatal("Expected custom http.Transport when blockPrivateNetworks is true")
- }
- if transport.DialContext == nil {
- t.Fatal("Expected custom DialContext when blockPrivateNetworks is true")
- }
- }
- func TestNoCustomTransportWhenNotBlocking(t *testing.T) {
- client := NewClientWithOptions(Options{Timeout: 5 * time.Second})
- if client.Transport != nil {
- t.Fatal("Expected nil transport when blockPrivateNetworks is false")
- }
- }
- func TestBlockPrivateNetworksBlocksPrivateIP(t *testing.T) {
- listener, err := net.Listen("tcp", "127.0.0.1:0")
- if err != nil {
- t.Fatalf("Failed to create listener: %v", err)
- }
- defer listener.Close()
- server := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusOK)
- }))
- server.Listener = listener
- server.Start()
- defer server.Close()
- client := NewClientWithOptions(Options{Timeout: 5 * time.Second, BlockPrivateNetworks: true})
- _, err = client.Get(server.URL)
- if err == nil {
- t.Fatal("Expected error when connecting to private IP")
- }
- if !errors.Is(err, ErrPrivateNetwork) {
- t.Fatalf("Expected ErrPrivateNetwork, got: %v", err)
- }
- }
- func TestBlockPrivateNetworksAllowsLoopbackWhenDisabled(t *testing.T) {
- server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusOK)
- }))
- defer server.Close()
- client := NewClientWithOptions(Options{Timeout: 5 * time.Second})
- resp, err := client.Get(server.URL)
- if err != nil {
- t.Fatalf("Expected no error when blockPrivateNetworks is false, got %v", err)
- }
- defer resp.Body.Close()
- if resp.StatusCode != http.StatusOK {
- t.Fatalf("Expected status 200, got %d", resp.StatusCode)
- }
- }
- func TestRequestBuilderWithJSON(t *testing.T) {
- configureIntegrationAllowPrivateNetworksOption(t)
- var gotMethod, gotContentType, gotUserAgent, gotAuth, gotBody string
- server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- gotMethod = r.Method
- gotContentType = r.Header.Get("Content-Type")
- gotUserAgent = r.Header.Get("User-Agent")
- gotAuth = r.Header.Get("Authorization")
- body, _ := io.ReadAll(r.Body)
- gotBody = string(body)
- w.WriteHeader(http.StatusCreated)
- }))
- defer server.Close()
- response, err := NewRequestBuilder(server.URL).
- WithMethod(http.MethodPost).
- WithHeader("Authorization", "Bearer secret").
- WithJSON(map[string]string{"hello": "world"}).
- Do()
- if err != nil {
- t.Fatalf("request execution failed: %v", err)
- }
- defer response.Body.Close()
- if response.StatusCode != http.StatusCreated {
- t.Errorf("expected status %d, got %d", http.StatusCreated, response.StatusCode)
- }
- if gotMethod != http.MethodPost {
- t.Errorf("expected method POST, got %s", gotMethod)
- }
- if gotContentType != "application/json" {
- t.Errorf("expected Content-Type application/json, got %q", gotContentType)
- }
- if want := "Miniflux/" + version.Version; gotUserAgent != want {
- t.Errorf("expected User-Agent %q, got %q", want, gotUserAgent)
- }
- if gotAuth != "Bearer secret" {
- t.Errorf("expected Authorization %q, got %q", "Bearer secret", gotAuth)
- }
- if gotBody != `{"hello":"world"}` {
- t.Errorf("expected body %q, got %q", `{"hello":"world"}`, gotBody)
- }
- }
- func TestRequestBuilderWithInvalidEndpoint(t *testing.T) {
- _, err := NewRequestBuilder("://invalid").WithMethod(http.MethodPost).WithJSON(nil).Do()
- if err == nil {
- t.Fatal("expected an error for an invalid endpoint, got nil")
- }
- }
- func configureIntegrationAllowPrivateNetworksOption(t *testing.T) {
- t.Helper()
- t.Setenv("INTEGRATION_ALLOW_PRIVATE_NETWORKS", "1")
- configParser := config.NewConfigParser()
- parsedOptions, err := configParser.ParseEnvironmentVariables()
- if err != nil {
- t.Fatalf("Unable to configure test options: %v", err)
- }
- previousOptions := config.Opts
- config.Opts = parsedOptions
- t.Cleanup(func() {
- config.Opts = previousOptions
- })
- }
|