Kaynağa Gözat

formatting the code

tags/v0.9.9
Maksim Pechnikov 5 yıl önce
ebeveyn
işleme
dd8aee332c
6 değiştirilmiş dosya ile 57 ekleme ve 16 silme
  1. +4
    -0
      lib/pleroma/http/connection.ex
  2. +4
    -1
      lib/pleroma/http/http.ex
  3. +1
    -0
      test/formatter_test.exs
  4. +45
    -15
      test/support/http_request_mock.ex
  5. +2
    -0
      test/web/activity_pub/activity_pub_controller_test.exs
  6. +1
    -0
      test/web/activity_pub/transmogrifier_test.exs

+ 4
- 0
lib/pleroma/http/connection.ex Dosyayı Görüntüle

@@ -1,4 +1,8 @@
defmodule Pleroma.HTTP.Connection do
@moduledoc """
Connection for http-requests.
"""

@hackney_options [pool: :default]
@adapter Application.get_env(:tesla, :adapter)



+ 4
- 1
lib/pleroma/http/http.ex Dosyayı Görüntüle

@@ -1,8 +1,10 @@
defmodule Pleroma.HTTP do
require HTTPoison
alias Pleroma.HTTP.Connection
alias Pleroma.HTTP.RequestBuilder, as: Builder

@doc """
Builds and perform http request.
"""
def request(method, url, body \\ "", headers \\ [], options \\ []) do
options =
process_request_options(options)
@@ -19,6 +21,7 @@ defmodule Pleroma.HTTP do
end

defp process_sni_options(options, nil), do: options

defp process_sni_options(options, url) do
uri = URI.parse(url)
host = uri.host |> to_charlist()


+ 1
- 0
test/formatter_test.exs Dosyayı Görüntüle

@@ -4,6 +4,7 @@ defmodule Pleroma.FormatterTest do
use Pleroma.DataCase

import Pleroma.Factory

setup_all do
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
:ok


+ 45
- 15
test/support/http_request_mock.ex Dosyayı Görüntüle

@@ -14,7 +14,7 @@ defmodule HttpRequestMock do
res
else
{_, r} = error ->
#Logger.warn(r)
# Logger.warn(r)
error
end
end
@@ -27,13 +27,17 @@ defmodule HttpRequestMock do
{:ok,
%Tesla.Env{
status: 200,
body: File.read!(
"test/fixtures/httpoison_mock/https___osada.macgirvin.com_channel_mike.json"
)
body:
File.read!("test/fixtures/httpoison_mock/https___osada.macgirvin.com_channel_mike.json")
}}
end

def get("https://osada.macgirvin.com/.well-known/webfinger?resource=acct:mike@osada.macgirvin.com", _, _, [Accept: "application/xrd+xml,application/jrd+json"]) do
def get(
"https://osada.macgirvin.com/.well-known/webfinger?resource=acct:mike@osada.macgirvin.com",
_,
_,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
%Tesla.Env{
status: 200,
@@ -41,8 +45,12 @@ defmodule HttpRequestMock do
}}
end

def get("https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/29191",
_, _, [Accept: "application/xrd+xml,application/jrd+json"]) do
def get(
"https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/29191",
_,
_,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
%Tesla.Env{
status: 200,
@@ -58,8 +66,12 @@ defmodule HttpRequestMock do
}}
end

def get("https://pawoo.net/.well-known/webfinger?resource=acct:https://pawoo.net/users/pekorino",
_, _, [Accept: "application/xrd+xml,application/jrd+json"]) do
def get(
"https://pawoo.net/.well-known/webfinger?resource=acct:https://pawoo.net/users/pekorino",
_,
_,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
%Tesla.Env{
status: 200,
@@ -67,7 +79,12 @@ defmodule HttpRequestMock do
}}
end

def get("https://social.stopwatchingus-heidelberg.de/api/statuses/user_timeline/18330.atom", _, _, _) do
def get(
"https://social.stopwatchingus-heidelberg.de/api/statuses/user_timeline/18330.atom",
_,
_,
_
) do
{:ok,
%Tesla.Env{
status: 200,
@@ -75,8 +92,12 @@ defmodule HttpRequestMock do
}}
end

def get("https://social.stopwatchingus-heidelberg.de/.well-known/webfinger?resource=acct:https://social.stopwatchingus-heidelberg.de/user/18330",
_, _, [Accept: "application/xrd+xml,application/jrd+json"]) do
def get(
"https://social.stopwatchingus-heidelberg.de/.well-known/webfinger?resource=acct:https://social.stopwatchingus-heidelberg.de/user/18330",
_,
_,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
%Tesla.Env{
status: 200,
@@ -92,8 +113,12 @@ defmodule HttpRequestMock do
}}
end

def get("https://mamot.fr/.well-known/webfinger?resource=acct:https://mamot.fr/users/Skruyb",
_, _, [Accept: "application/xrd+xml,application/jrd+json"]) do
def get(
"https://mamot.fr/.well-known/webfinger?resource=acct:https://mamot.fr/users/Skruyb",
_,
_,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
%Tesla.Env{
status: 200,
@@ -101,7 +126,12 @@ defmodule HttpRequestMock do
}}
end

def get("https://social.heldscal.la/.well-known/webfinger?resource=nonexistant@social.heldscal.la", _, _, [Accept: "application/xrd+xml,application/jrd+json"]) do
def get(
"https://social.heldscal.la/.well-known/webfinger?resource=nonexistant@social.heldscal.la",
_,
_,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
%Tesla.Env{
status: 200,


+ 2
- 0
test/web/activity_pub/activity_pub_controller_test.exs Dosyayı Görüntüle

@@ -4,10 +4,12 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubControllerTest do
alias Pleroma.Web.ActivityPub.{UserView, ObjectView}
alias Pleroma.{Repo, User}
alias Pleroma.Activity

setup_all do
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
:ok
end

describe "/relay" do
test "with the relay active, it returns the relay user", %{conn: conn} do
res =


+ 1
- 0
test/web/activity_pub/transmogrifier_test.exs Dosyayı Görüntüle

@@ -11,6 +11,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do

import Pleroma.Factory
alias Pleroma.Web.CommonAPI

setup_all do
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
:ok


Yükleniyor…
İptal
Kaydet