CodeSampleX

Пример

plug 1.20.3: Test a Plug router end to end with Plug.Test, with no HTTP server, no socket and no network

Проверенный пример — hex plug 1.20.3: Test a Plug router end to end with Plug.Test, with no HTTP server, no socket and no network. Контракт выполнен на…

sha256:f7cb5b2f102e81a511f97af235bf61218cafe9e3bac8f599cb824293963da6c0

Эта сеть предлагает одно: образец, который собирается. Она запустила его в песочнице и сохранила подписанную квитанцию. Она ничего не оценивает и ничего не гарантирует — собирается ли тот же код у вас, она не измеряла. Сколько различных ключей подписи подали пройденную квитанцию контракта. Один — только автор; больше одного — значит, кто-то ещё тоже собрал. Ключ создаётся сам и не имеет зарегистрированной личности, поэтому считаются ключи, а не люди. MIT-0

Свидетельства выполнения

Заявленное окружение и подписанные запуски разделены, чтобы вы точно видели, что этот образец запускал и где.

Основа свидетельства
Подписанный контракт пройден
Квитанции проверки
2
Ключи подписи, собравшие его
2
Заявленная среда elixir 1 linux x64 elixir 1 elixir mix

Среды запусков проверки

Окружение Контракт Этапы Запуск
elixir 1 · linux alpine/x64 · docker ed25519:a2ec939a4c60e243 PASS compile:PASS · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · hex@1
2026-08-14
elixir 1 · linux alpine/x64 · docker ed25519:d91480838ac982c9 PASS compile:PASS · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · hex@1
2026-08-18

Кейс

HOW
Цель
Test a Plug router end to end with Plug.Test, with no HTTP server, no socket and no network
Пакеты
Символы
  • Plug.Test.conn
  • Plug.Test.sent_resp
  • Plug.Router
  • Plug.Parsers
  • Plug.Conn.send_resp
  • Plug.Conn.put_resp_content_type
  • Plug.Conn.AlreadySentError
  • Plug.Parsers.UnsupportedMediaTypeError
  • Plug.Conn.Unfetched
Окружение
elixir 1
Создан
2026-08-14T09:41:26Z

Контракт

  1. assert the test conn is an in-process struct with a fabricated loopback peer, and that the deprecated conn.owner field is nil because the owning pid lives in the adapter payload
  2. assert conn.status is nil and conn.state is :unset before the router runs, and 200/:sent after
  3. assert sent_resp reports a sent response and raises for one that resp/3 only staged
  4. assert a route binds its path segment as a variable in the route body
  5. assert an unmatched path is 404 only because match _ exists, and a router without it raises FunctionClauseError
  6. assert the method is part of the match, so a POST to a GET route falls through to 404
  7. assert Plug.Parsers is what turns a JSON body into conn.body_params, and that params merges the query string while body_params does not
  8. assert a top-level JSON array arrives under the _json key
  9. assert that without Plug.Parsers body_params stays Plug.Conn.Unfetched, which raises ArgumentError on a bare conn but reads back as nil through a router because :match overwrites conn.params
  10. assert a content type listed in :pass reaches a route unparsed with body_params still the Unfetched placeholder, while one in neither :parsers nor :pass raises Plug.Parsers.UnsupportedMediaTypeError
  11. assert a map body passed to conn/3 is written straight into body_params as multipart/mixed, skipping the parser entirely, and that read_body returns a placeholder
  12. assert send_resp and put_resp_header raise Plug.Conn.AlreadySentError once the response is sent
  13. assert put_resp_content_type appends charset=utf-8 and stores a lowercase header name that get_resp_header matches exactly

Файлы

  • csx.json
  • lib/csx_plug/raw_router.ex
  • lib/csx_plug/router.ex
  • mix.exs
  • mix.lock
  • test/contract_test.exs
  • test/test_helper.exs

Скачать артефакт с исходным кодом (tar.gz)

Исходный сидер

anonymous