ExUnit을 활용한 단위 테스트
내장 ExUnit 프레임워크를 사용해 Elixir 모듈과 함수에 대한 빠르고 안정적인 단위 테스트를 작성합니다.
ExUnit을 활용한 단위 테스트은(는) CoddyKit의 무료 Elixir & Phoenix: Scalable Backend Development 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Elixir & Phoenix: Scalable Backend Development 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Elixir & Phoenix: Scalable Backend Development 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
Intro to ExUnit
Welcome to unit testing with ExUnit! ExUnit is Elixir's built-in testing framework, designed to help you write reliable and maintainable code.
Unit tests focus on small, isolated parts of your code, like individual functions or modules. They ensure each component works as expected, giving you confidence as your application grows.
Your First ExUnit Test
Elixir test files typically end with _test.exs and are placed in a test/ directory. Inside, you use ExUnit.Case to bring in testing functionalities.
A test block starts with test "description" do ... end. Here's a simple example:
defmodule MyMath do
def add(a, b), do: a + b
end
defmodule MyMathTest do
use ExUnit.Case, async: true
test "adds two numbers correctly" do
assert MyMath.add(1, 2) == 3
end
endAsserting with `assert`
The most common assertion in ExUnit is assert. It checks if an expression evaluates to a truthy value (anything other than false or nil).
You often use it to compare expected outcomes with actual results.
defmodule Calculator do
def multiply(a, b), do: a * b
end
defmodule CalculatorTest do
use ExUnit.Case, async: true
test "multiplies positive numbers" do
assert Calculator.multiply(2, 3) == 6
end
test "multiplies by zero" do
assert Calculator.multiply(5, 0) == 0
end
endRefuting with `refute`
Sometimes, you want to ensure something is not true. That's where refute comes in. It's the opposite of assert.
refute passes if its argument evaluates to a falsy value (false or nil).
defmodule Validator do
def is_negative(num), do: num < 0
end
defmodule ValidatorTest do
use ExUnit.Case, async: true
test "refutes positive numbers as negative" do
refute Validator.is_negative(10)
refute Validator.is_negative(0)
end
test "asserts negative numbers" do
assert Validator.is_negative(-5)
end
endTesting for Exceptions
What if your function is supposed to raise an error under specific conditions? assert_raise lets you test for that!
You provide the expected exception type and an optional message, along with a function that should trigger the error.
defmodule Divider do
def divide(a, b) do
if b == 0, do: raise(ArgumentError, "Cannot divide by zero"), else: a / b
end
end
defmodule DividerTest do
use ExUnit.Case, async: true
test "raises ArgumentError for division by zero" do
assert_raise ArgumentError, "Cannot divide by zero", fn ->
Divider.divide(10, 0)
end
end
endSetting Up Test Context
Many tests need common setup, like creating a temporary resource or a mock user. ExUnit's setup callback runs before each test in a module.
It should return {:ok, assigns} where assigns is a keyword list or map that will be available in your test function's arguments.
defmodule UserProfileTest do
use ExUnit.Case, async: true
setup do
# This runs before each test
user = %{id: 101, name: "Jane Doe", email: "jane@example.com"}
{:ok, user: user, admin: true}
end
test "user has a name", %{user: user} do
assert user.name == "Jane Doe"
end
test "context includes admin flag", %{admin: admin_status} do
assert admin_status == true
end
endGrouping Tests with `describe`
As your test files grow, you might want to logically group related tests. The describe macro helps organize tests within a module, making your test suite more readable.
You can even nest describe blocks!
defmodule StringUtils do
def capitalize(str), do: String.capitalize(str)
def reverse(str), do: String.reverse(str)
end
defmodule StringUtilsTest do
use ExUnit.Case, async: true
describe "capitalize/1" do
test "capitalizes first letter" do
assert StringUtils.capitalize("hello") == "Hello"
end
test "handles empty string" do
assert StringUtils.capitalize("") == ""
end
end
describe "reverse/1" do
test "reverses a string" do
assert StringUtils.reverse("world") == "dlrow"
end
end
endExecuting Your Tests
Once you've written your tests, running them is simple using Elixir's build tool, Mix.
- To run all tests in your project:
mix test - To run tests in a specific file:
mix test test/my_module_test.exs - To run a specific test by line number:
mix test test/my_module_test.exs:10 - To run tests matching a description:
mix test --only "adds two numbers"
ExUnit Challenge
Consider the following Elixir module designed to check if a number is odd. Which ExUnit assertion correctly tests if NumberChecker.is_odd(5) returns true?
defmodule NumberChecker do
def is_odd(n) when is_integer(n) do
rem(n, 2) != 0
end
endUnit Testing Summary
Great job! You've covered the fundamentals of unit testing with ExUnit.
- ExUnit is Elixir's built-in testing framework.
- Tests are defined in
_test.exsfiles usinguse ExUnit.Case. assertchecks for truthy values,refutefor falsy values.assert_raiseverifies that specific exceptions are thrown.setupcallbacks prepare context for your tests.describeblocks help organize related tests.- You run tests using
mix test.
These skills are crucial for building robust and reliable Elixir applications!
자주 묻는 질문
“ExUnit을 활용한 단위 테스트” 강의는 무료인가요?
네 — “ExUnit을 활용한 단위 테스트” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Elixir & Phoenix: Scalable Backend Development 강의 전체를 잠금 해제할 수 있습니다. Elixir & Phoenix: Scalable Backend Development 강의에는 총 4개의 강의가 포함되어 있습니다.
“ExUnit을 활용한 단위 테스트”에서 뭘 배우나요?
내장 ExUnit 프레임워크를 사용해 Elixir 모듈과 함수에 대한 빠르고 안정적인 단위 테스트를 작성합니다. 브라우저에서 직접 실행하는 실습 코드로 Elixir & Phoenix: Scalable Backend Development을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Elixir & Phoenix: Scalable Backend Development을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Elixir & Phoenix: Scalable Backend Development은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.
“ExUnit을 활용한 단위 테스트” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Elixir & Phoenix: Scalable Backend Development 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Elixir & Phoenix: Scalable Backend Development 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- ExUnit을 활용한 단위 테스트
- Phoenix 애플리케이션 통합 테스트
- 모의 객체, 스텁 및 테스트 데이터
- StreamData를 사용한 속성 기반 테스트